/* ============================================
   RegioTaxi Apeldoorn — Premium Design System
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    /* Colors — Deep Royal Night */
    --bg-primary:      #03060e;
    --bg-secondary:    #070d1a;
    --surface:         #0c1524;
    --surface-2:       #111e30;
    --surface-glass:   rgba(8, 14, 26, 0.88);

    --gold:            #d4af37;
    --gold-light:      #f0cc64;
    --gold-dark:       #a88820;
    --gold-glow:       rgba(212, 175, 55, 0.18);
    --gold-glow-sm:    rgba(212, 175, 55, 0.09);
    --gold-gradient:   linear-gradient(135deg, #f0cc64 0%, #d4af37 40%, #a88820 100%);

    --accent-blue:     #1a6bc4;
    --accent-blue-glow: rgba(26, 107, 196, 0.12);

    --text-primary:    #eef2f8;
    --text-secondary:  #8d9db5;
    --text-muted:      #4e5f78;

    --border:          rgba(212, 175, 55, 0.15);
    --border-subtle:   rgba(255, 255, 255, 0.05);
    --border-glow:     rgba(212, 175, 55, 0.4);

    --success:         #22c55e;
    --error:           #ef4444;

    /* Typography */
    --font-body:       'Inter', sans-serif;
    --font-display:    'Playfair Display', serif;

    /* Spacing */
    --section-py:      110px;
    --container-max:   1220px;

    /* Transitions */
    --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm:       0 2px 16px rgba(0,0,0,0.35);
    --shadow-md:       0 10px 40px rgba(0,0,0,0.5);
    --shadow-lg:       0 28px 70px rgba(0,0,0,0.65);
    --shadow-gold:     0 8px 36px rgba(212, 175, 55, 0.28);
    --shadow-gold-lg:  0 20px 60px rgba(212, 175, 55, 0.18);

    /* Radius */
    --radius-sm:       10px;
    --radius-md:       18px;
    --radius-lg:       26px;
    --radius-xl:       36px;
    --radius-full:     9999px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #03060e 0%, #050a18 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: var(--transition); }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Selection ---- */
::selection { background: var(--gold); color: #000; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section-sm { padding: 60px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
    border: 1px solid var(--border);
    padding: 7px 22px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
    box-shadow: inset 0 1px 0 rgba(212,175,55,0.08);
}

.section-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-title span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Divider */
.divider {
    width: 80px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
    border-radius: 2px;
    margin: 20px auto 0;
    box-shadow: 0 0 12px rgba(212,175,55,0.4);
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: linear-gradient(90deg, #020508, #050d1a, #020508);
    border-bottom: 1px solid rgba(212,175,55,0.08);
    padding: 9px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar a, .topbar span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 13px;
}

.topbar a:hover { color: var(--gold); }

.topbar-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366 !important;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(37, 211, 102, 0.2);
    font-weight: 500;
}

.topbar-whatsapp:hover {
    background: rgba(37, 211, 102, 0.25) !important;
    color: #25d366 !important;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 6, 14, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(212,175,55,0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(3, 6, 14, 0.97);
    border-color: var(--border);
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-primary {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-secondary {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link i { font-size: 11px; transition: var(--transition); }
.nav-link:hover, .nav-item.active .nav-link {
    color: var(--gold);
    background: var(--gold-glow-sm);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .nav-link i { transform: rotate(180deg); }

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown li a i {
    width: 16px;
    color: var(--gold);
    font-size: 13px;
}

.dropdown li a:hover {
    color: var(--text-primary);
    background: var(--gold-glow-sm);
}

/* CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gold-gradient);
    color: #000 !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    flex-shrink: 0;
    letter-spacing: 0.3px;
    overflow: hidden;
    position: relative;
}

.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    filter: brightness(1.1);
}

.nav-cta:hover::after {
    animation: shimmer 0.7s ease forwards;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.2) saturate(0.7);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 80% at 30% 50%, rgba(212,175,55,0.04) 0%, transparent 70%),
        linear-gradient(
            130deg,
            rgba(3, 6, 14, 0.97) 0%,
            rgba(7, 13, 26, 0.80) 50%,
            rgba(3, 6, 14, 0.93) 100%
        );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-glow);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.hero-badge i { font-size: 14px; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 0 16px rgba(212,175,55,0.4));
}

.hero-stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-image-col {
    position: relative;
    z-index: 2;
}

.hero-car-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 100px rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.15);
}

.hero-car-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.06), transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-car-card img { width: 100%; height: 420px; object-fit: cover; }
.hero-car-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(3, 6, 14, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.hero-car-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.hero-car-sub {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.hero-car-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll i { font-size: 18px; color: var(--gold); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Two-col hero layout */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* ============================================
   BUTTONS
   ============================================ */

@keyframes shimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg);
}

.btn:hover::after {
    animation: shimmer 0.7s ease forwards;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000 !important;
    box-shadow: var(--shadow-gold);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    filter: brightness(1.08);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary) !important;
    border: 1.5px solid rgba(212,175,55,0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
    background: var(--gold-glow);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.12);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px; height: 50px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 18px;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.2);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: linear-gradient(145deg, var(--surface) 0%, rgba(12,21,36,0.6) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 44px 34px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(212,175,55,0.06), transparent 70%);
    border-radius: 50%;
    transition: var(--transition-slow);
}

.service-card:hover {
    border-color: rgba(212,175,55,0.25);
    transform: translateY(-10px);
    box-shadow: var(--shadow-md), 0 0 80px rgba(212,175,55,0.08);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scale(1.8) translate(-20px, -20px); opacity: 0.7; }

.service-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212,175,55,0.1);
}

.service-card:hover .service-icon {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: var(--transition);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.service-card .card-link:hover { gap: 14px; border-bottom-color: var(--gold); }
.service-card .card-link i { font-size: 12px; }

.service-card.featured {
    background: linear-gradient(145deg, var(--surface) 0%, rgba(17, 30, 48, 0.8) 100%);
    border-color: rgba(212,175,55,0.18);
    box-shadow: 0 0 60px rgba(212,175,55,0.05);
}

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.fleet-card {
    background: var(--surface);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    position: relative;
}

.fleet-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(212,175,55,0.25), transparent 60%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.fleet-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 0 100px rgba(212,175,55,0.1);
}

.fleet-card:hover::after { opacity: 1; }

.fleet-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.fleet-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.fleet-card:hover .fleet-image img { transform: scale(1.08); }

.fleet-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,6,14,0.92) 0%, rgba(3,6,14,0.3) 40%, transparent 70%);
}

.fleet-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}

.fleet-body { padding: 30px 32px; }

.fleet-brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.fleet-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.fleet-model {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 22px;
}

.fleet-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--text-secondary);
    background: linear-gradient(135deg, var(--surface-2), rgba(17,30,48,0.6));
    padding: 7px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.fleet-spec:hover {
    border-color: var(--border);
    color: var(--gold);
}
}

.fleet-spec i { color: var(--gold); font-size: 12px; }

.fleet-desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   AIRPORT SECTION
   ============================================ */
.airports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.airport-card {
    background: linear-gradient(145deg, var(--surface), rgba(12,21,36,0.7));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.airport-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), 0 0 40px rgba(212,175,55,0.06);
}

.airport-img {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.airport-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.airport-card:hover .airport-img img { transform: scale(1.08); }

.airport-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--surface-2), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
    opacity: 0.4;
}

.airport-body {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.airport-name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.airport-country {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.airport-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    text-align: right;
}

.airport-price small { font-size: 12px; font-weight: 400; color: var(--text-muted); display: block; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(145deg, var(--surface), rgba(12,21,36,0.5));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(212,175,55,0.25);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), 0 0 50px rgba(212,175,55,0.07);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 76px; height: 76px;
    background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(212,175,55,0.05));
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--gold);
    margin: 0 auto 22px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212,175,55,0.1);
}

.feature-card:hover .feature-icon {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 40%, var(--surface) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,175,55,0.05), transparent);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 24px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--border);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px rgba(212,175,55,0.3));
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   PAYMENT METHODS
   ============================================ */
.payments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.payment-badge:hover {
    border-color: var(--border);
    color: var(--text-primary);
}

.payment-badge i { color: var(--gold); font-size: 16px; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--border); }
.faq-item.open { border-color: var(--border); box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    background: none;
    transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-question i {
    font-size: 13px;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    border-top: 1px solid var(--border-subtle);
    padding-top: 18px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 50px; height: 50px;
    background: var(--gold-glow);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item-text a, .contact-item-text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-item-text a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: var(--surface);
    box-shadow: 0 0 0 3px var(--gold-glow-sm);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
    display: none;
    text-align: center;
    padding: 32px;
    background: rgba(46, 160, 67, 0.08);
    border: 1px solid rgba(46, 160, 67, 0.2);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.form-success i { font-size: 40px; color: var(--success); margin-bottom: 12px; }
.form-success h4 { font-size: 18px; color: var(--text-primary); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-secondary); }

/* ============================================
   TARIEVEN PAGE
   ============================================ */
.tarieven-intro {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.tarieven-intro-icon {
    width: 72px; height: 72px;
    background: var(--gold-glow);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--gold);
    flex-shrink: 0;
}

.tarief-table-wrap {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.tarief-table-head {
    background: var(--surface-2);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.tarief-table-head h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.tarief-table-head i { color: var(--gold); }

.tarief-table {
    width: 100%;
    border-collapse: collapse;
}

.tarief-table th {
    background: var(--surface-2);
    padding: 14px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-subtle);
}

.tarief-table td {
    padding: 16px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.tarief-table tr:last-child td { border-bottom: none; }

.tarief-table tr:hover td { background: var(--gold-glow-sm); color: var(--text-primary); }

.tarief-table .price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    padding: 90px 0 80px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(7,13,26,0.95) 50%, var(--surface) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.07), transparent 70%);
    border-radius: 50%;
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: var(--text-muted); }
.breadcrumbs .current { color: var(--gold); }

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.15;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.7;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -180px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 360px;
    background: radial-gradient(ellipse, rgba(212,175,55,0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.cta-band::after {
    content: '';
    position: absolute;
    bottom: -180px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(26,107,196,0.05), transparent 70%);
    border-radius: 50%;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-band h2 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-band p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--surface), rgba(12,21,36,0.6));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 120px;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(212,175,55,0.25);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), 0 0 50px rgba(212,175,55,0.06);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i { color: var(--gold); font-size: 14px; }

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.testimonial-author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.float-whatsapp,
.float-call {
    position: fixed;
    right: 24px;
    z-index: 990;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: fixed;
}

.float-whatsapp {
    bottom: 178px;
    background: linear-gradient(135deg, #25d366, #1aae55);
    color: #fff;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.float-call {
    bottom: 108px;
    background: var(--gold-gradient);
    color: #000;
    box-shadow: var(--shadow-gold);
}

.float-whatsapp:hover,
.float-call:hover {
    transform: scale(1.14) translateY(-2px);
}

.float-whatsapp:hover { box-shadow: 0 14px 40px rgba(37,211,102,0.5); }
.float-call:hover { box-shadow: var(--shadow-gold-lg); }

.float-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--surface);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.float-whatsapp:hover .float-tooltip,
.float-call:hover .float-tooltip { opacity: 1; visibility: visible; }

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 990;
    width: 48px; height: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-glow); transform: translateY(-3px); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #020408 100%);
    border-top: 1px solid var(--border);
}

.footer-top {
    padding: 90px 0 70px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-brand .logo { margin-bottom: 18px; }

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px; height: 40px;
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
    border-color: rgba(212,175,55,0.4);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.15);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 5px 0;
    transition: var(--transition);
}

.footer-col ul li a i { font-size: 10px; color: var(--gold); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact li i {
    width: 18px;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact li a { color: var(--text-secondary); }
.footer-contact li a:hover { color: var(--gold); }
.footer-contact li span { color: var(--text-secondary); }

.footer-bottom {
    padding: 24px 0;
    display: flex;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-legal a { color: var(--text-muted); font-size: 13px; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================
   ALERT / NOTICE
   ============================================ */
.notice {
    background: var(--gold-glow-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14.5px;
    color: var(--text-secondary);
}

.notice i { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root { --section-py: 70px; }

    .hero-inner        { grid-template-columns: 1fr; }
    .hero-image-col    { display: none; }
    .hero              { min-height: 80vh; }
    .services-grid     { grid-template-columns: 1fr 1fr; }
    .fleet-grid        { grid-template-columns: 1fr 1fr; }
    .airports-grid     { grid-template-columns: repeat(2, 1fr); }
    .features-grid     { grid-template-columns: repeat(2, 1fr); }
    .stats-grid        { grid-template-columns: repeat(2, 1fr); }
    .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid      { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --section-py: 56px; }

    .topbar { display: none; }

    /* Nav mobile */
    .navbar { height: 64px; }
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0; right: -320px;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: var(--surface);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 40px;
        z-index: 999;
        transition: var(--transition-slow);
        gap: 4px;
        overflow-y: auto;
    }

    .nav-menu.open { right: 0; }

    .nav-item { width: 100%; }
    .nav-link { width: 100%; padding: 12px 16px; font-size: 15px; }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: var(--surface-2);
        box-shadow: none;
        padding: 4px 0 4px 16px;
        border: none;
        border-left: 2px solid var(--border);
        margin: 4px 0 4px 16px;
        display: none;
        min-width: auto;
        border-radius: var(--radius-sm);
    }

    .dropdown.open { display: block; }
    .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: none; }

    .nav-cta { width: 100%; justify-content: center; margin-top: 16px; }

    /* Hero */
    .hero { min-height: 88vh; padding: 80px 0 100px; }
    .hero-stats { gap: 24px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    /* Grids */
    .services-grid     { grid-template-columns: 1fr; }
    .fleet-grid        { grid-template-columns: 1fr; }
    .airports-grid     { grid-template-columns: 1fr; }
    .features-grid     { grid-template-columns: 1fr 1fr; }
    .stats-grid        { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row          { grid-template-columns: 1fr; }
    .footer-grid       { grid-template-columns: 1fr; gap: 32px; }

    .tarieven-intro { flex-direction: column; }
    .contact-form-wrap { padding: 24px; }

    .fleet-image { height: 220px; }
    .airport-img { height: 120px; }

    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item:not(:last-child)::after { display: none; }
    .container { padding: 0 18px; }
}

/* ============================================
   INNER PAGE SPECIFIC RESPONSIVE
   ============================================ */
/* Inner two-col grids used inside pages (direct-taxi, zakelijk, airport, faq) */
@media (max-width: 900px) {
    [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: 1.2fr 0.8fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: 1fr 360px"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
    [style*="position: sticky"] { position: relative !important; top: auto !important; }
}

@media (max-width: 600px) {
    [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: repeat(2, 1fr)"] { grid-template-columns: 1fr !important; }
    .form-row { grid-template-columns: 1fr !important; }
}

/* ============================================
   ANIMATIONS & POLISH
   ============================================ */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loading-shimmer {
    background: linear-gradient(
        90deg,
        var(--surface) 25%,
        var(--surface-2) 50%,
        var(--surface) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header, .footer, .float-whatsapp, .float-call, .scroll-top, .cta-band { display: none !important; }
    body { background: white; color: black; }
    a { color: black; }
}
