/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #ea580c;
    --accent-color: #f97316;
    --success-color: #059669;
    --warning-color: #d97706;
    --error-color: #dc2626;
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-300: #d1d5db;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    --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);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
    color: var(--neutral-800);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}


/* Navigation Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs); /* Smaller gap for mobile */
    font-size: 1.1rem; /* Base font size for mobile */
    font-weight: 600;
    color: var(--neutral-900);
    text-decoration: none;
}

.logo-image {
    width: 80px; /* Increased base size for mobile visibility */
    height: 80px;
    object-fit: contain; /* Prevent distortion */
    vertical-align: middle;
}

.nav-logo span {
    line-height: 1.2;
}

.dropdown {
        position: relative;
        display: inline-block;
    }

/* ---- The button that opens the menu ---- */
    .dropbtn {
        background: #1f2937;
        border: 1px solid #ccc;
        padding: 10px 20px;
        font-size: 16px;
        color:white;
        cursor: pointer;
        user-select: none;
    }

    /* ---- The menu itself ---- */
    .dropdown-menu {
        position: absolute;
        top: 100%;               /* right under the button */
        left: 0;
        min-width: 180px;
        background:  #1f2937;
        color: white;
        border: 1px solid #ddd;
        box-shadow: 0 4px 8px rgba(0,0,0,.1);
        z-index: 1000;
        display: none;           /* hidden by default */
        flex-direction: column;
    }

    .dropdown-menu.show {        /* class added by JS */
        display: flex;
    }

    .dropdown-menu a {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        color:white;
        text-decoration: none;
        font-size: 15px;
    }

    .dropdown-menu a:hover {
        background: #f5f5f5;
    }

    .dropdown-menu a i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }
/* Tablets and larger (768px and up) */

@media (max-width: 360px) {
  .nav-logo {
    font-size: 0.95rem;
    gap: 6px;
  }
  .logo-image {
    width: 160px;
    height:160px;
  }
}

@media (min-width: 361px) and (max-width: 390px) {
  .nav-logo {
    font-size: 1.1rem;
    gap: 8px;
  }
  .logo-image {
    width: 180px;
    height: 180px;
    
  }
}

/* Mobile L (391px–430px) — larger phones/Pro/Plus/Max */
@media (min-width: 391px) and (max-width: 430px) {
  .nav-logo {
    font-size: 1.2rem;
    gap: var(--spacing-sm, 10px);
  }
  .logo-image {
    width: 180px;
    height:180px;
    
  }
}
@media (min-width: 768px) {
    .nav-logo {
        font-size: 1.3rem;
        gap: var(--spacing-sm); /* Larger gap for tablets */
    }

    .logo-image {
        width: 120px; /* Moderate size for tablets */
        height: 120px;
    }
}

/* Desktop and larger (1024px and up) */
@media (min-width: 1024px) {
    .nav-logo {
        font-size: 1.5rem;
    }

    .logo-image {
        width: 160px; /* Suitable size for desktop */
        height: 160px;
    }
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1f2937;
    
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}


.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-50);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--neutral-50);
}

.nav-link.cta-button {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
}

.nav-link.cta-button:hover {
    background: var(--primary-dark);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: var(--spacing-xs);
}

.bar {
    width: 24px;
    height: 3px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: 0.3s;
}


/* =======================
   HERO SECTION
======================= */
/* =======================
   HERO WRAPPER
======================= */
.hero {
  background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("images/front-view-black-luxury-sedan-road_11zon.jpg") center/cover no-repeat;
  color: white;
  padding: 120px 0 var(--spacing-3xl);
  position: relative;
  overflow: hidden;
}

/* =======================
   HERO LAYOUT
======================= */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
  line-height: 1.4;
}

/* =======================
   HERO FORM (RIGHT SIDE)
======================= */
.hero-form {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: var(--border-radius-xl);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  color: white;
  /* Hint browsers we are on a dark surface so UI text stays light */
  color-scheme: dark;
}

.hero-form h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: white;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: white;
}

/* =======================
   FORM CONTROLS — unified
======================= */
.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 12px 14px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;          /* Typed text is white */
  width: 100%;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  backdrop-filter: blur(8px);
  caret-color: #fff;    /* White cursor for visibility */
}

/* Placeholders */
.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1; /* Firefox */
}

/* Hover/Focus states */
.hero-form input:hover,
.hero-form select:hover,
.hero-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.55);
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.15),
    0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 70%);
  background: rgba(255, 255, 255, 0.16);
}

/* Chrome/Safari/Edge autofill fix — keep text white & glass bg */
.hero-form input:-webkit-autofill,
.hero-form select:-webkit-autofill,
.hero-form textarea:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.12) inset !important;
  transition: background-color 600000s 0s, color 600000s 0s;
}

/* Native SELECT beautified (custom arrow) */
.hero-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 44px; /* room for the arrow */
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}

/* Ensure options readable when dropdown renders with light menu */
.hero-form select option {
  color: #111;
  background: #fff;
}
/* Placeholder-like first option tone (closed state hint) */
.hero-form select option:first-child {
  color: rgba(0, 0, 0, 0.7);
}

/* CTA button */
.hero-form button {
  width: 25%;
  margin: 0 auto;
  padding: 12px;
  border-radius: var(--border-radius);
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

/* =======================
   HERO CTA & STATS (if needed)
======================= */
.hero-stats {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.stat i {
  color: var(--accent-color);
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-primary {
  background: var(--accent-color);
  color: white;
  box-shadow: var(--shadow-md);
}
.cta-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.cta-secondary:hover {
  background: white;
  color: var(--primary-color);
}

/* =======================
   HERO IMAGE (if used)
======================= */
.hero-image {
  text-align: center;
}
.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
}

/* =======================
   SECTION HEADERS
======================= */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--neutral-800);
}
.section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  color: var(--neutral-600);
  font-size: 1.1rem;
  line-height: 1.6;
}
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .hero-form {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    font-size: 1rem;
    padding: 12px 14px;
  }

  .hero-form button {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
  }
}



/* Why Choose Us */
.why-choose {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.benefit-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    color: var(--neutral-800);
    margin-bottom: var(--spacing-md);
}

.benefit-card p {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: var(--spacing-3xl) 0;
    background: var(--neutral-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: var(--spacing-lg);
}

.service-content h3 {
    color: var(--neutral-800);
    margin-bottom: var(--spacing-md);
}

.service-content p {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* How It Works */
/* How It Works Section */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: var(--neutral-100);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-2xl);
    letter-spacing: -0.02em;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: var(--spacing-lg);
    padding: var(--spacing-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain; /* Prevents parent scrolling on mobile */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.steps-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.step-card {
    flex: 0 0 280px; /* Default width for desktop */
    background: var(--neutral-50);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-md);
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
    scroll-snap-align: center;
    position: relative;
}

.step-card.visible {
    opacity: 1;
    transform: scale(1);
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: rotate(10deg);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--neutral-50);
}

.step-number {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    width: 30px;
    height: 30px;
    background: var(--primary-dark);
    color: var(--neutral-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: var(--spacing-sm);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.5;
    margin: 0;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.step-card.visible {
    animation: fadeInScale 0.5s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps-container {
        gap: var(--spacing-md); /* Slightly smaller gap for mobile */
        padding: var(--spacing-sm); /* Adjust padding for mobile */
    }

    .step-card {
        flex: 0 0 80vw; /* Responsive width based on viewport */
        max-width: 300px; /* Cap max width for larger mobile screens */
        min-width: 240px; /* Ensure minimum width for readability */
    }

    .section-title {
        font-size: 2rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: var(--spacing-2xl) 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .step-card {
        flex: 0 0 85vw; /* Slightly wider for very small screens */
        padding: var(--spacing-sm);
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }
}

/* Testimonials */
/* Testimonials Section */
.testimonials {
    padding: var(--spacing-3xl) 0;
    background: var(--neutral-50);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-2xl);
    letter-spacing: -0.02em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stars {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.stars i {
    color: var(--warning-color);
    font-size: 1.1rem;
}

.review-text {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    color: var(--neutral-700);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.testimonial-card:hover .review-text {
    opacity: 1;
    max-height: 100px; /* Adjust based on content length */
}

.testimonial-author {
    margin-top: var(--spacing-sm);
}

.testimonial-author strong {
    color: var(--neutral-800);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .testimonial-card {
        min-height: 160px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: var(--spacing-2xl) 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: var(--spacing-sm);
    }

    .review-text {
        font-size: 0.9rem;
    }

    .testimonial-author strong {
        font-size: 1rem;
    }

    .testimonial-author span {
        font-size: 0.85rem;
    }
}


/* Comparison Table */
.comparison {
    padding: var(--spacing-3xl) 0;
    background: var(--neutral-50);
}

.comparison-table {
    overflow-x: auto;
    margin-top: var(--spacing-2xl);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-lg);
    text-align: left;
    border-bottom: 1px solid var(--neutral-200);
}

.comparison-table th {
    background: var(--neutral-100);
    font-weight: 600;
    color: var(--neutral-800);
}

.comparison-table .highlight {
    background: var(--success-color);
    color: white;
    font-weight: 600;
}

/* FAQ */
.faq {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.faq-item {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    background: var(--neutral-50);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--neutral-100);
}

.faq-question h3 {
    margin: 0;
    color: var(--neutral-800);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: var(--spacing-lg);
    color: var(--neutral-600);
    line-height: 1.6;
    margin: 0;
}



/* Footer */
.footer {
    background: var(--neutral-800);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-section h3 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li i {
    color: var(--accent-color);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--neutral-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--neutral-800);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: var(--spacing-xl);
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero {
        padding: 100px 0 var(--spacing-2xl);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        justify-content: center;
    }
    
    .benefit-card,
    .service-card,
    .testimonial-card,
    .calculator-form,
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-sm);
    }
}

/* Animations and Micro-interactions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for buttons */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hover effects for cards */
.benefit-card,
.service-card,
.testimonial-card,
.contact-item {
    transition: all 0.3s ease;
}

.benefit-card:hover,
.service-card:hover,
.testimonial-card:hover,
.contact-item:hover {
    transform: translateY(-4px);
}

/* Focus states for accessibility */
button:focus,
.cta-primary:focus,
.cta-secondary:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

.intro-ccta {
    display: block;
    width: 160px; /* Set small width */
    height:50px;
    margin: 60px auto; /* Center horizontally */
    padding: 8px 0; /* Adjust padding for smaller width */
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    
}


.parent-container {
    text-align: center;
     justify-content: center;
}
.intro-ccta:hover {
   background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px) scale(1.05);
}
/* Floating button container */
.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual button */
.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.fab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,.2);
}

/* WhatsApp button */
.fab-whatsapp { background: #25D366; }
.fab-whatsapp i { color: #fff; }

/* Phone button */
.fab-phone { background: #007bff; }
.fab-phone i { color: #fff; }

/* Small screens – make buttons a bit smaller */
@media (max-width: 480px) {
    .fab-btn { width: 48px; height: 48px; font-size: 1.3rem; }
}
