/* ============================================================
   TOKENS & VARIABLES
============================================================ */
:root {
    --navy: #0a1a3a;
    --navy-mid: #0f2550;
    --blue: #0b8de8;
    --blue-dark: #0870c0;
    --teal: #0fa5a0;
    --gradient: linear-gradient(135deg, #0b8de8, #0fa5a0);
    --gradient-h: linear-gradient(135deg, #0870c0, #0d908b);
    --sand: #f6f4ef;
    --sand-light: #faf9f6;
    --white: #ffffff;
    --text: #1a2a3a;
    --muted: #5a7080;
    --border: #e2eaf2;
    --shadow-sm: 0 4px 16px rgba(10, 26, 58, 0.07);
    --shadow-md: 0 12px 40px rgba(10, 26, 58, 0.12);
    --shadow-lg: 0 24px 64px rgba(10, 26, 58, 0.16);
    --shadow-xl: 0 32px 80px rgba(10, 26, 58, 0.20);
    --radius: 18px;
    --radius-sm: 10px;
    --radius-lg: 28px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASIS
============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}

/* ============================================================
   HEADER
============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 70px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(10, 26, 58, 0.06);
}
.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-img {
    width: 170px;
    height: auto;
}
nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
nav a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.18s;
    white-space: nowrap;
}
nav a:hover {
    background: var(--sand);
    color: var(--text);
}
nav a.active {
    background: #edf4fd;
    color: var(--blue);
}
.nav-cta {
    background: var(--gradient);
    color: white !important;
    padding: 8px 18px !important;
    border-radius: 60px;
    font-weight: 700;
}
.nav-cta:hover {
    background: var(--gradient-h) !important;
    color: white !important;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 4px;
    transition: 0.25s;
}

/* ============================================================
   LOADING SCREEN
============================================================ */
#loadingFlash {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 32px 36px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    transition: opacity 0.4s;
}
#loadingFlash .load-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 1.4rem;
}
#loadingFlash h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
#loadingFlash p {
    color: var(--muted);
    font-size: 0.85rem;
}
.loading-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin: 20px auto 18px;
    max-width: 340px;
}
.loading-checklist .item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--muted);
    opacity: 0.5;
    transition: opacity 0.4s;
}
.loading-checklist .item.done {
    opacity: 1;
    color: var(--text);
}
.loading-checklist .item i {
    width: 20px;
    color: var(--teal);
    font-size: 0.9rem;
}
.loading-progress {
    width: 100%;
    height: 4px;
    background: #e8eef6;
    border-radius: 4px;
    overflow: hidden;
    margin: 6px auto;
}
.loading-progress .bar {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 0.3s ease;
}
.loading-footnote {
    margin-top: 20px;
    font-size: 0.78rem;
    color: var(--muted);
    opacity: 0.7;
}

/* ============================================================
   HERO – Premium
============================================================ */
.hero-premium {
    margin-top: 70px;
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    overflow: hidden;
}
.hero-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(11, 141, 232, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(15, 165, 160, 0.20) 0%, transparent 50%),
        linear-gradient(145deg, #0a1a3a 0%, #0f2550 50%, #122a5a 100%);
}
.hero-premium-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iODAiIGhlaWdodD0iODAiIGZpbGw9Im5vbmUiLz48Y2lyY2xlIGN4PSI0MCIgY3k9IjQwIiByPSIxIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDQpIi8+PC9zdmc+');
    background-size: 60px 60px;
    opacity: 0.6;
}
.hero-premium-bg .hero-illustration {
    position: absolute;
    right: -5%;
    bottom: -10%;
    width: 55%;
    height: 70%;
    opacity: 0.08;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-8deg);
}
.hero-premium-inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    width: 100%;
    padding: 40px 56px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Hero Content */
.hero-content {
    color: white;
    padding-top: 12px;
}
.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 60px;
    padding: 8px 20px 8px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}
.hero-content .hero-badge i {
    color: #7dd3fc;
}
.hero-content .hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    margin-left: 4px;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.hero-content h1 .highlight {
    background: linear-gradient(135deg, #7dd3fc, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content .hero-sub {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    margin-bottom: 32px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.hero-trust-item i {
    color: #2ecc71;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}
.hero-trust-item .num {
    font-weight: 800;
    color: white;
    font-size: 0.95rem;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(11, 141, 232, 0.35);
}
.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 44px rgba(11, 141, 232, 0.45);
    background: var(--gradient-h);
}
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 60px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s;
}
.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* Social Proof Banner */
.social-proof-banner {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}
.social-proof-banner .sp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 500;
}
.social-proof-banner .sp-item i {
    color: #f5b342;
}
.social-proof-banner .sp-item .stars {
    color: #f5b342;
    letter-spacing: 1px;
}
.social-proof-banner .sp-item .num {
    font-weight: 800;
    color: white;
}
.social-proof-banner .sp-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.10);
}

/* ============================================================
   BOOKING CARD
============================================================ */
.hero-booking-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.30);
    padding: 8px;
    position: relative;
    overflow: visible !important;
}
.hero-booking-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(11, 141, 232, 0.08), transparent 60%);
    pointer-events: none;
}

.booking-container {
    max-width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-lg);
    overflow: visible !important;
    position: relative;
    z-index: 2;
}
.booking-header {
    background: var(--gradient);
    padding: 20px 28px;
    color: white;
}
.booking-header h2 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.booking-header p {
    opacity: 0.85;
    font-size: 0.8rem;
}
.booking-body {
    padding: 28px 28px 32px;
    background: white;
    overflow: visible !important;
}

/* Step Progress */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    position: relative;
    padding: 0 4px;
}
.step-progress::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}
.step-progress .step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 1;
    cursor: default;
    flex: 1;
}
.step-progress .step-dot .circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.step-progress .step-dot.active .circle {
    background: var(--gradient);
    color: white;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(11, 141, 232, 0.2);
}
.step-progress .step-dot.done .circle {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
}
.step-progress .step-dot .label {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}
.step-progress .step-dot.active .label {
    color: var(--navy);
}
.step-progress .step-dot.done .label {
    color: var(--teal);
}

/* Steps Container */
.steps-container {
    position: relative;
    overflow: visible !important;
}
.booking-step {
    display: none;
    animation: fadeSlideUp 0.45s ease;
    overflow: visible !important;
}
.booking-step.active {
    display: block;
}
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title-lg {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}
.step-subtitle {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 18px;
}

/* Form Fields */
.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}
.field label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.01em;
}
.field label .req {
    color: #e05;
    margin-left: 2px;
}
.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon {
    position: absolute;
    left: 14px;
    color: var(--blue);
    font-size: 0.8rem;
    z-index: 1;
    pointer-events: none;
}
.input-wrap input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
}
.input-wrap input::placeholder {
    color: #a8b8c8;
}
.input-wrap input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11, 141, 232, 0.12);
}
.input-clear {
    position: absolute;
    right: 10px;
    background: #dce8f5;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.65rem;
    color: var(--navy);
    transition: background 0.15s;
}
.input-clear.visible {
    display: flex;
}
.input-clear:hover {
    background: var(--blue);
    color: white;
}
.autocomplete {
    position: relative;
    overflow: visible !important;
}
.suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 14px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 9999 !important;
    box-shadow: 0 16px 48px rgba(10, 26, 58, 0.14);
    border: 1px solid var(--border);
}
.suggestion-item {
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    transition: background 0.12s;
}
.suggestion-item:hover {
    background: #f0f6ff;
}
.sug-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #edf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.sug-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.sug-match {
    color: var(--blue);
    font-weight: 700;
}
.sug-sub {
    font-size: 0.72rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.no-results {
    padding: 14px 16px;
    color: var(--muted);
    font-size: 0.85rem;
    text-align: center;
}

.btn-check {
    display: none;
    width: 100%;
    padding: 16px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(11, 141, 232, 0.3);
    margin-top: 8px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-check.visible {
    display: flex;
}
.btn-check:hover {
    background: var(--gradient-h);
    box-shadow: 0 6px 28px rgba(11, 141, 232, 0.4);
    transform: translateY(-2px);
}

.route-info-strip {
    display: none;
    align-items: center;
    gap: 16px;
    background: #f0f8ff;
    border: 1px solid #d0e8fb;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.82rem;
    color: var(--navy);
    margin-top: 14px;
    flex-wrap: wrap;
}
.route-info-strip.visible {
    display: flex;
}
.route-info-strip i {
    color: var(--blue);
}
.route-divider {
    color: var(--border);
}

/* Vehicle Cards */
.vehicle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 6px;
}
.vehicle-card-modern {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    cursor: default;
    position: relative;
}
.vehicle-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}
.vehicle-card-modern.selected {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11, 141, 232, 0.2);
}
.vehicle-card-modern .v-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: #f0f4fa;
}
.vehicle-card-modern .v-body {
    padding: 14px 16px 16px;
}
.vehicle-card-modern .v-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
}
.vehicle-card-modern .v-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue);
    margin: 2px 0 6px;
}
.vehicle-card-modern .v-price small {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
}
.vehicle-card-modern .v-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    font-size: 0.72rem;
    color: var(--muted);
    margin: 6px 0 10px;
}
.vehicle-card-modern .v-features span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.vehicle-card-modern .v-features i {
    color: var(--teal);
    font-size: 0.7rem;
}
.vehicle-card-modern .v-select-btn {
    width: 100%;
    padding: 10px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}
.vehicle-card-modern .v-select-btn:hover {
    background: var(--gradient-h);
}
.vehicle-card-modern .v-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 60px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Return Transfer Cards */
.return-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 10px;
}
.return-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
}
.return-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.return-card.selected {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11, 141, 232, 0.15);
    background: #f0f7ff;
}
.return-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.return-card .sub {
    font-size: 0.78rem;
    color: var(--muted);
}
.return-card .discount-badge {
    display: inline-block;
    background: #2ecc71;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 60px;
    margin-top: 6px;
}
.return-card .price-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 6px;
}
.return-card .price-tag .old {
    text-decoration: line-through;
    color: var(--muted);
    font-weight: 400;
    font-size: 0.75rem;
    margin-right: 6px;
}

/* Customer Form */
.customer-form .fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.customer-form .field {
    margin-bottom: 12px;
}
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #25D366, #20bd5a);
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}
.btn-submit:hover {
    background: linear-gradient(135deg, #20bd5a, #1aaa50);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}
.flight-section {
    display: none;
    flex-direction: column;
    gap: 14px;
    background: #f7fbff;
    border: 1px solid #d8edfa;
    border-radius: var(--radius-sm);
    padding: 18px;
    margin-top: 4px;
}
.flight-section.visible {
    display: flex;
}
.flight-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-hints {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    background: #f7fbff;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    border: 1px solid #d8edfa;
    font-size: 0.75rem;
    color: var(--text);
}
.service-hints span i {
    color: var(--teal);
    margin-right: 6px;
}
.cancel-note {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-align: center;
    margin-top: 14px;
    padding: 10px 14px;
    background: #f0faf4;
    border: 1px solid #c6ebd4;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: #2a7a4a;
    line-height: 1.4;
}
.cancel-note i {
    color: #1f9d57;
    flex-shrink: 0;
}
.cancel-note strong {
    color: #1a6b3c;
}

/* Car Types Preview */
.car-types-preview {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 60px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px 28px;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.car-types-preview .preview-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.car-types-preview .preview-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.car-types-preview .preview-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
    padding: 4px 10px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.04);
}
.car-types-preview .preview-item:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}
.car-types-preview .preview-item i {
    color: #7dd3fc;
    font-size: 0.85rem;
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip-premium {
    background: var(--white);
    padding: 40px 56px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 56px;
    border-bottom: 1px solid var(--border);
}
.trust-strip-premium .ts-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}
.trust-strip-premium .ts-item i {
    font-size: 1.2rem;
    color: var(--blue);
    width: 28px;
    text-align: center;
}
.trust-strip-premium .ts-item .label {
    font-weight: 400;
    color: var(--muted);
}

/* ============================================================
   FLEET SECTION
============================================================ */
.fleet-section {
    background: var(--sand-light);
    padding: 72px 56px;
}
.fleet-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.fleet-inner .section-label {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 4px 18px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.fleet-inner h2 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.fleet-inner .sub {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto 36px;
}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vehicle-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
    text-align: left;
}
.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}
.vehicle-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.vehicle-content {
    padding: 18px 20px 20px;
}
.vehicle-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy);
}
.vehicle-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #edf4fd;
    color: var(--blue);
    border-radius: 60px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
}
.vehicle-card.highlight-card {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11, 141, 232, 0.25);
}
.vehicle-card .vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--muted);
}
.vehicle-card .vehicle-features span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.vehicle-card .vehicle-features i {
    color: var(--teal);
    font-size: 0.7rem;
}
.vehicle-card .vehicle-book-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: var(--gradient);
    color: white;
    border-radius: 60px;
    font-size: 0.78rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.vehicle-card .vehicle-book-btn:hover {
    background: var(--gradient-h);
    transform: translateY(-1px);
}

/* ============================================================
   HOW IT WORKS, ROUTES, COMPARISON, REVIEWS, GUARANTEES, FAQ
============================================================ */
.how-it-works {
    background: var(--sand-light);
    padding: 72px 56px;
}
.how-it-works-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.how-it-works-inner .section-label {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 4px 18px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.how-it-works-inner h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.how-it-works-inner .sub {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto 40px;
}
.hiw-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}
.hiw-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}
.hiw-step {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 16px 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
    text-align: center;
}
.hiw-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}
.hiw-step .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 14px;
}
.hiw-step i {
    font-size: 1.6rem;
    color: var(--blue);
    display: block;
    margin-bottom: 10px;
}
.hiw-step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.hiw-step p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

.routes-section {
    background: var(--white);
    padding: 72px 56px;
}
.routes-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.routes-inner .section-label {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 4px 18px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.routes-inner h2 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.routes-inner .sub {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto 36px;
}
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 36px;
}
.route-card {
    background: var(--sand-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
}
.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.2s;
}
.route-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.route-card:hover::before {
    opacity: 1;
}
.route-card-icon {
    width: 40px;
    height: 40px;
    background: #edf4ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1rem;
    margin-bottom: 14px;
}
.route-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}
.route-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.route-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--white);
    border-radius: 60px;
    padding: 4px 11px;
    font-size: 0.73rem;
    font-weight: 700;
    border: 1px solid var(--border);
}
.route-pill.price {
    color: var(--teal);
    border-color: #b8ece8;
    background: #f0faf9;
}
.route-pill.time {
    color: var(--muted);
}
.route-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #c8d8e8;
    font-size: 0.8rem;
    transition: all 0.2s;
}
.route-card:hover .route-arrow {
    color: var(--blue);
    right: 12px;
}
.route-card.featured-route {
    border-color: var(--blue);
    background: #f0f7ff;
}

.comparison-section {
    background: var(--white);
    padding: 72px 56px;
}
.comparison-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.comparison-inner .section-label {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 4px 18px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.comparison-inner h2 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.comparison-inner .sub {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto 36px;
}
.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 520px;
}
.compare-table thead th {
    padding: 18px 20px;
    background: var(--navy);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: left;
}
.compare-table thead th:first-child {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}
.compare-table thead th:last-child {
    background: var(--gradient);
}
.compare-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    color: var(--text);
}
.compare-table tbody td:first-child {
    font-weight: 600;
    color: var(--muted);
    font-size: 0.82rem;
}
.compare-table tbody td:last-child {
    background: #f7fbfe;
}
.compare-table .check {
    color: #2ecc71;
    font-weight: 700;
}
.compare-table .cross {
    color: #e74c3c;
    font-weight: 700;
}
.compare-table .highlight-bg {
    background: #edf4fd;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 56px;
    background: var(--white);
}
.content-section-alt {
    background: var(--sand-light);
}
.content-section .section-label {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 4px 18px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.content-section h2 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.25;
}
.content-section h2 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.content-section .section-sub {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 24px;
    line-height: 1.6;
}
.content-section p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.review-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
.review-card-premium {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
}
.review-card-premium:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.review-card-premium .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.review-card-premium .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-card-premium .review-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
}
.review-card-premium .review-source {
    font-size: 0.7rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.review-card-premium .review-source i {
    color: var(--blue);
}
.review-card-premium .stars {
    color: #f5b342;
    font-size: 0.8rem;
    margin-bottom: 6px;
}
.review-card-premium .review-text {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.6;
    font-style: italic;
}
.review-card-premium .review-flag {
    font-size: 1.1rem;
    margin-left: auto;
}

.guarantees-section {
    background: var(--navy);
    padding: 72px 56px;
}
.guarantees-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.guarantees-inner .section-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 18px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.guarantees-inner h2 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}
.guarantees-inner .sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto 40px;
}
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.guarantee-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 28px 18px;
    transition: all 0.25s;
    text-align: center;
}
.guarantee-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}
.guarantee-card i {
    font-size: 1.8rem;
    color: #7dd3fc;
    display: block;
    margin-bottom: 12px;
}
.guarantee-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.guarantee-card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.cta-banner-premium {
    background: var(--gradient);
    padding: 72px 56px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-banner-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iODAiIGhlaWdodD0iODAiIGZpbGw9Im5vbmUiLz48Y2lyY2xlIGN4PSI0MCIgY3k9IjQwIiByPSIxIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDUpIi8+PC9zdmc+');
    background-size: 60px 60px;
    opacity: 0.5;
}
.cta-banner-premium>* {
    position: relative;
    z-index: 1;
}
.cta-banner-premium h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-banner-premium p {
    opacity: 0.88;
    max-width: 520px;
    margin: 0 auto 28px;
    font-size: 1rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
}
.cta-btn-white {
    background: white;
    color: var(--blue);
}
.cta-btn-white:hover {
    background: #f0f6ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    padding: 24px 0 8px;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}
.trust-badge-item i {
    color: var(--teal);
    font-size: 1.2rem;
}

.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.internal-links a {
    display: inline-block;
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 60px;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue);
    transition: all 0.15s;
}
.internal-links a:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    transform: translateY(-2px);
}

.faq-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
}
.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--navy);
    transition: background 0.12s;
    user-select: none;
}
.faq-question:hover {
    background: #f5f9ff;
}
.faq-question .faq-toggle {
    color: var(--blue);
    font-size: 0.8rem;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 20px 20px;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: #07112a;
    color: rgba(255, 255, 255, 0.75);
    padding: 56px 56px 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}
.footer-brand p {
    font-size: 0.85rem;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 260px;
}
footer h4 {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
}
footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.15s;
}
footer ul li a:hover {
    color: white;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.2s;
}
.social-btn:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom .footer-trust-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.2);
}
.footer-bottom .footer-trust-icons i {
    transition: color 0.2s;
}
.footer-bottom .footer-trust-icons i:hover {
    color: rgba(255, 255, 255, 0.5);
}

.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    transition: all 0.25s;
    text-decoration: none;
}
.floating-wa:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 44px rgba(37, 211, 102, 0.45);
}
.floating-wa .pulse-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* --- Tablets & kleinere Laptops (max-width: 1100px) --- */
@media (max-width: 1100px) {
    .hero-premium-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 30px 50px;
    }
    .hero-content h1 {
        font-size: clamp(1.8rem, 4vw, 2.6rem);
    }
    .hero-trust-strip {
        gap: 16px 24px;
    }
    .social-proof-banner {
        padding: 12px 20px;
        gap: 20px;
        flex-wrap: wrap;
    }
    .social-proof-banner .sp-divider {
        display: none;
    }
    .hiw-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    .hiw-timeline::before {
        display: none;
    }
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .vehicle-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Tablets & große Smartphones (max-width: 768px) --- */
@media (max-width: 768px) {
    /* Hamburger Menü */
    .hamburger {
        display: flex;
    }
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px 24px;
        gap: 6px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
        border-bottom: 1px solid var(--border);
        display: none;
    }
    nav.open {
        display: flex;
    }
    nav a {
        padding: 12px 16px;
        width: 100%;
        text-align: center;
        border-radius: 10px;
        font-size: 0.95rem;
    }
    .nav-cta {
        text-align: center;
    }

    /* Hero */
    .hero-premium {
        margin-top: 70px;
        min-height: auto;
        padding: 20px 0 40px;
    }
    .hero-premium-inner {
        padding: 20px 16px 30px;
        gap: 28px;
    }
    .hero-content .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px 6px 12px;
    }
    .hero-cta-primary {
        padding: 14px 24px;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }
    .hero-cta-secondary {
        padding: 14px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    .hero-cta-group {
        flex-direction: column;
    }
    .hero-trust-strip {
        flex-direction: column;
        gap: 10px;
    }

    /* Car Types Preview */
    .car-types-preview {
        border-radius: var(--radius-sm);
        padding: 12px 14px;
        flex-direction: column;
        gap: 8px;
    }
    .car-types-preview .preview-icons {
        justify-content: center;
    }

    /* Booking */
    .booking-header {
        padding: 18px 16px;
    }
    .booking-header h2 {
        font-size: 1rem;
    }
    .booking-body {
        padding: 16px;
    }

    .step-progress .step-dot .label {
        display: none;
    }
    .step-progress::before {
        left: 16px;
        right: 16px;
    }

    .vehicle-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .vehicle-card-modern .v-img {
        height: 130px;
    }
    .vehicle-card-modern .v-body {
        padding: 10px 12px 12px;
    }
    .vehicle-card-modern .v-name {
        font-size: 0.8rem;
    }
    .vehicle-card-modern .v-price {
        font-size: 0.9rem;
    }
    .vehicle-card-modern .v-features {
        font-size: 0.65rem;
        gap: 2px 8px;
    }
    .vehicle-card-modern .v-select-btn {
        font-size: 0.7rem;
        padding: 8px;
    }

    .return-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .return-card {
        padding: 16px 12px;
    }
    .return-card h4 {
        font-size: 0.85rem;
    }

    .customer-form .fields-row {
        grid-template-columns: 1fr;
    }
    .service-hints {
        grid-template-columns: 1fr 1fr;
    }

    /* Trust Strip */
    .trust-strip-premium {
        padding: 24px 16px;
        gap: 16px 24px;
    }
    .trust-strip-premium .ts-item {
        font-size: 0.78rem;
    }

    /* How It Works */
    .how-it-works {
        padding: 48px 16px;
    }
    .hiw-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .hiw-step {
        padding: 20px 12px 16px;
    }
    .hiw-step i {
        font-size: 1.3rem;
    }

    /* Comparison */
    .comparison-section {
        padding: 48px 16px;
    }
    .compare-table {
        font-size: 0.78rem;
        min-width: 420px;
    }
    .compare-table thead th,
    .compare-table tbody td {
        padding: 10px 14px;
    }

    /* Guarantees */
    .guarantees-section {
        padding: 48px 16px;
    }
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .guarantee-card {
        padding: 20px 14px;
    }
    .guarantee-card i {
        font-size: 1.4rem;
    }

    /* Fleet - Mobile Ansicht: eine Karte pro Zeile & größeres Bild */
    .fleet-section {
        padding: 48px 16px;
    }
    .fleet-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .vehicle-card img {
        height: 160px !important; /* Leicht vergrößert von 130px auf 160px */
    }
    .vehicle-content {
        padding: 16px 16px 18px;
    }
    .vehicle-content h3 {
        font-size: 1.1rem;
    }
    .vehicle-card .vehicle-features {
        font-size: 0.78rem;
    }
    .vehicle-card .vehicle-book-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    /* Routes */
    .routes-section {
        padding: 48px 16px;
    }
    .routes-grid {
        grid-template-columns: 1fr;
    }

    /* Content */
    .content-section {
        padding: 40px 16px;
    }

    /* Reviews */
    .review-grid-premium {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* CTA Banner */
    .cta-banner-premium {
        padding: 48px 20px;
    }
    .cta-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    footer {
        padding: 40px 16px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Floating WhatsApp */
    .floating-wa {
        display: flex;
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
}

/* --- Sehr kleine Smartphones (max-width: 480px) --- */
@media (max-width: 480px) {
    .hero-premium-inner {
        padding: 16px 12px 24px;
    }
    .booking-body {
        padding: 12px;
    }
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
    .return-grid {
        grid-template-columns: 1fr;
    }
    .hiw-timeline {
        grid-template-columns: 1fr 1fr;
    }
    .guarantees-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-hints {
        grid-template-columns: 1fr;
    }
    .social-proof-banner .sp-item {
        font-size: 0.7rem;
    }
    .logo-img {
        width: 130px;
    }
    .step-progress .step-dot .label {
        display: none;
    }

    /* Fleet: eine Karte pro Zeile mit leicht vergrößerten Bildern */
    .fleet-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }
    .vehicle-card img {
        height: 160px !important; /* Leicht vergrößert von 120px auf 150px */
    }
    .vehicle-content {
        padding: 14px 14px 16px;
    }
    .vehicle-content h3 {
        font-size: 1rem;
    }
    .vehicle-card .vehicle-features {
        font-size: 0.75rem;
    }
    .vehicle-card .vehicle-book-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}