/* ============================================
   DriveEase — Premium Design System
   ============================================ */

:root {
    /* Brand — derived from logo, refined for premium feel */
    /* Brand palette — only these three colors */
    --green-900: #207B04;
    --green-800: #207B04;
    --green-700: #207B04;
    --green-600: #45AD02;
    --green-500: #45AD02;
    --blue-800: #0135a2;
    --blue-700: #0135a2;
    --blue-600: #0135a2;
    --blue-500: #0135a2;

    --primary: var(--green-800);
    --accent: var(--blue-700);
    --accent-light: var(--blue-500);

    /* Surfaces */
    --bg-light: #F6F8F7;
    --bg-warm: #EEF2F0;
    --bg-dark: #0A1210;
    --bg-card: #FFFFFF;

    /* Text */
    --text: #1A2B24;
    --text-muted: #5C6E66;
    --text-light: #8A9A93;
    --text-on-dark: #E8EDEB;

    /* Neutrals */
    --gray-100: #F0F2F1;
    --gray-200: #DDE3E0;
    --gray-300: #C5CDC9;
    --border: rgba(26, 43, 36, 0.08);

    /* Layout */
    --radius-sm: 6px;
    --radius-md: 9px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --nav-height: 76px;
    --nav-gutter: clamp(1.25rem, 4vw, 2.5rem);
    --topbar-height: 42px;
    --section-pad: clamp(80px, 10vw, 140px);
    --container: 1280px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.4s var(--ease);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-card);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

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

/* Typography */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 1rem;
}

.section-eyebrow--light {
    color: var(--green-500);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-title--light {
    color: var(--text-on-dark);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.75;
}

.section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-800);
    color: #fff;
}

.btn-primary:hover {
    background: var(--green-600);
    transform: translateY(-2px);
}

.btn-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: transparent;
    flex-shrink: 0;
}

.btn-icon-circle svg {
    width: 14px;
    height: 14px;
}

.btn-icon-circle--light {
    background: transparent;
}

.btn-accent {
    background: var(--green-600);
    color: #fff;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem 0.85rem 1.5rem;
}

.btn-accent:hover {
    background: var(--green-700);
    transform: translateY(-2px);
}

.btn-nav-book {
    background: var(--green-600);
    color: #fff;
    gap: 0.65rem;
    padding: 0.6rem 0.6rem 0.6rem 1.15rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
}

.btn-nav-book:hover {
    background: var(--green-800);
    transform: translateY(-1px);
}

.btn-nav-book .btn-icon-circle {
    background: transparent;
    color: inherit;
}

.btn-dark-arrow {
    background: var(--green-800);
    color: #fff;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem 0.9rem 1.5rem;
    margin-top: 0.5rem;
}

.btn-dark-arrow:hover {
    background: var(--green-900);
    transform: translateY(-2px);
}

/* Split button: detached pill + circle */
.btn-split {
    background: transparent !important;
    padding: 0 !important;
    gap: 0.4rem;
    border: none;
}

.btn-split.btn-split--reverse {
    flex-direction: row-reverse;
}

.btn-split .btn-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    line-height: 1;
    transition: var(--transition);
}

.btn-split .btn-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    transition: var(--transition);
}

.btn-split .btn-icon-circle svg {
    width: 17px;
    height: 17px;
}

.btn-split.btn-full {
    display: flex;
    width: 100%;
}

.btn-split.btn-full .btn-label {
    flex: 1;
}

/* Split colour variants */
.btn-accent.btn-split .btn-label,
.btn-accent.btn-split .btn-icon-circle {
    background: var(--green-600);
    color: #fff;
}

.btn-accent.btn-split:hover .btn-label,
.btn-accent.btn-split:hover .btn-icon-circle {
    background: var(--green-800);
}

.btn-dark-arrow.btn-split {
    margin-top: 0.5rem;
}

.btn-dark-arrow.btn-split .btn-label,
.btn-dark-arrow.btn-split .btn-icon-circle {
    background: var(--green-800);
    color: #fff;
}

.btn-dark-arrow.btn-split:hover .btn-label,
.btn-dark-arrow.btn-split:hover .btn-icon-circle {
    background: var(--green-600);
}

.btn-nav-book.btn-split .btn-label,
.btn-nav-book.btn-split .btn-icon-circle {
    background: var(--green-600);
    color: #fff;
}

.btn-nav-book.btn-split .btn-label {
    padding: 0.6rem 1.15rem;
    font-size: 0.8rem;
}

.btn-nav-book.btn-split .btn-icon-circle {
    width: 38px;
    height: 38px;
}

.btn-nav-book.btn-split:hover .btn-label,
.btn-nav-book.btn-split:hover .btn-icon-circle {
    background: var(--green-800);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--gray-200);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: inline-flex;
}

.btn-outline-dark:hover {
    border-color: var(--green-700);
    color: var(--green-800);
    background: var(--bg-light);
}

.btn-full { width: 100%; }

.btn-call {
    background: var(--bg-light);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
}

.btn-call:hover {
    background: var(--green-800);
    color: #fff;
    border-color: var(--green-800);
}

.btn-whatsapp {
    background: #45AD02;
    color: #fff;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
}

.btn-whatsapp:hover {
    background: #207B04;
    transform: translateY(-1px);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    right: clamp(1rem, 3vw, 1.5rem);
    bottom: clamp(1rem, 3vw, 1.5rem);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #45AD02;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(69, 173, 2, 0.35);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #45AD02;
    z-index: -1;
    animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-float::after {
    animation-delay: 1.2s;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    70% {
        opacity: 0.15;
    }

    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

.whatsapp-float svg {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    background: var(--green-800);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(69, 173, 2, 0.45);
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    animation-play-state: paused;
}

.whatsapp-float:focus-visible {
    outline: 2px solid var(--green-600);
    outline-offset: 3px;
}

/* ============================================
   Top Promo Bar
   ============================================ */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    background: rgba(10, 18, 16, 0.55);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.topbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

.topbar-promo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-tag {
    padding: 0.2rem 0.6rem;
    background: var(--green-600);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 100px;
}

.topbar-promo a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.topbar-countdown {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.cd-label {
    margin-right: 0.35rem;
    color: rgba(255, 255, 255, 0.5);
}

.cd-unit b {
    color: #fff;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.cd-sep {
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: clamp(1.5rem, 3.5vh, 2.75rem) var(--nav-gutter) 0;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding-top 0.4s var(--ease);
}

/* Header keeps its floating panel look at all times */

.navbar .container.nav-inner {
    padding-left: 0;
    padding-right: 0;
    max-width: var(--container);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 2vw, 2rem);
    width: 100%;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

/* Floating rounded panel when over the hero */
.navbar:not(.scrolled) .nav-inner {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.55rem 0.65rem 0.55rem 1.5rem;
    box-shadow: 0 10px 30px rgba(8, 20, 25, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.nav-logo img {
    height: clamp(36px, 3.5vw, 48px);
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: clamp(34px, 3.2vw, 42px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 0.25rem + 1.1vw, 2rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 769px) {
    .nav-links {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        flex-wrap: nowrap;
        max-width: min(760px, calc(100% - 17.5rem));
        justify-content: center;
    }
}

.nav-links a {
    font-size: clamp(0.625rem, 0.4rem + 0.55vw, 0.875rem);
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-500);
    transition: width 0.3s var(--ease);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--green-800);
}

.navbar.scrolled .nav-links a {
    color: var(--text-muted);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--green-800);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

@media (min-width: 769px) and (max-width: 1200px) {
    .btn-nav-book.btn-split .btn-label {
        font-size: clamp(0.65rem, 0.5rem + 0.35vw, 0.8rem);
        padding: 0.5rem clamp(0.65rem, 0.4rem + 0.8vw, 1.15rem);
    }

    .btn-nav-book.btn-split .btn-icon-circle {
        width: clamp(30px, 2.8vw, 38px);
        height: clamp(30px, 2.8vw, 38px);
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text);
}

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

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

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

/* ============================================
   Hero Zone
   ============================================ */
.hero-zone {
    position: relative;
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: calc(var(--nav-height) + clamp(4rem, 8vh, 7rem));
    padding-bottom: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 12, 0.35);
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(3rem, 6vh, 5rem);
}

.hero-content {
    max-width: 720px;
    padding-top: clamp(2rem, 6vh, 5rem);
}

@media (min-width: 901px) and (max-width: 1280px) {
    .hero-title {
        font-size: clamp(2.25rem, 3.2vw, 3.25rem);
    }
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
    margin-bottom: clamp(1.5rem, 3vh, 2.25rem);
    transition: opacity 0.3s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    margin-bottom: clamp(2.5rem, 5vh, 3.5rem);
    transition: opacity 0.3s ease;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.hero-title-accent {
    color: rgba(255, 255, 255, 0.92);
    text-transform: none;
}

.hero-title-script {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 1.15em;
    color: var(--green-500);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2rem);
    transition: opacity 0.3s ease;
}

.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.hero-secondary-link:hover {
    color: #fff;
}

.hero-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    transition: var(--transition);
}

.hero-play-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}

.hero-secondary-link:hover .hero-play-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Hero Bottom — Booking card (left) + Featured (right)
   ============================================ */
/* Lower row inside hero: booking card (left) + featured (right) */
.hero-lower {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 3rem);
    width: 100%;
}

/* Booking card — narrow vertical, bottom-left */
.booking-card {
    width: clamp(340px, 38vw, 460px);
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 2.2vw, 2rem);
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(10, 18, 16, 0.1);
}

.booking-card-title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

/* Tabs */
.booking-tabs {
    display: flex;
    gap: 0.3rem;
    padding: 0.35rem;
    background: var(--bg-light);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.booking-tabs::-webkit-scrollbar { display: none; }

.booking-tab {
    flex: 1;
    min-width: max-content;
    padding: 0.6rem 0.75rem;
    border: none;
    background: transparent;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.booking-tab:hover {
    color: var(--text);
}

.booking-tab.is-active {
    background: var(--green-600);
    color: #fff;
    box-shadow: 0 6px 16px rgba(69, 173, 2, 0.3);
}

/* Panels */
.booking-panel {
    border: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    display: none;
}

.booking-panel.is-active {
    display: block;
    animation: bk-fade 0.35s var(--ease);
}

@keyframes bk-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Field — static label above input */
.bk-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.bk-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.85rem;
}

.bk-field label {
    order: -1;
    margin-bottom: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}

.bk-field input,
.bk-field select,
.bk-field textarea {
    width: 100%;
    height: 48px;
    padding: 0.7rem 0.9rem;
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text);
    background: var(--bg-light);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bk-field input::placeholder,
.bk-field textarea::placeholder {
    color: var(--text-light);
}

.bk-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C6E66' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 15px;
    padding-right: 2.3rem;
    cursor: pointer;
}

.bk-field textarea {
    height: auto;
    min-height: 92px;
    resize: vertical;
    line-height: 1.5;
}

.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(69, 173, 2, 0.12);
}

/* Yes/No segmented toggle */
.bk-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
    padding: 0.15rem 0;
}

.bk-toggle--stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.bk-toggle-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.bk-seg {
    display: inline-flex;
    align-items: center;
}

.bk-seg input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin: 0 0.45rem 0 0;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    transition: border-color 0.2s var(--ease);
}

.bk-seg input::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green-600);
    transform: scale(0);
    transition: transform 0.15s var(--ease);
}

.bk-seg input:checked {
    border-color: var(--green-600);
}

.bk-seg input:checked::before {
    transform: scale(1);
}

.bk-seg label {
    margin-right: 1.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
}

.bk-seg label:last-child {
    margin-right: 0;
}

.btn-booking-submit {
    margin-top: 0.5rem;
    gap: 0.6rem;
    padding: 0.95rem 1rem;
}

.form-feedback {
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.5;
}

.form-feedback[hidden] {
    display: none;
}

.form-feedback--success {
    background: rgba(69, 173, 2, 0.12);
    color: var(--green-800);
    border: 1px solid rgba(69, 173, 2, 0.35);
}

.form-feedback--error {
    background: rgba(180, 35, 24, 0.08);
    color: #b42318;
    border: 1px solid rgba(180, 35, 24, 0.25);
}

/* Featured block — pinned flush to hero's right & bottom edge */
.hero-featured {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: clamp(340px, 38vw, 500px);
}

.featured-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem) 0 0.25rem;
}

.featured-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.featured-nav {
    display: flex;
    gap: 0.5rem;
}

.featured-arrow {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    transition: var(--transition);
}

.featured-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
}

.featured-arrow svg {
    width: 15px;
    height: 15px;
}

.featured-panel {
    background: #fff;
    border-radius: var(--radius-lg) 0 0 0;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-bottom: none;
    border-right: none;
}

.featured-track {
    display: flex;
    gap: 0.6rem;
}

.featured-item {
    position: relative;
    flex: 1;
    aspect-ratio: 4 / 3.4;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: var(--transition);
    cursor: pointer;
}

.featured-item.active {
    opacity: 1;
    border-color: var(--green-500);
}

.featured-item:hover {
    opacity: 0.92;
}

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

.featured-num {
    position: absolute;
    top: 0.4rem;
    left: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Trust Bar — below hero */
.trust-bar {
    background: #fff;
    padding: clamp(5rem, 10vw, 7rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    border-bottom: 1px solid var(--border);
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.trust-card {
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.trust-card--green-dark { background: var(--green-800); }
.trust-card--green      { background: var(--green-700); }
.trust-card--blue       { background: var(--blue-700); }
.trust-card--green-light { background: var(--green-600); }

.trust-card:hover {
    transform: translateY(-3px);
}

.trust-num {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.trust-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.35rem;
    line-height: 1.3;
}

/* Forms */
.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text);
    background: var(--bg-light);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(32, 123, 4, 0.1);
}

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

/* ============================================
   Key Points (Why Choose Us)
   ============================================ */
.key-points {
    position: relative;
    z-index: 2;
    background: rgba(32, 123, 4, 0.06);
    overflow: visible;
    padding-top: clamp(2.5rem, 4vw, 4rem);
}

.key-points-pitons {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
    pointer-events: none;
    z-index: 0;
    opacity: 0.10;
}

.key-points-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.key-points-layout .booking-card {
    margin-top: clamp(-16rem, -18vw, -22rem);
    position: relative;
    z-index: 20;
}

.key-points-content {
    flex: 1;
    padding-top: clamp(0.5rem, 2vw, 1.5rem);
}

.key-points-content .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.key-points-content .section-desc {
    margin-bottom: 2rem;
    max-width: 560px;
}

.key-points-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    margin-bottom: 2.5rem;
}

.key-points-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.diamond {
    width: 8px;
    height: 8px;
    background: var(--green-600);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ============================================
   Popular Tours
   ============================================ */
.tours {
    background: var(--bg-light);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (max-width: 900px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

.tour-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
}

.tour-card:hover {
    transform: translateY(-4px);
    border-color: rgba(32, 123, 4, 0.18);
}

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

.tour-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.tour-card:hover .tour-card-media img {
    transform: scale(1.04);
}

.tour-duration {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.35rem 0.75rem;
    background: var(--green-800);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    z-index: 1;
}

.tour-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: clamp(1.25rem, 2vw, 1.5rem);
}

.tour-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.tour-card-body p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 1.15rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: flex-start;
    margin-top: auto;
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: var(--green-800);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.tour-card:hover .tour-card-cta {
    background: var(--green-600);
}

.tour-card-cta svg {
    width: 15px;
    height: 15px;
    transition: transform var(--transition);
}

.tour-card:hover .tour-card-cta svg {
    transform: translateX(3px);
}

/* Swiper Controls */
.swiper-nav {
    display: flex;
    gap: 0.5rem;
}

.swiper-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--text);
    transition: var(--transition);
}

.swiper-btn:hover {
    background: var(--green-800);
    border-color: var(--green-800);
    color: #fff;
}

.swiper-btn svg {
    width: 20px;
    height: 20px;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--gray-300);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--green-700);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   Taxi Services
   ============================================ */
.taxi {
    background: var(--bg-card);
}

/* Showcase — vehicle + service cards */
.taxi-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.taxi-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.taxi-visual-glow {
    position: absolute;
    inset: 12% 4% auto;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(1, 53, 162, 0.14), transparent 68%);
    filter: blur(8px);
    z-index: 0;
}

.taxi-vehicle {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    transition: transform 0.5s var(--ease);
}

.taxi-visual:hover .taxi-vehicle {
    transform: translateY(-6px);
}

/* Service cards */
.taxi-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.taxi-service {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.taxi-service:hover {
    background: #08204c;
    border-color: #08204c;
}

.taxi-service:hover .taxi-service-icon,
.taxi-service:hover .taxi-service-text h3,
.taxi-service:hover .taxi-service-text p,
.taxi-service:hover .taxi-service-link {
    color: #fff;
}

.taxi-service-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
}

.taxi-service-icon svg {
    width: 100%;
    height: 100%;
}

.taxi-service-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.taxi-service-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.taxi-service-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-600);
    white-space: nowrap;
    transition: gap 0.3s var(--ease);
}

.taxi-service-link svg {
    width: 15px;
    height: 15px;
}

.taxi-service-link:hover {
    gap: 0.75rem;
    color: var(--green-800);
}

/* Stats row */
.taxi-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(3rem, 6vw, 5rem);
}

.taxi-stat {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.taxi-stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.35s var(--ease);
}

.taxi-stat-figure {
    margin-top: auto;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1;
    transition: color 0.35s var(--ease);
}

/* Highlight: sticky — last hovered card stays active (one at a time) */
.taxi-stat.is-active {
    background: #08204c;
    border-color: #08204c;
}

.taxi-stat.is-active .taxi-stat-label,
.taxi-stat.is-active .taxi-stat-figure {
    color: #fff;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-800);
    transition: gap 0.3s var(--ease);
}

.link-arrow:hover {
    gap: 0.85rem;
    color: var(--blue-700);
}

/* ============================================
   Car Rentals — dark showcase slider
   ============================================ */
.rentals {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: #08204c;
    color: #fff;
    overflow: hidden;
}

.rentals-head {
    text-align: center;
    margin-bottom: clamp(1rem, 3vw, 2rem);
}

.rentals-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.4rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.92);
}

.rentals-headline {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
}

.rentals .rentals-intro {
    margin: 1rem auto 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

/* Showcase stage with side arrows */
.rentals-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 3vw, 2rem);
}

.rentals-stage {
    position: relative;
    flex: 1;
    max-width: 860px;
    height: clamp(190px, 26vw, 330px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rentals-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    z-index: 0;
    font-size: clamp(4rem, 14vw, 11rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
}

.rentals-track {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.rental-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(115%);
    transition: transform 0.85s var(--ease), opacity 0.6s var(--ease);
    pointer-events: none;
}

.rental-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.rental-slide.no-trans {
    transition: none;
}

.rental-slide img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}

/* Side arrows */
.rentals-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.rentals-arrow svg {
    width: 20px;
    height: 20px;
}

.rentals-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.08);
}

/* Info block under the stage */
.rentals-info {
    margin-top: clamp(1rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.rental-name {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
}

.rental-price {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    color: var(--green-500);
}

.rental-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.rental-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0;
}

.rental-meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.rental-meta li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 18px;
    margin: 0 1.6rem;
    background: rgba(255, 255, 255, 0.2);
}

.rental-meta svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.55);
}

.rental-reqs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.rental-reqs li {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.rental-reqs svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--green-500);
}

.btn-rent {
    margin-top: 0.5rem;
}

/* ============================================
   Saint Lucia Experience
   ============================================ */
.experience {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: rgba(32, 123, 4, 0.82);
}

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

.experience-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.exp-stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.exp-stat-num::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--green-500);
}

.exp-stat:nth-child(3) .exp-stat-num::after {
    content: '';
}

.exp-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.experience-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
}

.highlight-card img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
}

.highlight-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.2rem;
}

.highlight-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #45AD02;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-bottom: 2rem;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-800);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-card cite {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    font-style: normal;
    color: var(--text);
}

.testimonial-card footer span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   SEO Services & FAQ
   ============================================ */
.seo-services {
    background: var(--bg-light);
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
}

.seo-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: var(--transition);
}

.seo-service-card:hover {
    border-color: rgba(32, 123, 4, 0.2);
    box-shadow: 0 8px 32px rgba(26, 43, 36, 0.06);
}

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

.seo-service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.seo-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-800);
    transition: var(--transition);
}

.seo-service-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.seo-service-link:hover {
    color: var(--green-600);
}

.seo-service-link:hover svg {
    transform: translateX(4px);
}

.faq {
    background: var(--bg-card);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--green-600);
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    color: var(--green-800);
}

.faq-item p {
    padding: 0 0 1.35rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item p a {
    color: var(--green-800);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-item p a:hover {
    color: var(--green-600);
}

/* ============================================
   About
   ============================================ */
.about {
    background: var(--bg-card);
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 120px;
    height: 120px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-accent img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.about-badge {
    position: absolute;
    top: 2rem;
    left: -1.5rem;
    padding: 1.5rem;
    background: var(--green-800);
    border-radius: var(--radius-lg);
    text-align: center;
    color: #fff;
}

.about-badge-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
    opacity: 0.85;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-list {
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.85rem;
}

.about-list svg {
    width: 20px;
    height: 20px;
    color: var(--green-600);
    flex-shrink: 0;
}

/* ============================================
   Contact
   ============================================ */
.contact {
    background: rgba(32, 123, 4, 0.06);
    padding: 0;
}

.contact .container {
    max-width: 100%;
    padding: 0;
}

.contact-compose {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
}

/* Left half — full image with Call Us badge */
.contact-visual {
    position: relative;
    min-height: clamp(480px, 52vw, 640px);
}

.contact-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-callus {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.6rem 1.8rem;
    background: var(--green-600);
    color: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(69, 173, 2, 0.3);
}

.contact-callus-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-callus-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-callus-icon svg {
    width: 22px;
    height: 22px;
}

.contact-callus-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.15rem;
}

.contact-callus-num {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
}

.contact-callus-num--email {
    font-size: 0.98rem;
    word-break: break-all;
}

.contact-callus-num:hover {
    color: var(--green-500);
}

/* Right half — form */
.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.25rem, 4vw, 4rem);
    background: #fff;
}

.contact-form-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1.75rem;
}

.contact-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.input-icon {
    position: relative;
}

.input-icon--full {
    grid-column: 1 / -1;
}

.input-icon input,
.input-icon select,
.input-icon textarea {
    width: 100%;
    padding: 0.95rem 2.9rem 0.95rem 1.1rem;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-icon textarea {
    padding-right: 1.1rem;
    resize: vertical;
    min-height: 120px;
}

.input-icon select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.input-icon input::placeholder,
.input-icon textarea::placeholder {
    color: var(--text-light);
}

.input-icon input:focus,
.input-icon select:focus,
.input-icon textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(69, 173, 2, 0.12);
}

.input-icon > svg {
    position: absolute;
    right: 1.1rem;
    top: 0.95rem;
    width: 18px;
    height: 18px;
    color: var(--text-light);
    pointer-events: none;
}

.btn-send {
    width: auto;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background:
        linear-gradient(rgba(8, 25, 61, 0.90), rgba(8, 25, 61, 0.90)),
        url('assets/images/footer-bkg/footer-bkg.webp') center / cover no-repeat;
    background-color: #08193d;
    color: var(--text-on-dark);
    padding-top: clamp(3.5rem, 6vw, 5rem);
}

/* Gallery strip */
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(1rem, 3vw, 2.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-gallery-item {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: zoom-in;
}

.footer-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.footer-gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.08);
}

/* Main grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.3fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding: clamp(3rem, 5vw, 4rem) 0;
}

.footer-brand img {
    height: 84px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    max-width: 340px;
    margin-bottom: 1.75rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green-600);
    color: #fff;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 17px;
    height: 17px;
}

.footer-col h3 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--green-500);
    padding-left: 0.3rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.9rem;
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--green-500);
}

.footer-contact-list a:hover {
    color: var(--green-500);
}

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

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--green-500);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 3vw, 2rem);
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(6, 16, 39, 0.92);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-figure {
    max-width: min(900px, 90vw);
    max-height: 82vh;
    transform: scale(0.96);
    transition: transform 0.35s var(--ease);
}

.lightbox.is-open .lightbox-figure {
    transform: scale(1);
}

.lightbox-img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s var(--ease);
}

.lightbox-close:hover {
    background: var(--green-600);
}

.lightbox-nav {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.lightbox-nav svg {
    width: 22px;
    height: 22px;
}

.lightbox-nav:hover {
    background: var(--green-600);
    border-color: var(--green-600);
}

@media (max-width: 600px) {
    .lightbox-nav {
        position: absolute;
        bottom: clamp(1rem, 4vw, 2rem);
        z-index: 1;
    }
    .lightbox-prev { left: 30%; }
    .lightbox-next { right: 30%; }
}

/* ============================================
   Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
    .hero-layout {
        text-align: center;
        min-height: auto;
        align-items: center;
    }

    .hero-content {
        max-width: 640px;
        margin: 0 auto;
        padding-top: clamp(1rem, 3vh, 2.5rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-title-line {
        white-space: normal;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + clamp(1.5rem, 4vh, 3rem));
        padding-bottom: clamp(2rem, 4vh, 3rem);
    }

    .hero-featured {
        position: static;
        width: 100%;
        max-width: 560px;
        margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
        padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    }

    .featured-header {
        padding: 0 0.25rem;
    }

    .featured-panel {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border);
    }

    .key-points-layout {
        flex-direction: column;
        gap: clamp(2rem, 5vw, 3rem);
    }

    .key-points-layout .booking-card {
        margin-top: 0;
        width: 100%;
        max-width: 560px;
    }

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

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

    .key-points-list {
        grid-template-columns: 1fr;
    }

    .key-points-pitons {
        width: 100%;
        opacity: 0.05;
    }

    .taxi-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

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

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

    .about-img-accent {
        right: 1rem;
    }

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

    .contact-visual {
        min-height: clamp(320px, 55vw, 440px);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .footer-gallery-item:nth-child(4),
    .footer-gallery-item:nth-child(5) {
        display: none;
    }

    .rentals-arrow {
        position: absolute;
        top: 38%;
        z-index: 3;
    }

    .rentals-prev { left: 0; }
    .rentals-next { right: 0; }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 72px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar.menu-open {
        position: fixed;
        inset: 0;
        padding: 0;
        height: 100dvh;
        min-height: 100dvh;
        z-index: 1001;
        background: var(--bg-dark);
    }

    .navbar.menu-open .nav-inner {
        display: grid;
        grid-template-rows: auto 1fr;
        grid-template-columns: 1fr auto;
        width: 100%;
        height: 100%;
        max-width: none;
        border-radius: 0;
        border: none;
        padding: 0;
        background: transparent;
        overflow: hidden;
    }

    .navbar.menu-open .nav-inner::before {
        content: "";
        grid-row: 1;
        grid-column: 1 / -1;
        background: #fff;
        border-bottom: 1px solid var(--border);
        z-index: 0;
    }

    .navbar.menu-open .nav-logo {
        grid-row: 1;
        grid-column: 1;
        padding: calc(0.85rem + env(safe-area-inset-top, 0)) 0 0.85rem 1.25rem;
        z-index: 1;
        align-self: end;
    }

    .navbar.menu-open .nav-toggle {
        grid-row: 1;
        grid-column: 2;
        padding: calc(0.85rem + env(safe-area-inset-top, 0)) 1.25rem 0.85rem 0;
        z-index: 1;
        align-self: end;
    }

    .navbar.menu-open .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-row: 2;
        grid-column: 1 / -1;
        gap: 1.75rem;
        margin: 0;
        padding: 2rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0));
        background: var(--bg-dark);
        overflow-y: auto;
    }

    .navbar.menu-open .nav-links {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: center;
        gap: 1.1rem;
    }

    .navbar.menu-open .nav-links a {
        font-size: 1.125rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.92);
        letter-spacing: 0.01em;
    }

    .navbar.menu-open .nav-links a::after {
        display: none;
    }

    .navbar.menu-open .nav-links a:hover,
    .navbar.menu-open .nav-links a.active {
        color: var(--green-500);
    }

    .navbar.menu-open .nav-actions {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        margin-top: 0.25rem;
    }

    .navbar.menu-open .nav-actions .btn-nav-book {
        display: flex;
        width: 100%;
    }

    .navbar.menu-open .nav-actions .btn-nav-book .btn-label {
        flex: 1;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

    .navbar.menu-open .nav-actions .btn-nav-book .btn-icon-circle {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .navbar {
        padding: clamp(0.75rem, 2vh, 1.25rem) var(--nav-gutter) 0;
        height: auto;
        min-height: var(--nav-height);
        background: transparent;
    }

    .navbar .container.nav-inner {
        max-width: 100%;
    }

    .navbar:not(.scrolled) .nav-inner,
    .navbar.scrolled .nav-inner {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 0.55rem 0.75rem 0.55rem 1rem;
        box-shadow: 0 10px 30px rgba(8, 20, 25, 0.08);
    }

    .navbar.menu-open:not(.scrolled) .nav-inner,
    .navbar.menu-open.scrolled .nav-inner {
        display: grid;
        grid-template-rows: auto 1fr;
        grid-template-columns: 1fr auto;
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
    }

    .navbar.scrolled .nav-toggle span {
        background: var(--text);
    }

    .navbar.menu-open .nav-toggle span {
        background: var(--text);
    }

    .nav-logo img {
        height: 38px;
    }

    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        padding-top: calc(var(--nav-height) + clamp(2rem, 6vh, 3.5rem));
        padding-bottom: clamp(2.5rem, 6vh, 4rem);
    }

    .hero-layout {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    .hero-content {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-tag {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.85rem, 7vw, 2.75rem);
        margin-bottom: 1.5rem;
        line-height: 1.15;
        text-align: center;
        width: 100%;
    }

    .hero-title-script {
        font-size: 1.1em;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: min(360px, 100%);
    }

    .hero-ctas .btn-split {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .hero-ctas .btn-split .btn-label {
        flex: 1;
    }

    .hero-secondary-link {
        width: 100%;
        justify-content: center;
    }

    .hero-gradient {
        background: rgba(8, 16, 12, 0.45);
    }

    .hero-featured {
        max-width: none;
        margin-top: auto;
        flex-shrink: 0;
        padding-bottom: 0.5rem;
    }

    .featured-header {
        margin-bottom: 0.65rem;
    }

    .featured-label {
        font-size: 0.8rem;
    }

    .featured-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.15rem;
    }

    .featured-track::-webkit-scrollbar {
        display: none;
    }

    .featured-item {
        flex: 0 0 clamp(92px, 24vw, 118px);
        scroll-snap-align: start;
    }

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

    .trust-bar {
        padding-top: clamp(3rem, 8vw, 4.5rem);
    }

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

    .topbar-promo {
        font-size: 0.7rem;
    }

    .topbar-countdown {
        display: none;
    }

    .section-header--row {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .taxi-service {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0.5rem 1rem;
    }

    .taxi-service-link {
        grid-column: 2;
    }

    .taxi-stat {
        min-height: 220px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        justify-items: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-col ul a:hover {
        padding-left: 0;
    }

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

    .footer-gallery-item:nth-child(3) {
        display: none;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .about-badge {
        left: 1rem;
    }

    .rental-meta {
        flex-direction: column;
    }

    .rental-meta li:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.65rem, 8.5vw, 2rem);
    }

    .hero-play-btn {
        width: 40px;
        height: 40px;
    }

    .featured-item {
        flex: 0 0 88px;
    }

    .featured-arrow {
        width: 32px;
        height: 32px;
    }

    .trust-bar {
        padding: clamp(2.5rem, 8vw, 3.5rem) 0 2rem;
    }

    .bk-row {
        grid-template-columns: 1fr;
    }

    .trust-bar-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-card {
        padding: 1.25rem 1rem;
    }

    .trust-num {
        font-size: 1.5rem;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    left: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 1000;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(10, 18, 16, 0.22);
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
    max-width: 940px;
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition), transform var(--transition);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 1.75rem);
    flex-wrap: wrap;
}

.cookie-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-800);
}

.cookie-banner-icon svg {
    width: 40px;
    height: 40px;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 600px;
}

.cookie-link {
    color: var(--green-800);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-link:hover {
    color: var(--green-600);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 720px) {
    .cookie-banner-inner {
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-banner-actions .btn {
        flex: 1;
    }
}
