/* ── 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: var(--navy-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--topbar-h) + var(--nav-h) + 40px) 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 trust row */
.hero-trust-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.hero-trust-item {
    border-left: 2px solid rgba(212,175,55,0.4);
    padding-left: 14px;
}
.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);
    overflow: hidden;
    animation: slideIn 0.9s var(--ease-out) 0.2s both;
}

.booking-card-header {
    background: var(--navy);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.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;
    padding: 11px 8px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    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;
}
.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;
}

.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
══════════════════════════════════════════════════════════════════════════════ */
.trust-strip {
    background: var(--navy);
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 3px solid var(--gold);
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.ts-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ts-icon {
    width: 40px;
    height: 40px;
    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);
    flex-shrink: 0;
}
.ts-main {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}
.ts-sub {
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   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-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fleet-card {
    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: 200px;
    overflow: hidden;
    background: var(--navy);
}
.fleet-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.fleet-img-placeholder {
    width: 100%;
    height: 200px;
    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;
}

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

.test-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px 28px;
    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-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}
.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.partner-logo {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--mid-grey);
    letter-spacing: 0.06em;
    filter: grayscale(1);
    opacity: 0.5;
    transition: opacity 0.2s, filter 0.2s;
    cursor: default;
}
.partner-logo:hover {
    opacity: 0.8;
    filter: grayscale(0);
    color: var(--navy);
}

/* ══════════════════════════════════════════════════════════════════════════════
   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-wa {
    padding: 16px 28px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}
.cta-btn-wa: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: calc(var(--topbar-h) + var(--nav-h) + 24px) 0 40px; }
    .hero-inner { padding: 0 20px; gap: 40px; }
    .hero-ctas { gap: 16px; }
    .hero-trust-row { gap: 16px; }

    .trust-strip-inner { justify-content: flex-start; gap: 20px; }
    .ts-item { flex-basis: calc(50% - 10px); }

    .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: flex-start; }
    .services-header .section-sub { text-align: left; max-width: 100%; }
    .services-grid { grid-template-columns: 1fr; }

    .fleet-header { flex-direction: column; align-items: flex-start; }
    .fleet-header .section-sub { text-align: left; max-width: 100%; }
    .fleet-grid { grid-template-columns: 1fr; }

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

    .test-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .test-grid { grid-template-columns: 1fr; }

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

    .partners-logos { gap: 24px; }

    .cta-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
    .cta-buttons { width: 100%; }
    .cta-btn-dark, .cta-btn-wa {
        flex: 1;
        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; }
}
