/* ============================================================================
   AutoBros Car Parts - Master Stylesheet
   Domain: autobroscarparts.co.ke
   Version: 2.0
   Author: AutoBros Web Team
   ============================================================================ */

/* ============================================================================
   TABLE OF CONTENTS:
   1. CSS Variables & Reset
   2. Typography
   3. Layout & Containers
   4. Buttons & Links
   5. Navigation & Header
   6. Hero Section (Redesigned)
   7. Trust Strip & Counters
   8. Marquee / Brand Strip
   9. Cards & Grids
   10. Services Section
   11. Why Choose Us
   12. Testimonials
   13. Brand Partners Slider
   14. CTA Section
   15. About Page
   16. Brand Pages (VW, Mercedes, BMW, UK)
   17. Contact Page
   18. Forms
   19. Footer
   20. Floating WhatsApp Button
   21. Animations
   22. Media Queries (Responsive)
   ============================================================================ */

/* ============================================================================
   1. CSS VARIABLES & RESET
   ============================================================================ */
:root {
    /* Primary Colors */
    --primary-blue: #0056a7;
    --primary-dark: #004080;
    --secondary-cyan: #00a1b0;
    
    /* Neutral Colors */
    --dark-navy: #0b1c2f;
    --medium-navy: #1a3a5f;
    --light-navy: #1e3a5f;
    --text-dark: #1e2a41;
    --text-medium: #4a5c6f;
    --text-light: #a0b8cc;
    
    /* Background Colors */
    --bg-light: #f7f9fc;
    --bg-white: #ffffff;
    --bg-offwhite: #f8fafd;
    
    /* Border Colors */
    --border-light: #e2e9f0;
    --border-medium: #d4e2f0;
    --border-dark: #cbd5e1;
    
    /* Brand Colors */
    --bosch-bg: #eef4ff;
    --bosch-border: #b8d1ff;
    --whatsapp-green: #1ebea5;
    --whatsapp-dark: #128C7E;
    --facebook-blue: #1877F2;
    --gold: #d4af37;
    --gold-dark: #a67c00;
    --offroad-green: #1e5c3b;
    --jaguar-orange: #b15800;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-blue: 0 10px 30px rgba(0,86,167,0.15);
    --shadow-blue-lg: 0 20px 40px rgba(0,86,167,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-xxl: 32px;
    --radius-round: 60px;
    --radius-full: 9999px;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    --spacing-xxxl: 64px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* ============================================================================
   2. TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4, h5, h6,
.logo, .nav-links, .btn, .dropbtn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-xl);
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-cyan));
    border-radius: var(--radius-sm);
}

h2.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
}

.text-white {
    color: white;
}

.text-center {
    text-align: center;
}

/* ============================================================================
   3. LAYOUT & CONTAINERS
   ============================================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

.section-padding {
    padding: var(--spacing-xxl) 0;
}

.section-margin {
    margin: var(--spacing-xxl) 0;
}

/* ============================================================================
   4. BUTTONS & LINKS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-round);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.btn i {
    font-size: 1.1rem;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue-lg);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.btn-white {
    background: white;
    color: var(--primary-blue);
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-white-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-white-outline:hover {
    background: white;
    color: var(--primary-blue);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Links */
a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================================================
   5. NAVIGATION & HEADER
   ============================================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-light);
}

.navbar.shrink {
    padding: 8px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.logo-icon {
    font-size: 2.4rem;
    color: var(--primary-blue);
    transition: transform var(--transition-normal);
}

.logo-wrap:hover .logo-icon {
    transform: rotate(10deg);
}

.logo-text {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: -0.02em;
}

/* Bosch Badge */
.bosch-badge {
    background: var(--bosch-bg);
    border-radius: var(--radius-round);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    border: 1px solid var(--bosch-border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.bosch-badge i {
    font-size: 1rem;
}

.bosch-badge:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    font-weight: 600;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-navy);
    transition: color var(--transition-fast);
    position: relative;
    padding: 5px 0;
    font-size: 1rem;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: transparent;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--light-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 5px 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) 0;
    z-index: 1001;
    border: 1px solid var(--border-light);
}

.dropdown-content a {
    color: var(--light-navy);
    padding: 12px 24px;
    display: block;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.dropdown-content a:hover {
    background: var(--bosch-bg);
    color: var(--primary-blue);
    padding-left: 28px;
}

.dropdown-content a:after {
    display: none;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropbtn i {
    transition: transform var(--transition-normal);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--dark-navy);
    cursor: pointer;
    padding: var(--spacing-sm);
}

/* ============================================================================
   6. HERO SECTION (Redesigned with Two-Column Layout)
   ============================================================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
    color: white;
    overflow: hidden;
    padding: 80px 0;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 0.25;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left Column - Content */
.hero-content {
    color: white;
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h1 {
    color: white;
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-content h1 span {
    color: var(--secondary-cyan);
    display: inline-block;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
}

/* Right Column - Search Card */
.hero-search-container {
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-search-card {
    background: rgba(255, 255, 255, 0.0);
    backdrop-filter: blur(0px);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
    border: 0px solid rgba(255, 255, 255, 0.2);
}

.search-header {
    text-align: center;
    margin-bottom: 25px;
}

.search-header .search-icon {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    background: var(--bosch-bg);
    padding: 15px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.search-header h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 700;
}

.search-header p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.search-box-wrapper {
    position: relative;
    margin-bottom: 20px;
	
}

.hero-search {
    display: flex;
    background: white;
    border-radius: var(--radius-round);
    padding: 2px;
    border: none;
    transition: all var(--transition-fast);
}

.hero-search:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 86, 167, 0.1);
}

.hero-search input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    border-radius: var(--radius-round);
    outline: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.hero-search input::placeholder {
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-search button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-round);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.90rem;
}

.hero-search button:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.hero-search button i {
    font-size: 1rem;
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: navy blue;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 450px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border: 1px solid var(--border-light);
}

.search-results .result-item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-results .result-item:last-child {
    border-bottom: none;
}

.search-results .result-item:hover {
    background: var(--bosch-bg);
}

.search-results .result-item i {
    color: var(--primary-blue);
    width: 24px;
    font-size: 1.2rem;
}

.search-results .result-category {
    background: var(--bosch-bg);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: var(--radius-round);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* Popular Searches */
.search-popular {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.search-popular span {
    color: var(--text-dark);
    font-weight: 500;
    margin-right: 5px;
}

.search-popular a {
    color: var(--primary-blue);
    text-decoration: none;
    padding: 6px 14px;
    background: var(--bosch-bg);
    border-radius: var(--radius-round);
    transition: all var(--transition-fast);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
}

.search-popular a:hover {
    background: var(--primary-blue);
    color: white;
}

/* ============================================================================
   7. TRUST STRIP & COUNTERS
   ============================================================================ */
.trust-strip {
    background: var(--bg-white);
    border-radius: var(--radius-xxl);
    padding: 40px;
    margin-top: -40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 15;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid var(--border-light);
}

.counter-item {
    text-align: center;
    min-width: 150px;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1;
}

.counter-label {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================================
   8. MARQUEE / BRAND STRIP
   ============================================================================ */
.brand-marquee {
    background: #eef3f9;
    padding: 20px 0;
    margin: 40px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.brand-track {
    display: inline-block;
    animation: scrollMarquee 30s linear infinite;
}

.brand-track span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin: 0 30px;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.brand-track span i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================================
   9. CARDS & GRIDS
   ============================================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.category-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-cyan));
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
}

.category-card:hover:before {
    transform: translateX(0);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
    border-color: var(--bosch-border);
}

.category-card i {
    font-size: 3.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: transform var(--transition-normal);
}

.category-card:hover i {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.category-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.category-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

/* Model Cards (for brand pages) */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.model-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
    border-color: var(--bosch-border);
}

.model-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.model-card:hover .model-image img {
    transform: scale(1.1);
}

.model-content {
    padding: 25px;
}

.model-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-navy);
}

.model-content p {
    color: var(--text-medium);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.model-tag {
    background: var(--bosch-bg);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: var(--radius-round);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ============================================================================
   10. SERVICES SECTION
   ============================================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-blue);
    border-color: var(--bosch-border);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--bosch-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--primary-blue);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    color: white;
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================================
   11. WHY CHOOSE US
   ============================================================================ */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    min-width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
}

.why-item:hover .why-icon {
    background: var(--dark-navy);
    transform: rotate(360deg);
}

.why-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.why-text p {
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================================================
   12. TESTIMONIALS
   ============================================================================ */
.testimonials {
    background: var(--bosch-bg);
    border-radius: var(--radius-xxl);
    padding: 60px;
    margin: 80px 0;
}

.testimonials h2 {
    display: block;
    text-align: center;
    margin-bottom: 40px;
}
.container h2 {
    display: block;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin: 10px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
}

.testimonial-text:before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.2;
    position: absolute;
    left: -5px;
    top: -15px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--dark-navy);
}

.author-info p {
    color: var(--text-medium);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border-dark);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 10px;
}

/* ============================================================================
   13. BRAND PARTNERS SLIDER
   ============================================================================ */
.brands-section {
    margin: 80px 0;
}

.brand-slider {
    overflow: hidden;
    padding: 20px 0;
}

.brand-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    margin: 10px;
}

.brand-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
    transform: translateY(-5px);
}

.brand-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.brand-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.brand-item p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* ============================================================================
   14. CTA SECTION
   ============================================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-cyan));
    border-radius: var(--radius-xxl);
    padding: 60px;
    color: white;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
    pointer-events: none;
}

.cta-section h2 {
    color: white;
    display: block;
    text-align: center;
}

.cta-section h2:after {
    background: white;
    left: 50%;
    transform: translateX(-50%);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 20px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-btn {
    background: white;
    color: var(--primary-blue);
    padding: 16px 45px;
    border-radius: var(--radius-round);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    border: 2px solid transparent;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: var(--bg-light);
}

.cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-outline:hover {
    background: white;
    color: var(--primary-blue);
}

/* ============================================================================
   15. ABOUT PAGE
   ============================================================================ */

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.story-text p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 80px 0;
    text-align: center;
}

.stat-item {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--text-medium);
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.team-member {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-navy);
}

.member-info p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* ============================================================================
   16. BRAND PAGES (VW, Mercedes, BMW, UK)
   ============================================================================ */
.brand-section {
    margin: 80px 0;
    scroll-margin-top: 100px;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.brand-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-blue);
}

/* Luxury Sections */
.luxury-badge {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-round);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.5px;
}

.maybach-section,
.rr-section,
.offroad-section {
    border-radius: var(--radius-xxl);
    padding: 60px;
    margin: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.maybach-section {
    background: linear-gradient(135deg, #1a1a1a, #333);
}

.rr-section {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.offroad-section {
    background: linear-gradient(135deg, #2d5a3a, #1e3f28);
}

.maybach-section h2,
.rr-section h2,
.offroad-section h2 {
    color: white;
    display: block;
    text-align: center;
}

.maybach-section h2:after {
    background: linear-gradient(90deg, var(--gold), #f1c40f);
    left: 50%;
    transform: translateX(-50%);
}

.rr-section h2:after {
    background: linear-gradient(90deg, #c0c0c0, #ffffff);
    left: 50%;
    transform: translateX(-50%);
}

.offroad-section h2:after {
    background: linear-gradient(90deg, #8bc34a, #4caf50);
    left: 50%;
    transform: translateX(-50%);
}

/* Parts Categories */
.parts-categories {
    background: var(--bosch-bg);
    border-radius: var(--radius-xxl);
    padding: 60px;
    margin: 80px 0;
}

.categories-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.category-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
    border-color: var(--primary-blue);
}

.category-item i {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.category-item h4 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-dark);
}

/* ============================================================================
   17. CONTACT PAGE
   ============================================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

.contact-info,
.contact-form {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 45px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: var(--bosch-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.3rem;
    transition: all var(--transition-normal);
}

.info-item:hover .info-icon {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-navy);
}

.info-content p {
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.5;
}

.info-content a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-content a:hover {
    color: var(--primary-blue);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
    text-align: center;
}

.hours-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 35px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

.hours-card i {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.hours-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hours-card p {
    color: var(--text-medium);
    margin-bottom: 0;
    font-weight: 500;
}

.map-container {
    margin: 60px 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================================
   18. FORMS
   ============================================================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--bg-offwhite);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 167, 0.1);
    background: var(--bg-white);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5c6f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.submit-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: var(--radius-round);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 100%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue-lg);
}

.submit-btn i {
    font-size: 1.1rem;
}

/* ============================================================================
   19. FOOTER
   ============================================================================ */
footer {
    background: var(--dark-navy);
    color: white;
    padding: 70px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-cyan);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary-cyan);
    transform: translateX(5px);
}

.footer-col ul li i {
    width: 20px;
    color: var(--secondary-cyan);
    margin-right: 8px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1e3a5f;
    color: var(--text-light);
    font-size: 0.9rem;
}

.copyright a {
    color: var(--text-light);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--secondary-cyan);
}

/* ============================================================================
   20. FLOATING WHATSAPP BUTTON
   ============================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: var(--radius-round);
    padding: 16px 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(29, 161, 142, 0.3);
    z-index: 99;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-normal);
    font-size: 1rem;
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 18px 40px rgba(29, 161, 142, 0.4);
    color: white;
}

.whatsapp-float i {
    font-size: 1.8rem;
}

/* ============================================================================
   21. ANIMATIONS
   ============================================================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* AOS Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ============================================================================
   22. MEDIA QUERIES (RESPONSIVE)
   ============================================================================ */
/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .hero-search-card {
        padding: 25px;
    }
}

/* Tablets */
@media (max-width: 900px) {
    /* Navigation */
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid var(--border-light);
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropbtn {
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        padding: 0;
        display: none;
        width: 100%;
        border: none;
        background: var(--bg-light);
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        text-align: center;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-tagline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-story {
        grid-template-columns: 1fr;
    }
    
    /* Hours */
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    /* Trust Strip */
    .trust-strip {
        padding: 30px 20px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
    }
    
    .hero-search {
        flex-direction: column;
        background: transparent;
        gap: 10px;
        padding: 0;
    }
    
    .hero-search input {
        background: white;
        border-radius: var(--radius-round);
        width: 100%;
        padding: 15px 20px;
    }
    
    .hero-search button {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    
    .search-results {
        position: fixed;
        top: auto;
        left: 20px;
        right: 20px;
        max-height: 60vh;
        z-index: 1001;
    }
    
    .search-popular {
        justify-content: center;
    }
    
    /* Cards */
    .card-grid,
    .model-grid,
    .services-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Trust Strip */
    .counter-item {
        min-width: 120px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 40px 20px;
    }
    
    /* Brand Icons */
    .page-header .brand-icons span {
        width: 100%;
        text-align: center;
    }
    
    .brand-header {
        flex-direction: column;
        text-align: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col ul li a:hover {
        transform: translateX(0);
    }
    
    /* Contact Info */
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float i {
        font-size: 1.4rem;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo-wrap {
        justify-content: center;
        width: 100%;
    }
    
    .bosch-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .contact-info,
    .contact-form {
        padding: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .brand-track span {
        font-size: 1rem;
        margin: 0 20px;
    }
    
    .hours-card {
        padding: 25px 15px;
    }
    
    .map-container {
        height: 300px;
    }
}