/* =============================================================================
   Swan Chauffeur — Main Stylesheet
   ============================================================================= */

/* ── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
    --navy:          #1A3A52;
    --navy-dark:     #0f2335;
    --navy-mid:      #234d6b;
    --gold:          #D4AF37;
    --gold-light:    #e8cc6a;
    --gold-pale:     #faf4dc;
    --white:         #ffffff;
    --off-white:     #f8f8f6;
    --light-grey:    #f2f2f0;
    --mid-grey:      #e8e8e4;
    --text-dark:     #1a1a1a;
    --text-body:     #444440;
    --text-muted:    #888880;
    --border:        #e0deda;
    --font-display:  'Cinzel', serif;
    --font-body:     'Raleway', sans-serif;
    --font-ui:       'Lato', sans-serif;
    --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:     0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:     0 20px 60px rgba(0,0,0,0.14);
    --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --topbar-h:      44px;
    --nav-h:         80px;
    --header-h:      calc(var(--topbar-h) + var(--nav-h));
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    overflow-x: hidden;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
    font-family: var(--font-body);
    font-size: 16px; /* prevents iOS zoom */
}

/* ── Scrollbar ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Container ──────────────────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 40px;
    width: 100%;
}

/* ── Base Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.2;
}

/* ── Utility: Pill Label ────────────────────────────────────────────────────── */
.pill-label {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.30);
    border-radius: 100px;
    padding: 5px 14px;
}

/* ── Utility: Section Headings ──────────────────────────────────────────────── */
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
}
.section-sub {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.7;
    max-width: 560px;
}

/* ── Utility: Buttons ───────────────────────────────────────────────────────── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-dark);
    background: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 4px;
    padding: 11px 24px;
    min-height: 44px;
    transition: background 0.22s var(--ease), color 0.22s var(--ease),
                transform 0.18s var(--ease), box-shadow 0.22s var(--ease);
    white-space: nowrap;
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}
.btn-gold:active { transform: translateY(0); }

.btn-navy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 4px;
    padding: 11px 24px;
    min-height: 44px;
    transition: background 0.22s var(--ease), transform 0.18s var(--ease);
    white-space: nowrap;
}
.btn-navy:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    transform: translateY(-1px);
}

.btn-outline-navy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    background: transparent;
    border: 2px solid var(--navy);
    border-radius: 4px;
    padding: 11px 24px;
    min-height: 44px;
    transition: background 0.22s var(--ease), color 0.22s var(--ease),
                transform 0.18s var(--ease);
    white-space: nowrap;
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
}

/* ── Scroll Reveal ──────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in          { opacity: 1; transform: none; }
.reveal-delay-1     { transition-delay: 0.10s; }
.reveal-delay-2     { transition-delay: 0.20s; }
.reveal-delay-3     { transition-delay: 0.30s; }
.reveal-delay-4     { transition-delay: 0.40s; }
.reveal-delay-5     { transition-delay: 0.50s; }

/* =============================================================================
   HEADER
   ============================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
}

/* ── Top Bar ────────────────────────────────────────────────────────────────── */
.topbar {
    display: none;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar__left  { display: flex; align-items: center; gap: 24px; }
.topbar__right { display: flex; align-items: center; gap: 10px; }

.topbar__link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.72);
    min-height: 44px;
    transition: color 0.2s;
}
.topbar__link:hover { color: var(--gold); }
.topbar__link svg { flex-shrink: 0; opacity: 0.65; }
.topbar__link--wa { color: #25D366; }
.topbar__link--wa svg { opacity: 1; }
.topbar__link--wa:hover { color: #1ebe5c; }

.topbar__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.topbar__social:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212,175,55,0.08);
}

/* ── Main Nav ───────────────────────────────────────────────────────────────── */
.main-nav {
    background: var(--white);
    height: var(--nav-h);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled .main-nav { box-shadow: var(--shadow-md); }

.main-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

/* Logo */
.main-nav__logo { flex-shrink: 0; }
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-link img { height: 56px; width: auto; }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-text__swan {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--navy);
}
.logo-text__chauffeur {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Primary Menu */
.main-nav__menu { flex: 1; display: flex; justify-content: center; }
.primary-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}
.primary-menu > li { position: relative; }
.primary-menu > li > a {
    display: flex;
    align-items: center;
    height: var(--nav-h);
    padding: 0 14px;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    transition: color 0.2s;
}
.primary-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s var(--ease);
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a { color: var(--navy); }
.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current-menu-ancestor > a::after { transform: scaleX(1); }

/* Dropdown */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: var(--white);
    border-top: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
    border-radius: 0 0 6px 6px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
    z-index: 10;
}
.primary-menu > li:hover > .sub-menu,
.primary-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.primary-menu .sub-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text-body);
    min-height: 44px;
    transition: color 0.2s, padding-left 0.2s;
}
.primary-menu .sub-menu li a:hover { color: var(--gold); padding-left: 26px; }

/* Nav Actions */
.main-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #25D366;
    border: 1.5px solid #25D366;
    border-radius: 4px;
    padding: 9px 16px;
    min-height: 44px;
    transition: background 0.22s var(--ease), color 0.22s var(--ease);
    white-space: nowrap;
}
.btn-whatsapp:hover { background: #25D366; color: var(--white); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 4px;
    flex-shrink: 0;
}
.hamburger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
    transform-origin: center;
}
.hamburger.is-active .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active .hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Panel ───────────────────────────────────────────────────────── */
.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s var(--ease-out);
}
.mobile-nav.is-open { max-height: 640px; }
.mobile-nav__inner { padding: 8px 0 20px; }

.mobile-nav .primary-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
.mobile-nav .primary-menu > li > a {
    height: auto;
    padding: 13px 24px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.mobile-nav .primary-menu > li > a::after { display: none; }

.mobile-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    background: var(--light-grey);
    padding: 0;
    min-width: 0;
}
.mobile-nav .sub-menu li a {
    padding: 11px 40px;
    font-size: 13px;
    border-bottom: 1px solid var(--mid-grey);
}

.mobile-nav__actions {
    display: flex;
    gap: 10px;
    padding: 16px 20px 0;
}
.mobile-nav__actions .btn-whatsapp,
.mobile-nav__actions .btn-gold { flex: 1; }

/* ── Mobile Sticky Bottom Bar ───────────────────────────────────────────────── */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
    padding: 8px 12px;
    gap: 8px;
}
.mobile-bottom-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 10px 6px;
    min-height: 44px;
    transition: opacity 0.2s;
}
.mobile-bottom-bar__btn:active { opacity: 0.8; }
.mobile-bottom-bar__call      { background: var(--navy); color: var(--white); }
.mobile-bottom-bar__book      { background: var(--gold); color: var(--navy-dark); }
.mobile-bottom-bar__whatsapp  { background: #25D366; color: var(--white); }

/* =============================================================================
   FOOTER
   ============================================================================= */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.72);
}

.footer__main { padding: 36px 0 28px; }

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

/* Brand Col */
.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.footer__logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer__logo-swan {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--white);
}
.footer__logo-chauffeur {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}
.footer__tagline {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 8px;
}
.footer__desc {
    font-family: var(--font-ui);
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.50);
    margin-bottom: 16px;
}
.footer__social { display: flex; gap: 8px; }
.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 44px;
    min-height: 44px;
    color: rgba(255,255,255,0.50);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    transition: color 0.22s, border-color 0.22s, background 0.22s;
}
.footer__social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212,175,55,0.08);
}

/* Link Cols */
.footer__heading {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212,175,55,0.22);
}
.footer__links { display: flex; flex-direction: column; }
.footer__links a {
    display: flex;
    align-items: center;
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.52);
    padding: 3px 0;
    min-height: 32px;
    transition: color 0.2s, padding-left 0.2s;
}
.footer__links a:hover { color: var(--gold); padding-left: 6px; }

/* Contact Col */
.footer__contact { display: flex; flex-direction: column; font-style: normal; }
.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.52);
    padding: 3px 0;
    min-height: 32px;
    transition: color 0.2s;
}
a.footer__contact-item:hover { color: var(--gold); }
.footer__contact-item svg { flex-shrink: 0; opacity: 0.55; }

/* Footer Bottom */
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer__copyright {
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.32);
}
.footer__legal { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer__legal a {
    display: flex;
    align-items: center;
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.32);
    min-height: 44px;
    transition: color 0.2s;
}
.footer__legal a:hover { color: var(--gold); }

/* =============================================================================
   PAGE TEMPLATES
   ============================================================================= */
.page-main {
    min-height: 60vh;
    padding: 72px 0;
}
.page-main .entry-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 28px;
}
.page-main .entry-content p { margin-bottom: 20px; }
.page-main .entry-thumbnail { margin-bottom: 32px; }
.page-main .entry-thumbnail img { border-radius: 6px; width: 100%; }
.entry-meta {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ── 404 ────────────────────────────────────────────────────────────────────── */
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-dark);
    text-align: center;
    padding: 80px 20px;
}
.error-404__inner { max-width: 520px; }
.error-404__code {
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 9rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.85;
}
.error-404__title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--white);
    margin-bottom: 16px;
}
.error-404__message {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.52);
    margin-bottom: 36px;
    line-height: 1.75;
}
.error-404__btn { margin-inline: auto; }

/* =============================================================================
   RESPONSIVE — 1024px (Tablet)
   ============================================================================= */
@media (max-width: 1024px) {
    .container { padding-inline: 24px; }

    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .main-nav__menu .primary-menu > li > a { padding: 0 10px; font-size: 14px; }

    /* Hide WhatsApp label text on tablet to save space */
    .main-nav__actions .btn-whatsapp span { display: none; }
    .main-nav__actions .btn-whatsapp { padding: 9px 12px; }
}

/* =============================================================================
   RESPONSIVE — 768px (Mobile)
   ============================================================================= */
@media (max-width: 768px) {
    :root {
        --nav-h:     64px;
        --topbar-h:  0px;
    }

    .container { padding-inline: 16px; }

    /* Hide topbar on mobile */
    .topbar { display: none; }

    /* Hide desktop nav elements */
    .main-nav__menu,
    .main-nav__actions { display: none; }

    /* Show hamburger and mobile nav */
    .hamburger    { display: flex; }
    .mobile-nav   { display: block; }

    /* Footer */
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__main { padding: 32px 0 24px; }
    .footer__heading { font-size: 14px; }
    .footer__links a { font-size: 15px; }
    .footer__contact-item { font-size: 15px; }

    /* Bottom sticky bar */
    .mobile-bottom-bar { display: flex; }
    body { padding-bottom: 62px; background-color: var(--navy-dark); }

    /* Footer bottom */
    .footer__bottom-inner { flex-direction: column; text-align: center; }
    .footer__legal { justify-content: center; }

    /* Page */
    .page-main { padding: 48px 0; }
}

/* =============================================================================
   RESPONSIVE — 480px (Small Mobile)
   ============================================================================= */
@media (max-width: 480px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footer__col--brand { text-align: center; }
    .footer__logo { justify-content: center; }
    .footer__social { justify-content: center; }
    .footer__legal { gap: 12px; }
}

/* =============================================================================
   NEW NAVIGATION SYSTEM (v1.1.0)
   Overrides legacy .hamburger / .primary-menu / .mobile-nav rules above.
   ============================================================================= */

/* ── Desktop Dropdown Nav ───────────────────────────────────────────────────── */
.nav-links {
    display: flex; align-items: center; gap: 4px;
    list-style: none; margin: 0; padding: 0;
}
.nav-links > li { position: relative; }
.nav-link {
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    letter-spacing: 0.02em; color: var(--text-body);
    padding: 8px 14px; border-radius: 4px;
    display: flex; align-items: center; gap: 5px;
    transition: all 0.2s; white-space: nowrap; text-decoration: none;
}
.nav-link:hover { color: var(--navy); background: var(--light-grey); }
.nav-chevron { transition: transform 0.25s var(--ease); flex-shrink: 0; }
li.menu-item-has-children:hover .nav-chevron,
li.menu-item-has-children.open  .nav-chevron { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%);
    background: var(--white); border: 1px solid var(--border);
    border-radius: 6px; box-shadow: var(--shadow-md);
    min-width: 220px; padding: 8px 0; list-style: none; margin: 0; z-index: 600;
}
.nav-dropdown::before {
    content: ''; position: absolute; top: -5px; left: 50%;
    width: 10px; height: 10px; background: var(--white);
    border-left: 1px solid var(--border); border-top: 1px solid var(--border);
    transform: translateX(-50%) rotate(45deg);
}
li.menu-item-has-children:hover .nav-dropdown { display: block; }
.nav-sub-link {
    display: block; padding: 10px 20px;
    font-family: var(--font-ui); font-size: 13px; font-weight: 500;
    color: var(--text-body); transition: all 0.15s; text-decoration: none;
}
.nav-sub-link:hover { color: var(--navy); background: var(--off-white); padding-left: 24px; }

/* Logo link */
.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-link img { max-height: 60px; width: auto; height: auto; max-width: 220px; }

/* Nav CTA buttons */
.nav-call {
    display: flex; align-items: center; gap: 7px;
    font-family: var(--font-ui); font-size: 13px; font-weight: 700;
    color: var(--navy); padding: 8px 16px; border-radius: 4px;
    border: 1.5px solid var(--gold);
    transition: all 0.2s; white-space: nowrap; text-decoration: none;
    letter-spacing: 0.03em;
}
.nav-call:hover { background: var(--gold); color: var(--navy-dark); }
.nav-call:hover svg { color: var(--navy-dark); }
.nav-call svg { color: var(--gold); flex-shrink: 0; }
.nav-book-btn {
    background: var(--gold); color: var(--navy-dark);
    font-family: var(--font-ui); font-size: 13px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 10px 24px; border-radius: 2px;
    transition: all 0.2s; white-space: nowrap; text-decoration: none;
    display: inline-flex; align-items: center;
}
.nav-book-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* New hamburger — hidden on desktop */
.nav-hamburger { display: none; }

/* ── Mobile Nav Override ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links, .nav-call { display: none !important; }

    .nav-hamburger {
        display: flex; flex-direction: column; justify-content: center;
        gap: 5px; width: 40px; height: 40px; background: none; border: none;
        cursor: pointer; padding: 8px; flex-shrink: 0;
    }
    .nav-hamburger span {
        display: block; width: 22px; height: 2px;
        background: var(--navy); border-radius: 2px;
        transition: all 0.3s var(--ease);
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile overlay — overrides old mobile-nav styles */
    .mobile-nav {
        display: none !important; position: fixed !important;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white); z-index: 998;
        overflow-y: auto; padding: 0 0 120px;
        flex-direction: column; max-height: none !important;
    }
    .mobile-nav.open { display: flex !important; }

    /* Mobile nav header: logo + close */
    .mobile-nav__header {
        position: sticky; top: 0; z-index: 1;
        display: flex; align-items: center; justify-content: space-between;
        padding: 14px 20px;
        background: var(--white);
        border-bottom: 2px solid var(--gold);
        flex-shrink: 0;
    }
    .mobile-nav__logo { display: flex; align-items: center; text-decoration: none; }
    .mobile-nav__logo img { height: auto; width: auto; max-height: 56px; max-width: 180px; object-fit: contain; display: block; }
    .mobile-nav__logo .logo-text__swan {
        font-family: var(--font-display); font-size: 18px; font-weight: 600;
        letter-spacing: 0.18em; color: var(--navy);
    }
    .mobile-nav__logo .logo-text__chauffeur {
        font-family: var(--font-ui); font-size: 9px; font-weight: 300;
        letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-top: 2px;
    }
    .mobile-nav__close {
        display: flex; align-items: center; justify-content: center;
        width: 40px; height: 40px; background: var(--off-white);
        border: 1px solid var(--border); border-radius: 50%;
        cursor: pointer; color: var(--navy); flex-shrink: 0;
        transition: background 0.2s;
    }
    .mobile-nav__close:hover { background: var(--light-grey); }

    /* Mobile CTA block at bottom of nav */
    .mobile-nav__cta {
        padding: 20px 24px;
        border-top: 1px solid var(--border);
        margin-top: auto;
    }
    .mobile-nav__book-btn,
    .mobile-nav__quote-btn {
        display: flex; align-items: center; justify-content: center; gap: 8px;
        width: 100%; padding: 15px 24px;
        font-family: var(--font-ui); font-size: 13px; font-weight: 700;
        letter-spacing: 0.08em; text-transform: uppercase;
        border-radius: 2px; text-decoration: none;
        transition: background 0.2s;
    }
    .mobile-nav__book-btn {
        background: var(--gold); color: var(--navy-dark); margin-bottom: 10px;
    }
    .mobile-nav__book-btn:hover { background: var(--gold-light); }
    .mobile-nav__quote-btn {
        background: transparent; color: var(--navy);
        border: 2px solid var(--navy);
    }
    .mobile-nav__quote-btn:hover { background: var(--off-white); }

    /* Menu list */
    .mobile-nav ul { list-style: none; margin: 0; padding: 0; width: 100%; }
    .mobile-nav > ul > li { border-bottom: 1px solid var(--border); }

    /* Parent items: flex row with link + caret */
    .mobile-nav li.menu-item-has-children {
        display: flex; flex-wrap: wrap; align-items: stretch;
    }
    .mobile-nav li.menu-item-has-children > .nav-link {
        flex: 1; justify-content: flex-start;
    }
    .mobile-nav li.menu-item-has-children > .nav-dropdown {
        width: 100%;
    }

    .mobile-nav .nav-link {
        display: flex; align-items: center; justify-content: space-between;
        padding: 16px 24px; font-size: 18px; font-weight: 600;
        color: var(--navy); border-radius: 0; width: 100%;
    }
    .mobile-nav .nav-link .nav-chevron { display: none; }
    .mobile-nav .nav-link:hover { background: var(--off-white); }

    /* Caret button: shown on mobile */
    .mobile-nav .nav-caret {
        display: flex; align-items: center; justify-content: center;
        width: 56px; padding: 16px 0;
        background: none; border: none; border-left: 1px solid var(--border);
        cursor: pointer; color: var(--navy); flex-shrink: 0;
        transition: background 0.2s;
    }
    .mobile-nav .nav-caret svg { transition: transform 0.25s var(--ease); }
    .mobile-nav .nav-caret:hover { background: var(--off-white); }
    .mobile-nav li.open > .nav-caret { background: var(--off-white); }
    .mobile-nav li.open > .nav-caret svg { transform: rotate(180deg); }

    .mobile-nav .nav-dropdown {
        display: none; position: static; transform: none; box-shadow: none;
        border: none; border-radius: 0; padding: 0;
        background: var(--off-white); min-width: unset;
    }
    .mobile-nav .nav-dropdown::before { display: none; }
    .mobile-nav li.open > .nav-dropdown { display: block; }
    .mobile-nav .nav-sub-link {
        padding: 13px 24px 13px 40px; font-size: 16px;
        border-bottom: 1px solid var(--border); display: block;
        color: var(--text-body);
    }
    .mobile-nav .nav-sub-link:hover { color: var(--navy); background: var(--white); padding-left: 44px; }
    .mobile-nav .nav-sub-link:last-child { border-bottom: none; }

    /* Mobile bottom bar — 4-button layout */
    .mobile-bottom-bar {
        position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
        display: flex; background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
        padding: 0; gap: 0;
    }
    .mobile-bar-call,
    .mobile-bar-quote,
    .mobile-bar-book,
    .mobile-bar-whatsapp {
        flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
        padding: 10px 4px 8px; font-family: var(--font-ui); font-size: 10px;
        font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
        transition: opacity 0.15s; text-decoration: none; min-height: 56px;
    }
    .mobile-bar-call {
        color: var(--navy); background: var(--white); border-right: 1px solid var(--border);
    }
    .mobile-bar-call:active { opacity: 0.7; }
    .mobile-bar-quote {
        color: var(--navy); background: var(--white); border-right: 1px solid var(--border);
    }
    .mobile-bar-quote:active { opacity: 0.7; }
    .mobile-bar-whatsapp {
        background: #25D366; color: #fff; border-right: 1px solid rgba(0,0,0,0.08);
    }
    .mobile-bar-whatsapp:active { opacity: 0.85; }
    .mobile-bar-book {
        background: var(--navy); color: var(--white);
    }
    .mobile-bar-book:active { opacity: 0.85; }
    .mobile-bar-call svg,
    .mobile-bar-quote svg,
    .mobile-bar-book svg,
    .mobile-bar-whatsapp svg { flex-shrink: 0; }
}

/* ── Fix: keep main-nav__actions visible on mobile so hamburger shows ── */
@media (max-width: 768px) {
    .main-nav__actions { display: flex !important; align-items: center; justify-content: flex-end; }
    .nav-book-btn { display: none; }
}

/* ── Desktop logo: bigger ────────────────────────────────────────────────── */
.nav-logo-link img { max-height: 72px; }

/* ── Mobile logo: bigger ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-logo-link img {
        max-height: 56px !important;
        width: auto !important;
        height: auto !important;
        max-width: 180px !important;
        object-fit: contain;
    }
}

/* ── Footer logo: prevent stretching ─────────────────────────────────────── */
.footer-logo-wrap img {
    max-width: 400px;
    max-height: 108px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ── nav-caret: hidden on desktop ────────────────────────────────────────── */
.nav-caret { display: none; }


/* ════════════════════════════════════════════════════════════════════════════
   LEGAL PAGES (Terms, Privacy Policy, Cancellation)
   ════════════════════════════════════════════════════════════════════════════ */
.legal-body {
    padding: 60px 0 80px;
    background: var(--off-white);
}
.legal-wrap {
    max-width: 780px;
    margin: 0 auto;
}
.legal-updated {
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin: 32px 0 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 24px 0 8px;
}
.legal-content p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    padding-left: 20px;
    margin-bottom: 14px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--navy); font-weight: 600; }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--navy); }
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 13px;
}
.legal-content th {
    background: var(--navy);
    color: var(--white);
    padding: 10px 14px;
    text-align: left;
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.legal-content td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.legal-content tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.legal-contact-box {
    margin-top: 48px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
}
.legal-contact-box a { color: var(--gold); }
.legal-contact-box p { margin: 0; }

@media (max-width: 768px) {
    .legal-body { padding: 40px 0 60px; }
    .legal-content h2 { font-size: 17px; }
}

/* ── Trust Strip (shared across all pages) ─────────────────────────────────── */
.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;
}
@media (max-width: 768px) {
    .trust-strip { overflow: hidden; }
    .trust-strip .container { padding-inline: 0; }
    .trust-strip-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 40px;
        width: max-content;
        animation: ts-marquee 22s linear infinite;
    }
    @keyframes ts-marquee {
        from { transform: translateX(0); }
        to   { transform: translateX(-50%); }
    }
}

/* ── Location Pages ───────────────────────────────────────────────────────── */
.loc-key-locations {
    background: var(--navy);
    border-radius: 12px;
    padding: 28px;
    color: var(--white);
}
.loc-key-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.loc-key-header svg { color: var(--gold); }
.loc-key-header h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold);
    text-transform: uppercase;
}
.loc-key-list { display: grid; grid-template-columns: 1fr; gap: 8px; }
.loc-key-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}
.loc-key-list li svg { color: var(--gold); margin-top: 1px; flex-shrink: 0; }

/* Services grid on location pages */
.loc-services { padding: 80px 0; background: var(--off-white); }
.loc-services-header { text-align: center; margin-bottom: 48px; }
.loc-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .loc-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .loc-services-grid { grid-template-columns: 1fr; } }

.loc-svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.loc-svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.loc-svc-icon {
    width: 52px; height: 52px;
    background: var(--navy);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    color: var(--gold);
}
.loc-svc-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
.loc-svc-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 16px;
}
.loc-svc-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Coverage grid */
.loc-coverage { padding: 80px 0; background: var(--white); }
.loc-coverage-header { text-align: center; margin-bottom: 40px; }
.loc-coverage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}
.loc-coverage-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--light-grey);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    color: var(--text-dark);
}
.loc-coverage-item svg { color: var(--gold); width: 14px; height: 14px; }
.loc-coverage-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.loc-coverage-cta p { font-size: 0.95rem; color: var(--text-muted); }
.loc-coverage-cta strong { color: var(--navy); }

/* ── Footer Trust Badges ──────────────────────────────────────────────────── */
.footer__trust {
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 14px 0;
}
.footer__trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
}
.footer__trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(212,175,55,0.8);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.footer__trust-badge svg {
    color: rgba(212,175,55,0.6);
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .footer__trust-inner { gap: 10px 20px; justify-content: flex-start; }
    .footer__trust-badge { font-size: 10px; }
}

/* ── Service Areas Page ───────────────────────────────────────────────────── */
.sa-intro { padding: 80px 0; background: var(--white); }
.sa-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 768px) { .sa-intro-inner { grid-template-columns: 1fr; gap: 40px; } }
.sa-intro-text p {
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.7;
}
.sa-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.sa-stat {
    background: var(--navy);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.sa-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.sa-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Featured locations */
.sa-featured { padding: 80px 0; background: var(--off-white); }
.sa-featured-header { text-align: center; margin-bottom: 48px; }
.sa-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 600px) { .sa-featured-grid { grid-template-columns: 1fr; } }
.sa-featured-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 36px 32px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.sa-featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sa-featured-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}
.sa-featured-icon { color: var(--gold); margin-bottom: 4px; }
.sa-featured-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}
.sa-featured-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.sa-featured-from {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 4px;
}
.sa-featured-from span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.sa-featured-from strong { font-size: 1.5rem; color: var(--gold); font-family: var(--font-display); }
.sa-featured-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: auto;
    padding-top: 8px;
}

/* Suburb grid */
.sa-suburbs { padding: 80px 0; background: var(--white); }
.sa-suburbs-header { text-align: center; margin-bottom: 56px; }
.sa-suburbs-header a { color: var(--gold); text-decoration: underline; }
.sa-regions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 1024px) { .sa-regions { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .sa-regions { grid-template-columns: 1fr; } }
.sa-region {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}
.sa-region-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.sa-region-title svg { color: var(--gold); flex-shrink: 0; }
.sa-region-list { display: flex; flex-direction: column; gap: 6px; }
.sa-region-list li {
    font-size: 0.85rem;
    color: var(--text-body);
    padding: 4px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.sa-region-list li:last-child { border-bottom: none; }

/* Services strip */
.sa-services-strip { padding: 64px 0; background: var(--navy); }
.sa-services-strip-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}
@media (max-width: 768px) { .sa-services-strip-inner { grid-template-columns: 1fr; } }
.sa-services-strip p { color: rgba(255,255,255,0.75); margin-top: 12px; line-height: 1.6; }
.sa-strip-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}
.sa-strip-link {
    display: block;
    padding: 10px 16px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    transition: background 0.15s, border-color 0.15s;
}
.sa-strip-link:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); color: var(--white); }
.sa-strip-link--all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    font-weight: 700;
}
.sa-strip-link--all:hover { background: var(--gold-light); color: var(--navy); }
