/* ============================================
   0. CSS Custom Properties
   ============================================ */
:root {
    /* Colors */
    --color-navy: #1B3A5C;
    --color-blue: #2B7CBF;
    --color-blue-light: #3A9FE0;
    --color-blue-dark: #1a5a8a;
    --color-silver: #A8B8C8;
    --color-chrome-start: #C0C8D0;
    --color-chrome-end: #E8ECF0;
    --color-white: #FFFFFF;
    --color-offwhite: #F5F7FA;
    --color-dark: #0F2338;
    --color-text: #2C3E50;
    --color-text-light: #6C7A89;
    --color-whatsapp: #25D366;
    --color-gold: #F4C430;
    --color-danger: #e74c3c;
    --color-success: #27ae60;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 5rem;
    --container-max: 1200px;
    --nav-height: 100px;
    --topbar-height: 40px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 12px 28px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.06), 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
}

/* ============================================
   1. Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* ============================================
   2. Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-navy);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

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

p:last-child {
    margin-bottom: 0;
}

.text-light {
    color: var(--color-text-light);
}

/* ============================================
   3. Layout Utilities
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    max-width: 100%;
}

@media (max-width: 768px) {
    .section-header h2 {
        display: block;
        hyphens: auto;
        -webkit-hyphens: auto;
        word-break: break-word;
    }
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
    border-radius: 2px;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
}

.bg-offwhite {
    background-color: var(--color-offwhite);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-navy {
    background-color: var(--color-navy);
}

/* ============================================
   4. Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(43, 124, 191, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 124, 191, 0.45);
}

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

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

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

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

.btn-nav {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ============================================
   5. Top Bar
   ============================================ */
.topbar {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1001;
}

.topbar.hidden {
    transform: translateY(-100%);
    position: absolute;
    width: 100%;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-left a,
.topbar-left span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
}

.topbar-left a:hover {
    color: var(--color-white);
}

.topbar-left i {
    color: var(--color-blue-light);
    font-size: 0.75rem;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-right a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.topbar-right a:hover {
    color: var(--color-white);
}

/* ============================================
   6. Navigation
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-nav);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo img {
    height: 85px;
    width: 85px;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--color-blue);
}

.nav-links a.active {
    color: var(--color-blue);
}

.nav-cta {
    margin-left: 1rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background-color: var(--color-navy);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

/* Mobile Nav Overlay */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-dark), var(--color-navy));
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-mobile-close:hover {
    opacity: 1;
}

.nav-mobile a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.nav-mobile.active a {
    opacity: 1;
    transform: translateX(0);
}

.nav-mobile.active a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.active a:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile.active a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile.active a:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile.active a:nth-child(5) { transition-delay: 0.3s; }
.nav-mobile.active a:nth-child(6) { transition-delay: 0.35s; }
.nav-mobile.active a:nth-child(7) { transition-delay: 0.4s; }
.nav-mobile.active a:nth-child(8) { transition-delay: 0.45s; }

.nav-mobile a:hover {
    color: var(--color-blue-light);
}

/* ============================================
   7. Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(15, 35, 56, 0.88) 0%,
        rgba(27, 58, 92, 0.7) 50%,
        rgba(43, 124, 191, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-silver);
    margin-bottom: 1.5rem;
}

.hero-label::before,
.hero-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-silver);
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 1.25rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

/* Page Hero (sub-pages) */
.page-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
    overflow: hidden;
}

.page-hero .hero-bg {
    opacity: 0.35;
}

.page-hero .hero-overlay {
    background: linear-gradient(135deg,
        rgba(15, 35, 56, 0.9) 0%,
        rgba(27, 58, 92, 0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero h1 {
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb .separator {
    font-size: 0.75rem;
}

/* ============================================
   8. USP Strip
   ============================================ */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.usp-item {
    text-align: center;
    padding: 2rem 1rem;
}

.usp-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-chrome-start), var(--color-chrome-end));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--color-navy);
    box-shadow: var(--shadow-sm);
}

.usp-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.usp-item p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* ============================================
   9. Car Cards
   ============================================ */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.compare-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.car-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.car-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.car-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.car-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    letter-spacing: 0.02em;
}

.car-card-body {
    padding: 1.5rem;
}

.car-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.car-card-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.car-card-spec {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.car-card-spec i {
    color: var(--color-blue);
    font-size: 0.75rem;
}

.car-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-offwhite);
}

.car-card-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-blue);
}

.car-card-link {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.car-card-link:hover {
    color: var(--color-blue);
    gap: 0.6rem;
}

/* ============================================
   10. About Section
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--color-blue);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ============================================
   11. Services Section
   ============================================ */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.services-section .section-header h2 {
    color: var(--color-white);
}

.services-section .section-header h2::after {
    background: linear-gradient(135deg, var(--color-blue-light), var(--color-white));
}

.services-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-blue-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--color-white);
}

.service-card h3 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.service-card .btn-outline {
    margin-top: 1.5rem;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 0.8125rem;
    padding: 0.625rem 1.25rem;
}

.service-card .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
}

/* ============================================
   12. Reviews / Testimonials
   ============================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

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

.review-card-quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--color-offwhite);
    font-family: Georgia, serif;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
    font-size: 0.875rem;
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-navy);
}

.review-car {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: 0.2rem;
}

.reviews-badge {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.reviews-badge-score {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-navy);
}

.reviews-badge-text {
    text-align: left;
}

.reviews-badge-text .review-stars {
    margin-bottom: 0.25rem;
}

.reviews-badge-text span {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

/* ============================================
   13. CTA Banner
   ============================================ */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-banner .hero-bg {
    opacity: 0.3;
}

.cta-banner .hero-overlay {
    background: linear-gradient(135deg,
        rgba(15, 35, 56, 0.92) 0%,
        rgba(27, 58, 92, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--color-white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   14. Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.1rem;
}

.contact-info-item h4 {
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.contact-info-item a {
    color: var(--color-blue);
}

.contact-info-item a:hover {
    color: var(--color-blue-dark);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
    filter: grayscale(40%);
    transition: var(--transition);
}

.contact-map:hover iframe {
    filter: grayscale(0%);
}

/* ============================================
   15. Footer
   ============================================ */
.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand img {
    height: 90px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer h4 {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-blue);
}

.footer-links a {
    display: block;
    padding: 0.35rem 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 0.5rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.footer-contact-item i {
    color: var(--color-blue-light);
    margin-top: 0.25rem;
    min-width: 16px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item a:hover {
    color: var(--color-white);
}

.footer-hours {
    font-size: 0.9375rem;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-hours-row span:first-child {
    color: rgba(255, 255, 255, 0.65);
}

.footer-hours-row span:last-child {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

/* ============================================
   16. WhatsApp Button
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s ease-in-out 3s 3;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--color-white);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.15); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* ============================================
   17. Occasions Page
   ============================================ */
.inventory-container {
    min-height: 600px;
    padding: 1rem;
}

.inventory-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-offwhite);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-silver);
}

.inventory-placeholder i {
    font-size: 3rem;
    color: var(--color-silver);
    margin-bottom: 1rem;
}

.inventory-placeholder h3 {
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.inventory-placeholder p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Loading skeleton */
.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.skeleton-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.skeleton-image {
    aspect-ratio: 16 / 10;
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-body {
    padding: 1.5rem;
}

.skeleton-line {
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    margin-bottom: 0.75rem;
}

.skeleton-line:nth-child(1) { width: 70%; }
.skeleton-line:nth-child(2) { width: 90%; }
.skeleton-line:nth-child(3) { width: 40%; }

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   18. Inkoop Page
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1rem;
}

.step-item {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.step-item h3 {
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.step-connector {
    display: none;
}

/* Inkoop Form */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section:last-of-type {
    margin-bottom: 2rem;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-offwhite);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title i {
    color: var(--color-blue);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-navy);
    letter-spacing: 0.02em;
}

.form-group label .required {
    color: var(--color-danger);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #dce1e8;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--color-text);
    background-color: var(--color-white);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(43, 124, 191, 0.12);
}

.form-control::placeholder {
    color: var(--color-silver);
}

.form-control.error {
    border-color: var(--color-danger);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-control.valid {
    border-color: var(--color-success);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236C7A89' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-error {
    font-size: 0.75rem;
    color: var(--color-danger);
    display: none;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.15rem;
}

.form-error.visible {
    display: flex;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* Radio group */
.radio-group {
    display: flex;
    gap: 1.5rem;
    padding-top: 0.25rem;
}

.radio-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #dce1e8;
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.radio-label input[type="radio"]:checked {
    border-color: var(--color-blue);
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--color-blue);
}

/* File upload */
.file-upload {
    border: 2px dashed #dce1e8;
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.file-upload:hover {
    border-color: var(--color-blue);
    background: rgba(43, 124, 191, 0.03);
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 2rem;
    color: var(--color-silver);
    margin-bottom: 0.75rem;
}

.file-upload-text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.file-upload-text span {
    color: var(--color-blue);
    font-weight: 500;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.file-preview-item {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-item .remove-file {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
    color: var(--color-white);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(43, 124, 191, 0.3);
    font-family: var(--font-heading);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 124, 191, 0.45);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: var(--radius-full);
    animation: spin 0.6s linear infinite;
    margin-right: 0.5rem;
}

.btn-submit.loading .spinner {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.form-success.visible {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.form-success-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-success), #2ecc71);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.form-success h2 {
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--color-text-light);
    font-size: 1.0625rem;
}

/* ============================================
   19. CTA Section (occasions page)
   ============================================ */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-offwhite);
    border-radius: var(--radius-lg);
}

.cta-section h2 {
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

/* ============================================
   20. Scroll Animations
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ============================================
   21. Media Queries
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem;
    }

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

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

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

    .services-grid .service-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .reviews-grid .review-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem;
        --nav-height: 70px;
    }

    .topbar {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-mobile {
        display: flex;
    }

    .hero {
        min-height: 85vh;
    }

    .hero h1 {
        font-size: clamp(2rem, 6vw, 2.75rem);
    }

    .hero-label::before,
    .hero-label::after {
        width: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .usp-item {
        padding: 1.5rem 0.75rem;
    }

    .usp-icon {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .cars-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .about-image::before {
        display: none;
    }

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

    .services-grid .service-card:last-child {
        max-width: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .reviews-grid .review-card:last-child {
        max-width: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .form-container {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

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

    .radio-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-item {
        padding: 1.5rem 1rem;
    }

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

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .page-hero {
        height: 220px;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .usp-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Large desktop */
@media (min-width: 1280px) {
    .container {
        padding: 0 2rem;
    }
}
