/* ── Home Page Styles ────────────────────────────────────────────────────────
   Loaded only on front-page via is_front_page() conditional enqueue.
   Depends on: assets/css/main.css (tokens + global rules)
   ─────────────────────────────────────────────────────────────────────────── */

/* ── Reveal delay helpers ──────────────────────────────────────────────────── */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Utility overrides ─────────────────────────────────────────────────────── */
.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 14px;
}
.pill-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background 0.2s var(--ease), transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}

.gold-word { color: var(--gold); }

/* ── @keyframes ────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(1.08); }
}

/* ══════════════════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--topbar-h));
    background:
        linear-gradient(135deg, rgba(15,35,53,0.82) 0%, rgba(26,58,82,0.68) 60%, rgba(15,35,53,0.80) 100%),
        url('/wp-content/uploads/hero-homepage.jpg') center/cover no-repeat,
        var(--navy-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 60px;
}

.hero-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 6s ease-in-out infinite;
}

.hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Hero text */
.hero-text { animation: fadeUp 0.8s var(--ease-out) both; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 100px;
    padding: 7px 16px;
    margin-bottom: 24px;
}
.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: glow-pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
}

.hero-tagline {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 20px;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin: 0 0 36px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-call {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s;
}
.hero-call:hover { opacity: 0.8; }

.hero-call-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-call-icon--wa { background: #25D366; border-color: #25D366; }

.hero-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s;
}
.hero-whatsapp:hover { opacity: 0.8; }

/* Hero trust row */
.hero-trust-row {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}
.hero-trust-item {
    border-left: 2px solid rgba(212,175,55,0.4);
    padding-left: 14px;
    padding-right: 28px;
}
.hero-trust-item:last-child {
    padding-right: 0;
}
.trust-big {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.trust-small {
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

/* ── Booking Card ──────────────────────────────────────────────────────────── */
.booking-card {
    background: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.9s var(--ease-out) 0.2s both;
    overflow: hidden;
    min-width: 0;
    width: 100%;
}

.booking-card-header {
    background: var(--navy);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px 4px 0 0;
}
.booking-card-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.03em;
}
.booking-card-badge {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 100px;
    padding: 4px 10px;
}

.booking-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}
.b-tab {
    flex: 1;
    min-width: 0;
    padding: 13px 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.b-tab.active,
.b-tab[aria-selected="true"] {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.b-tab:hover { color: var(--navy); }

.booking-body { padding: 20px 24px 24px; }

.b-field { margin-bottom: 14px; }

.b-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 7px;
}

/* ── Input group with icon button ────────────────────────────────────────── */
.b-input-group {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.b-input-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.b-input-group .b-input {
    border: none;
    border-radius: 0;
    box-shadow: none !important;
    flex: 1;
    min-width: 0;
}
.b-input-group .b-input:focus { outline: none; }
.b-loc-btn {
    flex-shrink: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224,60,49,0.06);
    border: none;
    border-left: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}
.b-loc-btn:hover { background: rgba(224,60,49,0.14); }
.b-loc-btn:disabled { opacity: 0.4; cursor: default; }
.b-loc-btn svg { display: block; }

.b-input {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}
.b-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
    background: var(--white);
}
select.b-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888880' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
    cursor: pointer;
}
input[type="date"].b-input,
input[type="time"].b-input { cursor: pointer; }

.b-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin: 4px 0 18px;
}

.b-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.b-submit {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 2px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s var(--ease), transform 0.15s;
}
.b-submit:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.b-wa-btn {
    width: 100%;
    margin-top: 10px;
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 2px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
    box-sizing: border-box;
}
.b-wa-btn:hover { background: #1ebe5c; }

/* ══════════════════════════════════════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════════════════════ */
.how-it-works {
    padding: 100px 0;
    background: var(--off-white);
}
.how-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.how-header .pill-label { margin-bottom: 16px; }

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.how-steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(212,175,55,0.15) 100%);
    pointer-events: none;
}

.how-step {
    text-align: center;
    padding: 0 16px;
}
.step-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(212,175,55,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.how-step:hover .step-circle {
    border-color: var(--gold);
    box-shadow: 0 0 0 6px rgba(212,175,55,0.08), var(--shadow-sm);
}
.step-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.step-circle svg { color: var(--navy); }

.step-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.step-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-body);
}

/* ══════════════════════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════════════════════ */
.services {
    padding: 100px 0;
    background: var(--white);
}
.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}
.services-header .section-sub {
    max-width: 340px;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px 28px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212,175,55,0.3);
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}
.service-name {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.service-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-body);
    margin: 0 0 24px;
}
.service-from {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 18px;
    margin-top: auto;
}
.service-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
}
.service-price span {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}
.service-link {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: gap 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}
.service-link:hover { gap: 8px; }

/* ══════════════════════════════════════════════════════════════════════════════
   FLEET
══════════════════════════════════════════════════════════════════════════════ */
.fleet {
    padding: 100px 0;
    background: var(--navy-dark);
}
.fleet .section-heading { color: var(--white); }
.fleet .section-sub { color: rgba(255,255,255,0.55); }

.fleet-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}
.fleet-header .pill-label {
    background: rgba(212,175,55,0.12);
    border-color: rgba(212,175,55,0.25);
}
.fleet-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
.fleet-nav-btns {
    display: flex;
    gap: 10px;
}
.fleet-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    flex-shrink: 0;
}
.fleet-nav-btn:hover {
    background: rgba(212,175,55,0.15);
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Infinite marquee carousel ── */
.fleet-carousel-outer {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.fleet-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: fleet-scroll 40s linear infinite;
}
.fleet-track:hover { animation-play-state: paused; }
@keyframes fleet-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.fleet-card {
    flex: 0 0 330px;
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.fleet-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--navy);
}
.fleet-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.fleet-img-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    line-height: 1.5;
    border-bottom: 2px dashed rgba(255,255,255,0.12);
}

.fleet-class-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--navy-dark);
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
    border: 1px solid rgba(212,175,55,0.3);
}
.fleet-popular-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 2px;
}

.fleet-info { padding: 22px 24px 24px; }

.fleet-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
}

.fleet-amenities {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.amenity {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
}
.amenity svg { color: var(--gold); flex-shrink: 0; }

.fleet-specs-row {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-bottom: 18px;
    overflow: hidden;
}
.fspec {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.fspec:last-child { border-right: none; }
.fspec-val {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.fspec-label {
    font-family: var(--font-ui);
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

.fleet-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.rate-from {
    font-family: var(--font-ui);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
}
.rate-price {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.rate-price sub {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    vertical-align: baseline;
}
.fleet-book {
    padding: 10px 18px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}
.fleet-book:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════════════════════
   WHY SWAN
══════════════════════════════════════════════════════════════════════════════ */
.why {
    padding: 100px 0;
    background: var(--off-white);
}
.why-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: start;
}

/* Why left */
.why-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 20px;
}
.why-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.why-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin: 0 0 20px;
}
.why-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-body);
    margin: 0 0 36px;
    max-width: 480px;
}

.why-features { display: flex; flex-direction: column; gap: 22px; }

.why-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.wf-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.wf-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.wf-desc {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
}

/* Why right */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.stat-box {
    background: var(--navy-dark);
    border-radius: 4px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
}
.stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.why-cta-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.why-cta-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.why-cta-sub {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-muted);
}
.why-cta-btn {
    padding: 12px 22px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}
.why-cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════════════════════ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}
.test-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}
.test-rating {
    display: flex;
    align-items: center;
    gap: 16px;
}
.test-stars {
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.test-count {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-muted);
}
.test-score {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

/* ── Infinite marquee ── */
.test-marquee-outer {
    overflow: hidden;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.test-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: test-scroll 48s linear infinite;
}
.test-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes test-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.test-card {
    flex: 0 0 340px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s var(--ease);
}
.test-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.test-stars-sm {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.test-quote {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    font-style: italic;
    flex: 1;
    margin: 0 0 24px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.test-avatar img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
}
.test-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
.test-role {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.test-verified {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2e9e5b;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════════
   SERVICE AREAS
══════════════════════════════════════════════════════════════════════════════ */
.areas {
    padding: 100px 0;
    background: var(--navy-dark);
}
.areas .section-heading { color: var(--white); }
.areas .section-sub { color: rgba(255,255,255,0.55); }
.areas-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}
.areas-header .pill-label {
    background: rgba(212,175,55,0.12);
    border-color: rgba(212,175,55,0.25);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.area-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.area-card:hover {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.35);
    transform: translateY(-4px);
}

.area-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 18px;
    transition: background 0.3s, border-color 0.3s;
}
.area-card:hover .area-icon {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.area-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.area-detail {
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════════════════════════════════════════ */
.partners {
    padding: 40px 0;
    background: var(--light-grey);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.partners-label {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.2;
}
.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.partner-logo {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.06em;
    opacity: 0.35;
    transition: opacity 0.2s;
    cursor: default;
}
.partner-logo:hover {
    opacity: 0.75;
}

/* ══════════════════════════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════════════════════════ */
.cta-band {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 12px;
    line-height: 1.15;
}
.cta-sub {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    margin: 0;
}
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cta-btn-dark {
    padding: 16px 36px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.cta-btn-dark:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}
.cta-btn-call {
    padding: 15px 28px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.cta-btn-call:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-1px);
}
.cta-btn-whatsapp {
    padding: 15px 28px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}
.cta-btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — 1100px (tablet landscape)
══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        max-width: 680px;
    }
    .booking-card { animation: fadeUp 0.8s var(--ease-out) 0.3s both; }
    .why-inner { grid-template-columns: 1fr; gap: 48px; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .how-steps::before { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px (mobile)
══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero { padding: 28px 0 36px; }
    .hero-inner { padding: 0 20px; gap: 28px; flex-direction: column; }

    .booking-card { max-width: 100%; margin-left: auto; margin-right: auto; }

    /* Slim hero text on mobile — form is the real CTA */
    .hero-desc  { display: none; }
    .hero-ctas  { display: none; }
    .hero-trust-row { gap: 0; margin-top: 4px; }
    .hero-trust-item { padding-right: 20px; }
    .hero-trust-item:last-child { padding-right: 0; }
    .hero-title { font-size: clamp(28px, 8vw, 40px); margin-bottom: 8px; }
    .hero-tagline { margin-bottom: 12px; }


    .how-it-works,
    .services,
    .fleet,
    .why,
    .testimonials,
    .areas,
    .cta-band { padding: 64px 0; }

    .how-header { margin-bottom: 40px; }
    .how-steps { grid-template-columns: 1fr 1fr; gap: 24px; }

    .services-header { flex-direction: column; align-items: center; text-align: center; }
    .services-header .section-sub { text-align: center !important; max-width: 100%; }
    .services-grid { grid-template-columns: 1fr; }

    .fleet-header { flex-direction: column; align-items: center; text-align: center; }
    .fleet-header-right { align-items: center; }
    .fleet-header-right .section-sub { text-align: center !important; max-width: 100%; }
    .fleet-card { flex: 0 0 280px; }

    .why-inner { grid-template-columns: 1fr; }
    .why-left { text-align: center; }
    .why-features { align-items: center; }
    .why-feat { text-align: left; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .test-header { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
    .test-card { flex: 0 0 290px; }

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

    .partners-logos { gap: 24px; }

    .cta-inner { flex-direction: column; align-items: center; gap: 32px; text-align: center; }
    .cta-buttons { width: 100%; flex-direction: column; }
    .cta-btn-dark, .cta-btn-call, .cta-btn-whatsapp {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .how-steps { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: clamp(32px, 9vw, 48px); }
    .b-row { grid-template-columns: 1fr; }
}

/* =============================================================================
   BOOKING WIDGET — v1.1.0 enhancements
   ============================================================================= */

/* Price preview block */
.b-price-preview {
    background: var(--gold-pale); border: 1px solid rgba(212,175,55,0.3);
    border-radius: 4px; padding: 14px 18px; margin: 14px 0; text-align: center;
}
.b-price-label {
    font-family: var(--font-ui); font-size: 10px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 4px;
}
.b-price-value {
    font-family: var(--font-display); font-size: 32px; font-weight: 700;
    color: var(--navy); line-height: 1.1;
}
.b-price-note {
    font-family: var(--font-ui); font-size: 10px; color: var(--text-muted); margin-top: 4px;
}
.b-distance-row {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-ui); font-size: 12px; font-weight: 600;
    color: var(--navy); background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2); border-radius: 3px;
    padding: 8px 12px; margin: 6px 0;
}

/* Quote email capture */
.b-quote-capture {
    background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.2);
    border-radius: 4px; padding: 12px 14px; margin-top: 8px;
}
.b-quote-capture-label {
    font-family: var(--font-ui); font-size: 11px; font-weight: 600;
    color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 8px;
}
.b-quote-capture-row {
    display: flex; gap: 8px;
}
.b-quote-email-input {
    flex: 1; font-size: 13px !important; padding: 9px 12px !important;
    border-radius: 3px !important;
}
.b-quote-send-btn {
    flex-shrink: 0; background: var(--gold); color: var(--navy-dark);
    border: none; border-radius: 3px; padding: 9px 16px;
    font-family: var(--font-ui); font-size: 12px; font-weight: 700;
    letter-spacing: 0.05em; cursor: pointer; white-space: nowrap;
    transition: opacity 0.2s;
}
.b-quote-send-btn:hover { opacity: 0.85; }
.b-quote-send-btn:disabled { opacity: 0.5; cursor: default; }
.b-quote-msg {
    font-family: var(--font-ui); font-size: 11px; margin-top: 6px;
    min-height: 14px;
}
.b-quote-msg--ok  { color: #2d9e6b; }
.b-quote-msg--err { color: #c0392b; }

/* Direction toggle */
.b-direction-toggle {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 1.5px solid var(--border); border-radius: 4px;
    overflow: hidden; margin-bottom: 14px;
}
.b-dir-btn {
    padding: 10px; font-family: var(--font-ui); font-size: 12px; font-weight: 600;
    letter-spacing: 0.05em; background: none; border: none; cursor: pointer;
    color: var(--text-muted); transition: all 0.2s;
}
.b-dir-btn.active { background: var(--navy); color: var(--white); }

/* Submit button */
.b-submit-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; width: 100%; margin-top: 4px;
    font-family: var(--font-ui); font-size: 13px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--gold); color: var(--navy-dark);
    padding: 16px; border-radius: 2px; transition: all 0.2s; text-decoration: none;
}
.b-submit-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* 2-column row */
.b-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .b-row-2 { grid-template-columns: 1fr; } }

/* Tab content visibility */
.b-tab-content { display: none; }
.b-tab-content.active { display: block; }

/* Custom select arrow */
.b-select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A3A52' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 36px; cursor: pointer;
}

/* ── Hero add-stop button ────────────────────────────────────────────────── */
.b-add-stop-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    padding: 9px 14px;
    margin-bottom: 10px;
    background: rgba(212,175,55,0.07);
    border: 1.5px dashed rgba(212,175,55,0.6);
    border-radius: 7px;
    color: #b8921e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    text-align: left;
}
.b-add-stop-btn svg { flex-shrink: 0; stroke: #b8921e; }
.b-add-stop-btn:hover {
    background: rgba(212,175,55,0.14);
    border-color: #D4AF37;
    color: #96740f;
}
.b-add-stop-price {
    margin-left: auto;
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
}
.b-stop-field {
    margin-bottom: 8px;
    cursor: default;
    transition: opacity 0.2s;
}
.b-stop-field.drag-over {
    outline: 1px dashed rgba(212,175,55,0.6);
    border-radius: 6px;
}
.b-stop-field[draggable="true"] { cursor: grab; }
/* Stop input must NOT be width:100% — it lives inside a flex row with handle + remove btn */
.b-stop-input {
    flex: 1 1 0% !important;
    width: auto !important;
    min-width: 0 !important;
}
.b-drag-handle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.3);
    cursor: grab;
    user-select: none;
}
.b-drag-handle:hover { color: #D4AF37; }
.b-remove-stop-btn {
    flex-shrink: 0;
    width: 28px !important;
    height: 28px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50%;
    cursor: pointer;
    color: rgba(0,0,0,0.4);
    padding: 0;
}
.b-remove-stop-btn:hover {
    background: rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.5);
    color: #D4AF37;
}


/* ── Hero call button: more prominent ────────────────────────────────────── */
.hero-call-icon {
    background: rgba(212,175,55,0.18) !important;
    border-color: rgba(212,175,55,0.6) !important;
}
.hero-call:hover .hero-call-icon {
    background: rgba(212,175,55,0.35) !important;
}

/* ── Hero late night notice ──────────────────────────────────────────────── */
.hero-late-night-notice {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 10px 0;
    padding: 10px 14px;
    background: linear-gradient(135deg, #12243a 0%, #1c3251 100%);
    border: 1px solid rgba(212,175,55,0.5);
    border-left: 3px solid #D4AF37;
    border-radius: 6px;
    font-family: var(--font-ui, 'Lato', sans-serif);
    font-size: 12px;
    color: #e8d48a;
    line-height: 1.55;
}
.hero-late-night-notice svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #D4AF37;
    opacity: 0.9;
}
.hero-late-night-notice strong {
    color: #f5e29a;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ── Vehicle picker (icon buttons replacing select) ──────────────────────── */
.b-vehicle-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}
.b-vpick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 8px;
    background: #f7f8fa;
    border: 1.5px solid rgba(26,58,82,0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.18s ease;
    color: rgba(26,58,82,0.55);
    text-align: center;
    min-height: 76px;
}
.b-vpick-btn svg {
    flex-shrink: 0;
    width: 40px;
    height: 20px;
    stroke: rgba(26,58,82,0.5);
    transition: stroke 0.18s, opacity 0.18s;
}
.b-vpick-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: rgba(26,58,82,0.8);
    line-height: 1.2;
    transition: color 0.18s;
}
.b-vpick-sub {
    display: block;
    font-size: 9px;
    color: rgba(26,58,82,0.4);
    letter-spacing: 0.02em;
    line-height: 1.2;
}
.b-vpick-btn:hover {
    border-color: rgba(212,175,55,0.6);
    background: rgba(212,175,55,0.06);
}
.b-vpick-btn:hover svg { stroke: #D4AF37; }
.b-vpick-btn:hover .b-vpick-label { color: #1A3A52; }
.b-vpick-btn.is-active {
    border-color: #D4AF37;
    background: rgba(212,175,55,0.1);
}
.b-vpick-btn.is-active svg { stroke: #D4AF37; }
.b-vpick-btn.is-active .b-vpick-label { color: #1A3A52; font-weight: 800; }
.b-vpick-btn.is-active .b-vpick-sub   { color: rgba(212,175,55,0.75); }

@media (max-width: 380px) {
    .b-vehicle-picker { gap: 6px; }
    .b-vpick-btn { min-height: 68px; padding: 8px 6px; }
    .b-vpick-label { font-size: 10px; }
    .b-vpick-btn svg { width: 32px; height: 16px; }
}

