/* ============================================
   Global Styles & Variables
   ============================================ */
:root {
    /* Business Card Theme Colors */
    --primary-color: #0052cc; /* Royal Blue - matches card's blue strip */
    --primary-dark: #003d99;
    --primary-light: #0066ff;
    --secondary-color: #dc2626; /* Vibrant Red - matches "Authorized Dealer" text */
    --secondary-dark: #b91c1c;
    --accent-color: #10b981; /* Green accent from logo */
    --accent-purple: #a855f7; /* Purple accent from logo */
    --dark-bg: #0f172a;
    --dark-secondary: #1e293b;
    --text-primary: #1a1a1a; /* Black text - matches card */
    --text-secondary: #4a4a4a; /* Dark gray for secondary text */
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #fafafa; /* Clean white background */
    --border-color: #e5e7eb;
    --border-primary: #0052cc;
    --border-thick: 3px;
    --border-medium: 2px;
    --border-thin: 1px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    /* Updated gradients to match card theme */
    --gradient-primary: linear-gradient(135deg, #0052cc 0%, #0066ff 100%); /* Blue gradient */
    --gradient-secondary: linear-gradient(135deg, #dc2626 0%, #ef4444 100%); /* Red gradient */
    --gradient-hero: linear-gradient(135deg, #0052cc 0%, #0066ff 50%, #dc2626 100%); /* Blue to red */
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #a855f7 100%); /* Green to purple from logo */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.875rem, 2vw, 1.25rem) 0;
    position: relative;
    gap: clamp(1rem, 3vw, 2rem);
}

.logo {
    display: flex;
    align-items: center;
    height: 80px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 280px;
    min-width: 200px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); */
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    margin-left: auto;
    text-align:center
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(0, 82, 204, 0.2);
    transition: width 0.3s ease;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    list-style: none;
    min-width: 240px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.875rem 1.75rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(0, 82, 204, 0.08), rgba(0, 82, 204, 0.05));
    color: var(--primary-color);
    padding-left: 2rem;
    transform: translateX(3px);
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu li a:hover::before {
    transform: scaleY(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
}

.nav-toggle:hover {
    background: rgba(0, 82, 204, 0.05);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #005EEB;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: clamp(80px, 10vw, 100px);
    isolation: isolate;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 11;
}

.hero-text {
    max-width: 800px;
    color: var(--white);
    position: relative;
    z-index: 11;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 11;
}

.hero-logo-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}


/* ============================================
   Scroll Animation Styles (Apple-style)
   ============================================ */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure smooth animation when scrolling up */
.scroll-fade-in:not(.visible) {
    opacity: 0;
    transform: translateY(60px);
}

/* Staggered animation delays for grid items */
.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }

.products-grid .product-card:nth-child(1) { transition-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { transition-delay: 0.2s; }
.products-grid .product-card:nth-child(3) { transition-delay: 0.3s; }
.products-grid .product-card:nth-child(4) { transition-delay: 0.4s; }
.products-grid .product-card:nth-child(5) { transition-delay: 0.5s; }
.products-grid .product-card:nth-child(6) { transition-delay: 0.6s; }

.exchange-grid .exchange-card:nth-child(1) { transition-delay: 0.1s; }
.exchange-grid .exchange-card:nth-child(2) { transition-delay: 0.2s; }

.exchange-gallery .gallery-item:nth-child(1) { transition-delay: 0.1s; }
.exchange-gallery .gallery-item:nth-child(2) { transition-delay: 0.2s; }
.exchange-gallery .gallery-item:nth-child(3) { transition-delay: 0.3s; }
.exchange-gallery .gallery-item:nth-child(4) { transition-delay: 0.4s; }

.insurance-grid .insurance-card:nth-child(1) { transition-delay: 0.05s; }
.insurance-grid .insurance-card:nth-child(2) { transition-delay: 0.1s; }
.insurance-grid .insurance-card:nth-child(3) { transition-delay: 0.15s; }
.insurance-grid .insurance-card:nth-child(4) { transition-delay: 0.2s; }
.insurance-grid .insurance-card:nth-child(5) { transition-delay: 0.25s; }
.insurance-grid .insurance-card:nth-child(6) { transition-delay: 0.3s; }
.insurance-grid .insurance-card:nth-child(7) { transition-delay: 0.35s; }
.insurance-grid .insurance-card:nth-child(8) { transition-delay: 0.4s; }
.insurance-grid .insurance-card:nth-child(9) { transition-delay: 0.45s; }
.insurance-grid .insurance-card:nth-child(10) { transition-delay: 0.5s; }
.insurance-grid .insurance-card:nth-child(11) { transition-delay: 0.55s; }
.insurance-grid .insurance-card:nth-child(12) { transition-delay: 0.6s; }
.insurance-grid .insurance-card:nth-child(13) { transition-delay: 0.65s; }
.insurance-grid .insurance-card:nth-child(14) { transition-delay: 0.7s; }
.insurance-grid .insurance-card:nth-child(15) { transition-delay: 0.75s; }
.insurance-grid .insurance-card:nth-child(16) { transition-delay: 0.8s; }
.insurance-grid .insurance-card:nth-child(17) { transition-delay: 0.85s; }
.insurance-grid .insurance-card:nth-child(18) { transition-delay: 0.9s; }

.benefits-grid .benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefits-grid .benefit-card:nth-child(4) { transition-delay: 0.4s; }
.benefits-grid .benefit-card:nth-child(5) { transition-delay: 0.5s; }

.locations-grid .location-card:nth-child(1) { transition-delay: 0.1s; }
.locations-grid .location-card:nth-child(2) { transition-delay: 0.2s; }
.locations-grid .location-card:nth-child(3) { transition-delay: 0.3s; }

.features-grid .feature-item:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-item:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-item:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-item:nth-child(4) { transition-delay: 0.4s; }

.hero-title {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(120deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.2px;
}

.hero-description {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    flex-wrap: wrap;
}

.btn {
    padding: clamp(0.875rem, 1.5vw, 1.1rem) clamp(1.5rem, 3vw, 2.5rem);
    border: none;
    border-radius: 12px;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--primary-color);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.25);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

.btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

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

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

.btn-block {
    width: 100%;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator i {
    color: var(--white);
    font-size: 1.5rem;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
    isolation: isolate;
}

.section-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.section-logo:hover {
    opacity: 0.25;
}

.section-logo-img {
    height: 120px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.section-logo-white {
    filter: brightness(1) invert(0) drop-shadow(0 2px 8px rgba(255, 255, 255));
    opacity: 1;
}

.section-logo-white:hover {
    opacity: 1;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding: 0 clamp(1rem, 2vw, 2rem);
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(0, 82, 204, 0.05));
    color: var(--primary-color);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 82, 204, 0.15);
    /* box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1); */
}

.section-title {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 0);
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--white);
    position: relative;
    z-index: 5;
    isolation: isolate;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.feature-item {
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    background: var(--light-bg);
    border-radius: 12px;
    border: var(--border-medium) solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.25);
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::after {
    opacity: 1;
}

.feature-item:hover .feature-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 82, 204, 0.35);
}

.feature-icon i {
    color: var(--white);
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.feature-item:nth-child(4) .feature-icon i {
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.about-image-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: var(--border-medium) solid var(--border-color);
}

/* ============================================
   Windshield Exchange Section
   ============================================ */
.windshield-exchange {
    background: var(--white);
    padding: clamp(3rem, 6vw, 3.5rem) 0;
}

.exchange-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.exchange-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: var(--border-thick) solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.exchange-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.exchange-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-bottom: var(--border-thick) solid var(--border-color);
}

.exchange-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.exchange-card:hover .exchange-image {
    transform: scale(1.1);
}

.exchange-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
}

.exchange-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-md);
}

.exchange-content {
    padding: clamp(1.5rem, 3vw, 2rem);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exchange-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-bottom: var(--border-medium) solid var(--border-color);
    padding-bottom: 1rem;
}

.exchange-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex: 1;
}

.exchange-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.exchange-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: var(--border-thin) solid var(--border-color);
}

.exchange-features li:last-child {
    border-bottom: none;
}

.exchange-features li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.exchange-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: var(--border-medium) solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.adas-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin: 2rem auto;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--white);
    width: fit-content;
}

.adas-badge i {
    font-size: 1.2rem;
}

.experience-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin: 1.5rem auto;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
    border: 2px solid var(--white);
    width: fit-content;
}

.experience-badge i {
    font-size: 1.2rem;
}

.authorized-dealers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin: clamp(1.5rem, 3vw, 2rem) auto clamp(2rem, 4vw, 2.5rem);
    max-width: 800px;
}

.dealer-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.dealer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.dealer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 82, 204, 0.3);
    border-color: var(--primary-dark);
}

.dealer-card:hover::before {
    background: var(--gradient-secondary);
}

.dealer-card-header {
    background: var(--gradient-primary);
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    color: var(--white);
}

.dealer-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.dealer-icon i {
    font-size: 1.8rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.dealer-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dealer-card-body {
    padding: clamp(1.5rem, 3vw, 2rem);
    flex: 1;
}

.dealer-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
    font-family: 'Inter', 'Poppins', sans-serif;
}

.dealer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.dealer-card-footer {
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, rgba(0, 82, 204, 0.02) 100%);
    border-top: 2px solid rgba(0, 82, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealer-badge-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.proprietors-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto;
    flex-wrap: wrap;
}

.proprietor-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: var(--white);
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.proprietor-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.proprietor-badge:hover::before {
    width: 300px;
    height: 300px;
}

.proprietor-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.proprietor-badge i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.proprietor-badge strong {
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Insurance Partners Section
   ============================================ */
.insurance-partners {
    background: var(--light-bg);
    padding: clamp(3rem, 6vw, 3.5rem) 0;
}

.cashless-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin: 2rem auto 3rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--white);
    width: fit-content;
}

.cashless-badge i {
    font-size: 1.2rem;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
    align-items: stretch;
}

.insurance-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    cursor: pointer;
    height: 100%;
}

.insurance-card {
    background: var(--white);
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.25rem, 2vw, 1.5rem);
    border-radius: 16px;
    border: var(--border-medium) solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: clamp(200px, 25vw, 220px);
}

.insurance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.insurance-card:hover::before,
.insurance-card-link:hover .insurance-card::before {
    transform: scaleX(1);
}

.insurance-card:hover,
.insurance-card-link:hover .insurance-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.insurance-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    background: var(--white);
    border-radius: 8px;
}

.insurance-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.insurance-card:hover .insurance-logo img,
.insurance-card-link:hover .insurance-logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.insurance-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.insurance-card:hover .insurance-icon {
    transform: scale(1.1) rotate(5deg);
}

.insurance-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.insurance-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.insurance-link-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    pointer-events: none;
}

.insurance-link-indicator.insurance-link-disabled {
    background: var(--text-light);
    color: var(--white);
    opacity: 0.7;
    cursor: not-allowed;
}

.insurance-card-link:hover .insurance-link-indicator:not(.insurance-link-disabled) {
    background: var(--gradient-secondary);
    transform: scale(1.05);
}

.insurance-link-indicator i {
    font-size: 0.75rem;
}

/* Insurance Card with Multiple Downloads */
.insurance-card-multiple {
    display: flex;
    flex-direction: column;
}

.insurance-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.insurance-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.insurance-download-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.insurance-download-btn i {
    font-size: 0.75rem;
}

.insurance-card-multiple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

/* Responsive Download Buttons */
@media (max-width: 768px) {
    .insurance-download-buttons {
        gap: 0.4rem;
    }
    
    .insurance-download-btn {
        padding: 0.45rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .insurance-link-indicator {
        padding: 0.45rem 0.875rem;
        font-size: 0.8rem;
    }
}

.insurance-note {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: var(--border-medium) solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

.insurance-note i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.insurance-note p {
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 82, 204, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, var(--white) 0%, #fafbfd 100%);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-card:hover .service-icon::before {
    width: 200px;
    height: 200px;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 82, 204, 0.4);
}

.service-icon i {
    color: var(--white);
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* ============================================
   Products Section
   ============================================ */
.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: var(--border-medium) solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: var(--border-thick) solid transparent;
    border-radius: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.product-card:hover::after {
    border-color: var(--primary-color);
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.product-content {
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex: 1;
}

.product-content .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-us {
    background: var(--dark-bg);
    color: var(--white);
}

.why-choose-us .section-title,
.why-choose-us .section-tag {
    color: var(--white);
}

.why-choose-us .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
}

.benefit-card {
    background: var(--dark-secondary);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: var(--border-thick) solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.3);
}

.benefit-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.benefit-card:hover .benefit-icon::before {
    width: 200px;
    height: 200px;
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.benefit-icon i {
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ============================================
   Appointment Section
   ============================================ */
.appointment {
    background: var(--light-bg);
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.appointment-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.appointment-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover i {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 82, 204, 0.4);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.appointment-form {
    background: var(--white);
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    border-radius: 16px;
    border: var(--border-medium) solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: clamp(1.25rem, 2vw, 1.5rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(0.875rem, 1.5vw, 1.1rem) clamp(1rem, 1.8vw, 1.25rem);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-family: 'Inter', 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1), 0 4px 12px rgba(0, 82, 204, 0.15);
    transform: translateY(-2px);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ============================================
   Quote Section
   ============================================ */
.quote {
    background: var(--white);
}

.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.quote-content {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.quote-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.quote-form {
    background: var(--light-bg);
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    border-radius: 16px;
    border: var(--border-medium) solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Service Area Section
   ============================================ */
.service-area {
    background: var(--white);
    padding: clamp(3rem, 6vw, 3.5rem) 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
    align-items: stretch;
}

.location-card {
    background: var(--white);
    border-radius: 16px;
    border: var(--border-medium) solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.location-header {
    background: var(--light-bg);
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    border-bottom: var(--border-medium) solid var(--border-color);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.location-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.location-content {
    padding: clamp(1.5rem, 3vw, 2rem);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-detail {
    display: flex;
    align-items: start;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.location-detail:last-of-type {
    margin-bottom: 0;
}

.location-map-link {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: var(--border-thin) solid var(--border-color);
    text-align: center;
}

.map-btn {
    width: 100%;
    justify-content: center;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.3);
}

.map-btn i {
    margin-right: 0.5rem;
}

.location-detail i {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    border: var(--border-thin) solid var(--border-color);
}

.location-detail h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-detail p {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

.location-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-detail a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.location-note {
    background: var(--light-bg);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: var(--border-medium) solid var(--accent-color);
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.location-note i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.location-note p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.location-note p strong {
    color: var(--text-primary);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(1.5rem, 3.5vw, 2.5rem);
}

.contact-form {
    background: var(--white);
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    border-radius: 16px;
    border: var(--border-medium) solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 16px;
    border: var(--border-medium) solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.info-item {
    display: flex;
    align-items: start;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-content p {
    color: var(--text-secondary);
    margin: 0;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(0.75rem, 1.5vw, 1rem);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    height: 60px;
}

.footer-logo-img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(1) invert(0);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-section ul li i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.proprietors-footer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
}

.proprietors-footer strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ============================================
   Enhanced Responsive Design
   ============================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 clamp(1.5rem, 3vw, 2.5rem);
    }
    
    .hero-wrapper {
        gap: clamp(1.5rem, 3vw, 2.5rem);
    }
    
    .exchange-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    }
}

/* Tablets */
@media (max-width: 968px) {
    .exchange-grid {
        grid-template-columns: 1fr;
    }

    .exchange-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .insurance-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .nav-wrapper {
        justify-content: space-between;
        padding: clamp(0.75rem, 1.5vw, 1rem) 0;
    }

    .logo {
        position: relative;
        left: auto;
        height: clamp(50px, 8vw, 60px);
    }

    .logo-img {
        max-width: clamp(150px, 25vw, 200px);
        min-width: 120px;
    }

    .section-logo-img {
        height: clamp(60px, 10vw, 80px);
        max-width: clamp(180px, 30vw, 220px);
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
        text-align: center;
    }

    .hero-logo {
        order: -1;
        margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    }

    .hero-logo-img {
        max-width: clamp(250px, 40vw, 300px);
    }

    .hero-text {
        text-align: center;
    }

    /* Reduce animation delays on mobile for better performance */
    .scroll-fade-in {
        transform: translateY(40px);
        transition-duration: 0.6s;
    }

    .services-grid .service-card,
    .products-grid .product-card,
    .exchange-grid .exchange-card,
    .exchange-gallery .gallery-item,
    .insurance-grid .insurance-card,
    .benefits-grid .benefit-card,
    .locations-grid .location-card,
    .features-grid .feature-item {
        transition-delay: 0.05s !important;
    }

    .nav-menu {
        position: fixed;
        top: clamp(70px, 12vw, 85px);
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: clamp(1.5rem, 3vw, 2rem) 0;
        gap: 0;
        border-top: var(--border-medium) solid var(--border-color);
        justify-content: flex-start;
        margin: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: clamp(0.75rem, 1.5vw, 1rem) 0;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        right: auto;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .about-content,
    .appointment-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
    .container {
        padding: 0 clamp(1rem, 2.5vw, 1.5rem);
    }
    
    section {
        padding: clamp(2.5rem, 5vw, 3rem) 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .exchange-gallery {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    
    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .authorized-dealers-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 2.5vw, 1.5rem);
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 clamp(0.875rem, 2vw, 1rem);
    }

    section {
        padding: clamp(2rem, 4vw, 2.5rem) 0;
    }

    .section-header {
        margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
        padding: 0 clamp(0.75rem, 1.5vw, 1rem);
    }

    .exchange-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 2.5vw, 1.5rem);
    }

    .exchange-gallery {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2vw, 1.25rem);
    }

    .service-card,
    .product-card,
    .appointment-form,
    .contact-form,
    .exchange-card,
    .contact-info-card {
        padding: clamp(1.25rem, 2.5vw, 1.5rem);
    }

    .exchange-image-wrapper {
        height: clamp(200px, 50vw, 250px);
    }

    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.75rem, 1.5vw, 1rem);
    }

    .insurance-card {
        padding: clamp(1.25rem, 2vw, 1.5rem) clamp(1rem, 1.5vw, 1.25rem);
        min-height: auto;
    }

    .adas-badge,
    .cashless-badge,
    .experience-badge {
        font-size: clamp(0.8rem, 1.5vw, 0.9rem);
        padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(1.25rem, 2.5vw, 1.5rem);
    }

    .authorized-dealers-grid {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2vw, 1.5rem);
        max-width: 100%;
    }

    .dealer-card {
        margin: 0;
    }

    .dealer-card-header {
        padding: clamp(1rem, 2vw, 1.25rem);
    }

    .dealer-icon {
        width: clamp(45px, 10vw, 50px);
        height: clamp(45px, 10vw, 50px);
    }

    .dealer-icon i {
        font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    }

    .dealer-card-body {
        padding: clamp(1.25rem, 2.5vw, 1.5rem);
    }

    .dealer-name {
        font-size: clamp(1.5rem, 4vw, 1.75rem);
    }

    .dealer-card-footer {
        padding: clamp(0.875rem, 1.5vw, 1rem) clamp(1.25rem, 2.5vw, 1.5rem);
    }

    .proprietors-info {
        flex-direction: column;
        gap: clamp(0.625rem, 1.5vw, 0.75rem);
    }

    .proprietor-badge {
        font-size: clamp(0.8rem, 1.5vw, 0.85rem);
        padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(1.25rem, 2.5vw, 1.5rem);
        width: 100%;
        max-width: 100%;
    }

    .location-card {
        padding: 0;
    }

    .location-content {
        padding: clamp(1.25rem, 2.5vw, 1.5rem);
    }
    
    .location-header {
        padding: clamp(1.25rem, 2.5vw, 1.5rem);
    }
    
    .quote-form {
        padding: clamp(1.5rem, 3vw, 2rem);
    }
    
    .footer {
        padding: clamp(2rem, 4vw, 3rem) 0 clamp(0.75rem, 1.5vw, 1rem);
    }
    
    .footer-content {
        gap: clamp(1.5rem, 3vw, 2rem);
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   Professional Animations & Effects
   ============================================ */

/* Enhanced Scroll Animation with Stagger */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                scale 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Slide In from Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In from Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Fade In */
.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide Up */
.slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate In Animation */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Gradient Animation */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Text Reveal Animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        clip-path: inset(0 0 100% 0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

/* Card Flip Animation */
@keyframes cardFlip {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(-15deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(0) scale(1);
    }
}

/* Enhanced Bounce */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 82, 204, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 82, 204, 0.6);
    }
}

/* ============================================
   Enhanced Element Animations
   ============================================ */

/* Hero Text Animation */
.hero-text {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
    animation: textReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-subtitle {
    animation: textReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-description {
    animation: textReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-buttons {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

/* Section Header Animation */
.section-header {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title {
    animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Card Hover Animations */
.exchange-card,
.product-card,
.service-card,
.insurance-card,
.location-card,
.benefit-card,
.feature-item {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.exchange-card:hover,
.product-card:hover,
.service-card:hover,
.insurance-card:hover,
.location-card:hover,
.benefit-card:hover,
.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Zoom on Hover */
.exchange-image,
.product-image img,
.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.exchange-card:hover .exchange-image,
.product-card:hover .product-image img,
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Icon Animations */
.feature-icon,
.service-icon,
.benefit-icon {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover .feature-icon,
.service-card:hover .service-icon,
.benefit-card:hover .benefit-icon {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    animation: pulse 2s ease-in-out infinite;
}

/* Button Enhanced Animations - Enhanced */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.3);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn > * {
    position: relative;
    z-index: 1;
}

/* Navbar Animation */
.navbar {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Logo Animation */
.logo-img {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* Form Input Animations */
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.15);
}

/* Badge Animations */
.adas-badge,
.cashless-badge,
.experience-badge,
.proprietor-badge {
    animation: pulse 3s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.adas-badge:hover,
.cashless-badge:hover,
.experience-badge:hover,
.proprietor-badge:hover {
    transform: scale(1.05);
    animation: glow 2s ease-in-out infinite;
}

/* Dealer Card Animation */
.dealer-card {
    animation: cardFlip 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dealer-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Gallery Item Animation */
.gallery-item {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Section Logo Animation */
.section-logo {
    animation: float 6s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-logo:hover {
    transform: scale(1.1);
    animation: pulse 2s ease-in-out infinite;
}

/* Scroll Indicator Enhanced */
.scroll-indicator {
    animation: bounce 2s infinite, float 3s ease-in-out infinite;
}

.scroll-indicator i {
    transition: transform 0.3s ease;
}

.scroll-indicator:hover i {
    transform: translateY(5px);
}

/* Loading Animation for Images */
img {
    transition: opacity 0.5s ease;
}

img[loading="lazy"] {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Parallax Effect - Disabled to prevent overlap issues */
/* .hero {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
} */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Smooth scroll behavior */
html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

/* Button Ripple Effect - Additional */

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading State */
body:not(.loaded) * {
    animation-play-state: paused !important;
}

body.loaded * {
    animation-play-state: running;
}

/* Performance Optimization */
* {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* GPU Acceleration for Smooth Animations */
.exchange-card,
.product-card,
.service-card,
.insurance-card,
.location-card,
.benefit-card,
.feature-item,
.gallery-item,
.btn,
.nav-link {
    will-change: transform;
    transform: translateZ(0);
}

/* Smooth Page Transitions */
body {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

/* Enhanced Staggered Grid Animations */
.products-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.3s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.4s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.5s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.6s; }

.exchange-grid .exchange-card:nth-child(1) { animation-delay: 0.1s; }
.exchange-grid .exchange-card:nth-child(2) { animation-delay: 0.3s; }

.insurance-grid .insurance-card:nth-child(1) { animation-delay: 0.05s; }
.insurance-grid .insurance-card:nth-child(2) { animation-delay: 0.1s; }
.insurance-grid .insurance-card:nth-child(3) { animation-delay: 0.15s; }
.insurance-grid .insurance-card:nth-child(4) { animation-delay: 0.2s; }
.insurance-grid .insurance-card:nth-child(5) { animation-delay: 0.25s; }
.insurance-grid .insurance-card:nth-child(6) { animation-delay: 0.3s; }

.benefits-grid .benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefits-grid .benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefits-grid .benefit-card:nth-child(5) { animation-delay: 0.5s; }

.locations-grid .location-card:nth-child(1) { animation-delay: 0.1s; }
.locations-grid .location-card:nth-child(2) { animation-delay: 0.2s; }
.locations-grid .location-card:nth-child(3) { animation-delay: 0.3s; }

.features-grid .feature-item:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature-item:nth-child(2) { animation-delay: 0.2s; }
.features-grid .feature-item:nth-child(3) { animation-delay: 0.3s; }
.features-grid .feature-item:nth-child(4) { animation-delay: 0.4s; }

