/* Root HTML settings */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* CSS Variables - Exact colors from bmrelo.com */
:root {
  /* Primary blue color scheme from bmrelo.com */
  --primary-blue: #003366;
  --primary-blue-light: #0066cc;
  --primary-blue-dark: #002244;
  
  /* Orange accent color */
  --accent-orange: #ff6600;
  --accent-orange-light: #ff8533;
  --accent-orange-dark: #cc5200;
  
  /* Neutral colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Text colors */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  /* Background colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #1e293b;
  
  /* Border and shadows */
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: all 0.15s ease-in-out;
  --transition-normal: all 0.3s ease-in-out;
  --transition-slow: all 0.5s ease-in-out;
  
  /* Typography */
  --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-family-sans);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-weight: var(--font-weight-normal);
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-extrabold);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-semibold);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition-normal);
}

a:hover {
  color: var(--primary-blue-light);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Highlight Text */
.highlight {
  color: var(--accent-orange);
  font-weight: var(--font-weight-bold);
}

.highlight-white {
  color: var(--white);
  font-weight: var(--font-weight-bold);
}

/* Section Titles */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-blue);
  margin-bottom: 3rem;
  line-height: 1.1;
  text-align: center;
}

.section-title .highlight {
  display: block;
  color: var(--accent-orange);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  color: var(--white);
  padding: 1rem 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: var(--transition);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  color: var(--white);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-buttons a {
  color: var(--white);
  text-decoration: underline;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: var(--transition-normal);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  padding: 1.25rem 0;
  min-height: 90px;
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand .logo {
  height: 55px;
  width: auto;
  max-width: 200px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  padding: 0.5rem 0;
  transition: var(--transition-normal);
  font-size: 16px;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-orange);
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 10px;
  transition: var(--transition-normal);
  transform-origin: center;
}

.dropdown.show .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  margin: 0.5rem 0 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-normal);
  z-index: 1000;
  list-style: none;
}

/* Wyłącz Bootstrap dropdown styles */
.dropdown-menu {
  display: block !important;
}

/* Dropdown Menu Styles - Override Bootstrap */
.dropdown-menu {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  margin: 0.5rem 0 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-normal);
  z-index: 1000;
  list-style: none;
}

.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: var(--font-weight-normal);
  font-size: 15px;
  transition: var(--transition-fast);
  border: none;
  background: transparent;
  white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--gray-50);
  color: var(--accent-orange);
  text-decoration: none;
}

.dropdown-item:active {
  background: var(--gray-100);
}

/* Remove underline animation for dropdown toggle */
.dropdown-toggle::after {
  display: none !important;
}

.phone-number {
  background: #8BC34A ;
  color: var(--white) !important;
  border-radius: 25px;
  padding: 0.75rem 1.5rem !important;
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: var(--transition-normal);
}

.phone-number:hover {
  background: #009a46;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.25rem;
  background: var(--gray-100);
  border-radius: 6px;
  padding: 0.25rem;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 14px;
  min-width: 40px;
}

.lang-btn.active {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
  background: var(--white);
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding-top: 100px;
  z-index: 0;
  isolation: isolate;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/backgrounds/hero-bg.jpg') center/cover no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #8BC34A 0%, #7CB342 100%);
  z-index: 2;
  clip-path: polygon(0 0, 85% 0, 60% 100%, 0 100%);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 600px;
  text-align: left;
  padding: 2rem 0;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-buttons .btn {
  padding: 0.9rem 2rem;
  font-weight: var(--font-weight-semibold);
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition-normal);
  font-size: 1rem;
  min-width: 180px;
  text-align: center;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: var(--font-weight-semibold);
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--white);
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--accent-orange-dark);
  border-color: var(--accent-orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-primary:hover {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--gray-50);
  color: var(--primary-blue-dark);
  border-color: var(--gray-50);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
  z-index: 1;
  margin-top: 0;
  clear: both;
  isolation: isolate;
  border-top: 1px solid transparent;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8BC34A, #7CB342);
  transform: scaleX(0);
  transition: var(--transition-normal);
  transform-origin: left;
  z-index: 10;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  padding: 2.5rem 1.5rem 2rem;
  color: #ffffff;
}

.service-overlay h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 0;
  line-height: 1.3;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Section title alignment */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0;
}

.section-title .highlight {
  color: var(--accent-orange);
  display: block;
}

/* Values Section */
.values {
  padding: 5rem 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #8BC34A, #7CB342);
  transform: scaleY(0);
  transition: var(--transition-normal);
  transform-origin: bottom;
}

.value-card:hover::before {
  transform: scaleY(1);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  text-transform: lowercase;
  position: relative;
}

.value-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #8BC34A;
  border-radius: 2px;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* Value Icons */
.value-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid #8BC34A;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.value-icon img {
  width: 40px;
  height: 40px;
}

.value-card:hover .value-icon {
  transform: scale(1.05);
}

/* Company Message Section */
.company-message {
  padding: 5rem 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    transparent 100%
  ),
  url('../images/backgrounds/info_box.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.message-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.message-content {
  padding-right: 2rem;
}

.message-content .section-title {
  text-align: left;
  margin-bottom: 2rem;
  color: var(--white);
}

.message-content .section-title .highlight {
  color: var(--accent-orange);
}

.message-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.message-image {
  position: relative;
}

.message-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-normal);
}

.message-image:hover img {
  transform: scale(1.02);
}

.btn-outline-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--accent-orange);
  border-radius: 6px;
  padding: 0.75rem 2rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.btn-outline-secondary:hover {
  background: var(--accent-orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--primary-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  opacity: 0.9;
}

.contact-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-content .section-title {
  color: var(--white);
  text-align: left;
  margin-bottom: 2rem;
}

.contact-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.contact-item i {
  width: 24px;
  text-align: center;
  color: var(--accent-orange);
  font-size: 1.25rem;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-normal);
  font-weight: var(--font-weight-medium);
}

.contact-item a:hover {
  color: var(--accent-orange);
}

.contact-cta {
  background: var(--accent-orange);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-cta:hover {
  background: var(--accent-orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Quote Form Section */
.quote {
  padding: 5rem 0;
  background: var(--bg-light);
}

.quote-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-form .form-control,
.quote-form .form-select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
  outline: none;
}

.quote-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
}

.footer-copyright {
  margin: 1rem 0;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll padding for fixed header - handled in main html rule above */

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Form States */
.form-success {
  background: #10b981;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
}

.form-error {
  background: #ef4444;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 998;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Header scrolled state */
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .navbar {
  padding: 0.5rem 0;
}

/* Enhanced form validation styles */
.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

/* Custom checkbox styling */
.form-check-input {
  width: 1.25em;
  height: 1.25em;
  margin-top: 0.125em;
  vertical-align: top;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 2px solid var(--border-color);
  appearance: none;
  border-radius: 0.25em;
  transition: var(--transition);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:focus {
  border-color: var(--primary-light);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

/* Enhanced button hover effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Loading state for forms */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Selection highlight */
::selection {
  background: var(--primary-light);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-light);
  color: var(--white);
}

/* Mobile menu adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .navbar-nav.ms-auto {
    margin-left: 0 !important;
  }
  
  .phone-number {
    margin: 1rem 0;
  }
  
  .language-switcher {
    margin-top: 1rem;
  }
  
  /* Mobile dropdown styles */
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    border-radius: 0;
    margin: 0.5rem 0 0 1rem;
    padding: 0;
    min-width: auto;
    width: calc(100% - 1rem);
  }
  
  .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .dropdown-item:last-child {
    border-bottom: none;
  }
  
  .dropdown-arrow {
    transition: var(--transition-normal);
  }
  
  .dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* Hero responsive styles */
@media (max-width: 991.98px) {
  .hero-overlay {
    width: 70%;
    clip-path: polygon(0 0, 90% 0, 80% 100%, 0 100%);
  }
  
  .hero-content {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding-top: 80px;
  }
  
  .hero-overlay {
    width: 100%;
    clip-path: none;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.9) 0%, rgba(124, 179, 66, 0.9) 100%);
  }
  
  .hero-content {
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-buttons {
    justify-content: center;
    align-items: center;
  }
}

/* Services responsive styles */
@media (max-width: 991.98px) {
  .services {
    padding: 3rem 0;
  }
  
  .service-image {
    height: 300px;
  }
  
  .service-overlay h3 {
    font-size: 1.3rem;
    color: #ffffff !important;
  }
}

@media (max-width: 767.98px) {
  .service-image {
    height: 250px;
  }
  
  .service-overlay {
    padding: 2rem 1rem 1.5rem;
  }
  
  .service-overlay h3 {
    font-size: 1.2rem;
    color: #ffffff !important;
  }
}

/* Values responsive styles */
@media (max-width: 991.98px) {
  .values {
    padding: 3rem 0;
  }
  
  .value-card {
    padding: 1.5rem;
  }
  
  .value-card h3 {
    font-size: 1.25rem;
  }
  
  .value-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .value-card {
    padding: 1rem;
  }
  
  .value-card h3 {
    font-size: 1.125rem;
  }
  
  .value-card p {
    font-size: 0.875rem;
  }
}

/* Partners Section */
.partners {
  padding: 5rem 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.partners-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partners-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-xl);
}

.partners-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.partner-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 2rem;
  background: var(--white);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  flex: 1;
}

.partner-logo img {
  height: 150px;
  width: auto;
  max-width: 375px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: var(--transition-normal);
}

.partner-slide:hover .partner-logo img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  background: var(--white);
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition-normal);
}

.indicator.active {
  background: var(--accent-orange);
  transform: scale(1.2);
}

.indicator:hover:not(.active) {
  background: var(--gray-400);
  transform: scale(1.1);
}

/* Service Links */
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.service-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Styles from przeprowadzki-mienia.html */
.hero-banner {
    position: relative;
    overflow: hidden;
}
.hero-container {
    position: relative;
}
.hero-background {
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.green-overlay {
    background: #9BC53D !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
}
.intro-text {
    background-color: #f8f9fa !important;
    border-left: 4px solid #9BC53D;
}
.section-content p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: justify;
}
.section-content h2 {
    color: #333;
    font-size: 1.4rem;
}
.section-image img {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
}
.services-section {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef;
}
.services-section h2 {
    color: #333;
    font-weight: 600;
}
.list-unstyled li {
    padding: 8px 0;
    font-size: 0.95rem;
}
.text-success {
    color: #9BC53D !important;
}
.bg-success {
    background-color: #9BC53D !important;
}
@media (max-width: 768px) {
    .hero-background {
        height: 300px !important;
    }
    .green-overlay {
        padding: 30px 40px !important;
        width: 95% !important;
        margin: 0 auto !important;
    }
    .green-overlay h1 {
        font-size: 2rem !important;
    }
    .section-content {
        margin-top: 20px;
    }
}
@media (max-width: 576px) {
    .green-overlay {
        padding: 20px 30px !important;
    }
    .green-overlay h1 {
        font-size: 1.8rem !important;
    }
}

/* Additional styles from inline attributes */
.hero-banner-margin {
    margin-top: 100px;
}

.hero-background-przeprowadzki {
    background: url('../images/przeprowadzki/przeprowadzka_main.webp') center/cover;
    height: 400px;
    width: 100%;
}

.hero-background-przeprowadzki-lokalne {
    background: url('../images/przeprowadzki/przeprowadzka_main.webp') center/cover;
    height: 400px;
    width: 100%;
}

.hero-background-biura {
    background: url('../images/biura/biura_background.webp') center/cover;
    height: 400px;
    width: 100%;
}

.hero-background-transport {
    background: url('../images/transport/transport_background.webp') center/cover;
    height: 400px;
    width: 100%;
}

.hero-background-relokacje {
    background: url('../images/relokacje/relokacje_background.webp') center/cover;
    height: 400px;
    width: 100%;
}

.hero-background-podwykonawstwo {
    background: url('../images/podwykonawstwo/podwykonastwo_background.webp') center/cover;
    height: 400px;
    width: 100%;
}

.hero-background-uslugi {
    background: url('../images/uslugi/uslugi_background.webp') center/cover;
    height: 400px;
    width: 100%;
}

.green-overlay-container {
    bottom: 50px;
    left: 0;
    right: 0;
}

.green-overlay-style {
    background: #9BC53D;
    padding: 40px 60px;
    max-width: 600px;
    width: auto;
    text-align: center;
}

.intro-section-bg {
    background-color: #f8f9fa;
}

.intro-text-bg {
    background-color: #f8f9fa;
}

.additional-text-style {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: var(--white);
}

.benefit-item {
  padding: 20px;
  border-left: 4px solid #28a745;
  background-color: #f8f9fa;
  margin-bottom: 1rem;
  border-radius: 0 8px 8px 0;
}

.benefit-item h5 {
  color: #28a745;
  font-weight: bold;
}

/* Additional styles for uslugi-relokacyjne page */
.service-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.service-item:hover {
    transform: translateX(5px);
}

.additional-services-section ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.additional-services-section ul li:last-child {
    border-bottom: none;
}

/* Quality Section for podwykonawstwo page */
.quality-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #28a745;
}

.quality-section .lead {
    color: #495057;
    font-weight: 500;
    line-height: 1.8;
}

/* Elevator Section for uslugi-dodatkowe page */
.elevator-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-left: 5px solid #007bff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.elevator-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.elevator-section h2 {
    color: #007bff;
    font-weight: bold;
}

.elevator-section p {
    color: #495057;
    line-height: 1.7;
}

/* Additional styles for service sections on uslugi-dodatkowe page */
.section-content h2 {
    color: #003366;
    font-weight: bold;
}

.section-image img {
    transition: transform 0.3s ease;
}

.section-image img:hover {
    transform: scale(1.05);
}

/* About Us Page Styles */
.text-brand {
    color: #8BC34A !important;
}

.brand-accent-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8BC34A, #7CB342);
    border-radius: 2px;
}

.brand-accent-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8BC34A, #7CB342);
    z-index: 2;
}

.brand-accent-corner-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8BC34A, #7CB342);
    z-index: 2;
}

.founder-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-member-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.contact-info i {
    width: 16px;
    text-align: center;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .founder-card .row {
        flex-direction: column;
    }
    
    .founder-card .col-md-5 {
        width: 100%;
        max-width: 100%;
    }
    
    .founder-card .col-md-7 {
        width: 100%;
        max-width: 100%;
    }
    
    .brand-accent-bar {
        width: 40px;
        height: 3px;
    }
    
    .brand-accent-corner {
        width: 40px;
        height: 40px;
    }
    
    .brand-accent-corner-small {
        width: 30px;
        height: 30px;
    }
}

/* Hero section on about page */
.hero-background-onas {
    background: url('../images/o_nas/onas_main.webp') center/cover;
    height: 400px;
    width: 100%;
}

.hero-background-kariera {
    background: url('../images/kariera/kariera_main.webp') center/cover;
    height: 400px;
    width: 100%;
}

/* Career Page Job Accordion Styles */
.job-accordion {
    margin-top: 2rem;
}

.job-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.job-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.job-header {
    padding: 1.5rem;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
    transition: background-color 0.3s ease;
}

.job-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.job-header h4 {
    margin: 0;
    color: #003366;
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-header .location {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
    margin-top: 0.25rem;
}

.job-header::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #8BC34A;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.job-header[aria-expanded="true"]::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.job-content {
    padding: 0 1.5rem 1.5rem;
    background: white;
    border-top: 1px solid #e9ecef;
}

.job-content .requirements,
.job-content .duties,
.job-content .offer {
    margin-bottom: 1.5rem;
}

.job-content h5 {
    color: #003366;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #8BC34A;
    display: inline-block;
}

.job-content ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.job-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #495057;
}

.job-content li::marker {
    color: #8BC34A;
}

/* Responsive styles for career page */
@media (max-width: 768px) {
    .job-header {
        padding: 1rem;
    }
    
    .job-header h4 {
        font-size: 1.1rem;
    }
    
    .job-header::after {
        right: 1rem;
        font-size: 1.25rem;
    }
    
    .job-content {
        padding: 0 1rem 1rem;
    }
    
    .job-content h5 {
        font-size: 0.9rem;
    }
}

/* Recommendations Page Styles */
.hero-background-rekomendacje {
    background: url('../images/rekomendacje/rekomendacja_main.webp') center/cover;
    height: 400px;
    width: 100%;
}

.recommendation-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.recommendation-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recommendation-card:hover .recommendation-thumbnail {
    transform: scale(1.05);
}

/* Modal styles for enlarged images */
.modal-xl {
    max-width: 90vw;
}

.modal-body img {
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive adjustments for recommendations page */
@media (max-width: 768px) {
    .hero-background-rekomendacje {
        height: 300px;
    }
    
    .recommendation-thumbnail {
        height: 200px;
    }
    
    .modal-body img {
        max-height: 60vh;
    }
}

@media (max-width: 576px) {
    .recommendation-thumbnail {
        height: 180px;
    }
    
    .modal-body img {
        max-height: 50vh;
    }
}

/* Contact Page Styles */
.hero-background-kontakt {
    background: url('../images/kontakt/kontakt_main.webp') center/cover;
    height: 400px;
    width: 100%;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border: 2px solid #8BC34A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.contact-info-card h4 {
    color: #003366;
    font-size: 1.25rem;
}

.contact-info-card p {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: #003366;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #8BC34A;
}

.map-container {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .hero-background-kontakt {
        height: 300px;
    }
    
    .contact-info-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-info-card h4 {
        font-size: 1.1rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Team Image Containers */
.team-image-container {
    height: 280px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image {
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
}

/* Testimonials Section */
.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-container {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    text-align: center;
    margin: 0 auto;
    border-left: 4px solid #8BC34A;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    text-align: justify;
}

.testimonial-author {
    color: #8BC34A;
    font-size: 1rem;
    text-align: right;
}

.quote-icon {
    font-size: 2rem;
    position: absolute;
}

.quote-start {
    top: 20px;
    left: 20px;
}

.quote-end {
    bottom: 20px;
    right: 20px;
}

.testimonial-indicators {
    gap: 15px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-indicator.active {
    background-color: #8BC34A;
}

.testimonial-indicator:hover {
    background-color: #7CB342;
}

/* Animation for testimonial change */
.testimonial-slide.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Local Relocations Page Styles */
.feature-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    box-shadow: 0 4px 20px rgba(139, 195, 74, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f9ff;
}

/* Zone Cards */
.zone-card {
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.zone-card:hover {
    border-color: #8BC34A;
    box-shadow: 0 4px 20px rgba(139, 195, 74, 0.15);
}

.zone-badge {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
}

.zone-badge.zone-a {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
}

.zone-badge.zone-b {
    background: linear-gradient(135deg, #8BC34A 0%, #7CB342 100%);
}

.zone-map-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.additional-info-box {
    border: 2px solid #8BC34A;
}

.additional-info-box .btn-primary {
    background-color: #8BC34A;
    border-color: #8BC34A;
    padding: 12px 40px;
    font-weight: bold;
}

.additional-info-box .btn-primary:hover {
    background-color: #7CB342;
    border-color: #7CB342;
}

/* Service Variants */
.variant-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.variant-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.variant-header {
    padding: 1.5rem;
    text-align: center;
}

.variant-header.variant-standard {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
}

.variant-header.variant-premium {
    background: linear-gradient(135deg, #8BC34A 0%, #7CB342 100%);
}

.variant-body {
    background: #ffffff;
}

.variant-subtitle {
    font-style: italic;
    color: #6c757d;
    font-size: 1.05rem;
}

.variant-list {
    list-style: none;
    padding-left: 0;
}

.variant-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #495057;
}

.variant-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8BC34A;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Additional Services Cards */
.additional-service-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.additional-service-card:hover {
    box-shadow: 0 4px 20px rgba(139, 195, 74, 0.15);
    transform: translateY(-5px);
    border-color: #8BC34A;
}

.additional-service-card .service-icon {
    height: 80px;
    display: flex;
    align-items: center;
}

/* Quote CTA Section */
.quote-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quote-cta-box {
    border: 3px solid #8BC34A;
}

.quote-cta-box .btn-primary {
    background-color: #8BC34A;
    border-color: #8BC34A;
    font-size: 1.25rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quote-cta-box .btn-primary:hover {
    background-color: #7CB342;
    border-color: #7CB342;
    transform: scale(1.05);
}

.text-brand {
    color: #8BC34A !important;
}
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
