/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --rd-dark: #251f25;
    --rd-gold: #A97708;
    --rd-gold-hover: #936807;
    --rd-white: #ffffff;
    --rd-light: #faf9f7;
    --rd-border: #e8e4df;
    --rd-text: #1a1a1a;
    --rd-text-light: #777777;
    --rd-radius: 10px;
    --rd-radius-sm: 6px;
    --rd-shadow: 0 12px 30px rgba(0,0,0,0.06);
    --rd-transition: all 0.25s ease;
    --rd-font: 'Montserrat', 'Raleway', 'Open Sans', sans-serif;
    --rd-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ============================================================
   ACCESSIBILITY — Skip to content
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--rd-gold);
    color: var(--rd-dark);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0 0 var(--rd-radius-sm) var(--rd-radius-sm);
    z-index: 10000;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}

/* ============================================================
   BASE / RESET
   ============================================================ */
body {
    background: var(--rd-light);
    font-family: var(--rd-font);
    margin: 0;
    padding: 0;
}
.homepage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* ============================================================
   GLOBAL HEADER (.gh)
   ============================================================ */
.gh {
    position: sticky;
    top: 0;
    z-index: 500;
    background: #f5f3f0;
    height: 80px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.gh--overlay {
    position: fixed;
    left: 0;
    right: 0;
}
.gh-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
}
.gh-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}
.gh-logo img {
    height: 60px;
    width: auto;
}

/* ── Nav links ── */
.gh-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.gh-nav > a,
.gh-dropdown-btn {
    color: #333;
    font-family: var(--rd-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.gh-nav > a:hover,
.gh-dropdown-btn:hover {
    background: rgba(0,0,0,0.05);
    color: #000;
}

/* ── Dropdown ── */
.gh-dropdown {
    position: relative;
}
.gh-dropdown-btn > i:first-child {
    margin-right: 5px;
    font-size: 13px;
    opacity: 0.7;
}
.gh-dropdown-btn i.fa-chevron-down {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.2s;
}
.gh-dropdown:hover .gh-dropdown-btn i.fa-chevron-down {
    transform: rotate(180deg);
}
.gh-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 8px;
    min-width: 180px;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    list-style: none;
    margin: 0;
    z-index: 600;
}
.gh-dropdown:hover > .gh-dropdown-menu,
.gh-dropdown.is-open > .gh-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gh-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.gh-dropdown-menu li a:hover {
    background: #f5f5f5;
    color: var(--rd-gold);
}
.gh-dropdown-divider {
    height: 1px;
    background: #e8e4df;
    margin: 4px 12px;
}
.gh-dropdown-heading {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rd-text-light);
    padding: 6px 16px 2px;
    pointer-events: none;
}

/* ── Mega dropdown (Prices) ── */
.gh-mega {
    display: flex;
    min-width: 380px;
    padding: 12px 0;
    gap: 0;
}
.gh-mega-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
}
.gh-mega-col + .gh-mega-col {
    border-left: 1px solid #e8e4df;
}
.gh-mega-heading {
    display: block;
    padding: 8px 20px 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
}
.gh-mega-heading i {
    margin-right: 4px;
    color: var(--rd-gold);
}
.gh-mega-col a {
    display: block;
    padding: 7px 20px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.gh-mega-col a:hover {
    background: #f5f5f5;
    color: var(--rd-gold);
}

/* ── Right side (phone + sign in) ── */
.gh-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}
.gh-assist {
    font-size: 13px;
    color: #777;
    font-style: italic;
    white-space: nowrap;
}
.gh-phone {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
}
.gh-phone:hover { color: var(--rd-gold); }
.gh-phone i { color: var(--rd-gold); }

/* ── Sign In / User button ── */
.gh-login-btn {
    background: var(--rd-gold);
    color: #251f25;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-family: var(--rd-font);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.gh-login-btn:hover { background: var(--rd-gold-hover); }
.gh-login-btn i.fa-user { margin-right: 6px; }
/* When login btn doubles as dropdown trigger */
.gh-login-btn.gh-dropdown-btn {
    color: #251f25;
}
.gh-login-btn.gh-dropdown-btn:hover {
    background: var(--rd-gold-hover);
    color: #251f25;
}

/* ── In-header ticker ── */
.gh-ticker {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.gh-ticker-track {
    position: relative;
    height: 40px;
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.gh-ticker-msg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}
.gh-ticker-msg.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.gh-ticker-line1 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    letter-spacing: 0.2px;
}
.gh-ticker-line1 i {
    color: var(--rd-gold);
    margin-right: 5px;
    font-size: 13px;
}
.gh-ticker-line2 {
    font-size: 13px;
    color: rgba(0,0,0,0.7);
    white-space: nowrap;
    font-weight: 400;
}

/* ── Mobile toggle ── */
.gh-toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

/* ── Mobile (< 768px) ── */
@media (max-width: 768px) {
    .gh { height: 70px; }
    .gh-inner { padding: 0 16px; }
    .gh-left { flex: none; gap: 12px; }
    .gh-right { flex: 1; justify-content: flex-end; gap: 10px; }
    .gh-logo img { height: 38px; }
    .gh-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        padding: 8px 0;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        z-index: 600;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .gh-nav.is-open { display: flex; }
    .gh-nav.is-open > a,
    .gh-nav.is-open .gh-dropdown-btn {
        width: 100%;
        text-align: left;
        padding: 14px 20px;
        border-radius: 0;
    }
    .gh-ticker { display: none; }
    .gh-assist { font-size: 10px; }
    .gh-phone { font-size: 12px; }
    .gh-phone span { font-size: 11px; }
    .gh-toggle { display: block; }
    .gh-dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .gh-dropdown.is-open > .gh-dropdown-menu {
        display: block;
    }
    .gh-dropdown-menu li a { color: #555; padding: 12px 32px; }
    .gh-dropdown-menu li a:hover { color: var(--rd-gold); background: #f5f5f5; }
    .gh-mega { flex-direction: column; min-width: 0; }
    .gh-mega-col + .gh-mega-col { border-left: none; border-top: 1px solid #eee; margin-top: 8px; padding-top: 8px; }
    .gh-mega-heading { color: #999; padding: 8px 20px 4px; }
    .gh-mega-col a { color: #555; padding: 10px 32px; }
    .gh-mega-col a:hover { color: var(--rd-gold); background: #f5f5f5; }
}

/* ============================================================
   HERO SECTION (550px with rate div centered)
   ============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: #1a1520;
    display: flex;
    align-items: flex-start; /* prevent top overflow — card grows downward only */
    justify-content: center;
    overflow: visible;
    padding-top: 100px;  /* clear 80px fixed header + 20px breathing room */
    padding-bottom: 20px;
    box-sizing: border-box;
}
/* ── Hero slideshow ── */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slide.is-active {
    opacity: 1;
}
/* Progressive loading: blur placeholder, then sharpen */
.hero-slide--loading {
    filter: blur(20px);
    transform: scale(1.05); /* hide blur edges */
}
.hero-slide--loaded {
    filter: blur(0);
    transform: scale(1);
    transition: filter 0.8s ease-out, transform 0.8s ease-out, opacity 1.5s ease-in-out;
}
/* ── Overlays ── */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.10) 40%,
        rgba(0,0,0,0.0) 70%
    );
    pointer-events: none;
    z-index: 1;
}
.hero-section::after {
    content: none;
}
.hero-content {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 750px;
    padding: 0 20px;
    margin-top: auto;    /* auto margins = centered when small, */
    margin-bottom: auto; /* pinned to top when card outgrows hero */
}
.hero-bottom-text {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 0 40px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.hero-content .hero-title {
    text-align: center;
    color: var(--rd-white);
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 6px;
}
.hero-content .hero-title strong {
    color: var(--rd-gold);
    font-weight: 700;
}
.hero-content .hero-subtitle {
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 28px;
}
.rd-heading {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 3px 16px rgba(0,0,0,0.5);
}

/* ── Hero Trust Bar ── */
.hero-trust-bar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    background: none;
    padding: 20px 0 0;
    margin-top: 12px;
    max-width: 750px;
    width: 100%;
}
.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.hero-trust-item i {
    font-size: 28px;
    color: #A97708;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.70);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hero-trust-item span {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
    .hero-trust-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 20px;
    }
    .hero-trust-item i {
        font-size: 22px;
        width: 46px;
        height: 46px;
    }
    .rd-heading {
        font-size: 28px;
        letter-spacing: 1px;
    }
}
.hero-bottom-text .hero-title {
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    margin: 0;
    white-space: nowrap;
}
.hero-bottom-text .hero-title strong {
    color: #f7b104;
    font-weight: 700;
}
.hero-bottom-text .hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .hero-section { height: 100vh; min-height: 480px; }
    .hero-content .hero-title { font-size: 26px; }
    .hero-bottom-text { flex-direction: column; gap: 4px; padding: 0 20px; bottom: 20px; }
    .hero-bottom-text .hero-title { font-size: 20px; white-space: normal; }
    .hero-bottom-text .hero-subtitle { font-size: 12px; }
}
@media (max-width: 768px) {
    .hero-section { height: auto; min-height: auto; padding: 80px 0 20px; flex-direction: column; background: linear-gradient(165deg, #251f25 0%, #1a1520 40%, #12101a 100%); }
    .hero-slides { display: none; }
    .hero-section::before { display: none; }
    .hero-content .hero-title { font-size: 22px; }
    .hero-bottom-text {
        position: static;
        order: -1;
        padding: 0 16px 16px;
        flex-direction: column;
        gap: 4px;
    }
    .hero-bottom-text .hero-title { font-size: 18px; white-space: normal; text-align: center; }
    .hero-bottom-text .hero-subtitle { font-size: 12px; text-align: center; white-space: normal; }
    .hero-trust-bar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 16px; padding: 12px 0 0; }
    .hero-trust-item i { font-size: 18px; width: 40px; height: 40px; }
    .hero-trust-item span { font-size: 10px; }

    /* Luggage panel — full-screen overlay grid on mobile */
    .rd-luggage-panel {
        position: fixed !important;
        left: 16px !important;
        right: 16px !important;
        top: 50% !important;
        transform: translateY(-50%);
        width: auto !important;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 2000 !important;
        padding: 16px;
        border-radius: 12px;
        border: 2px solid var(--rd-gold);
        display: none;
    }
    .rd-luggage-panel.is-open {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .rd-lug-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 4px;
        gap: 6px;
        border: 1px solid var(--rd-border);
        border-radius: 8px;
        background: #faf9f7;
    }
    .rd-lug-item + .rd-lug-item {
        border-top: none;
    }
    .rd-lug-item-label {
        flex-direction: column;
        align-items: center;
        font-size: 11px;
        line-height: 1.2;
        gap: 3px;
        flex: none;
    }
    .rd-lug-item-label .rd-lug-icon {
        font-size: 18px;
        width: auto;
        color: var(--rd-gold);
    }
    .rd-luggage-panel select.rd-lug-select {
        width: 58px !important;
        padding: 5px 2px !important;
        font-size: 14px !important;
        text-align: center;
    }
    .rd-lug-divider {
        grid-column: 1 / -1;
        margin: 2px 0;
    }
    .rd-luggage-panel select.rd-pet-select,
    .rd-luggage-panel .rd-pet-input {
        width: 100% !important;
    }
}
@media (max-width: 480px) {
    .gh-assist { display: none; }
    .gh-phone span { font-size: 10px; }
    .hero-section { min-height: auto; padding-top: 76px; }
}

/* ============================================================
   RATE DIV — CORE CONTAINER
   ============================================================ */
.rate-div {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--rd-radius);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    border: 1.5px solid #a67c00;
    overflow: visible;
    position: relative;
    transition: var(--rd-transition);
}

/* ============================================================
   PILL TABS (Service Type)
   ============================================================ */
/* Segmented control container */
.rd-tabs {
    display: flex;
    position: relative;
    z-index: 3;
    background: #fff;
    padding: 8px;
    margin: 0;
    list-style: none;
    border-radius: 15px 15px 0 0;
    overflow: visible;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
/* Sliding pill indicator (hidden — now using direct label styling) */
.rd-tabs-pill { display: none; }
.rd-tabs li { flex: 1; position: relative; z-index: 1; }
.rd-tabs input[type="radio"] { display: none; }
.rd-tabs label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 500;
    color: #5a5360;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
    border-bottom: none;
    margin: 0;
    position: relative;
    border-radius: 7px;
    background: transparent;
}
.rd-tabs label:hover {
    color: #1a1520;
    background: rgba(0,0,0,0.04);
}
.rd-tabs input[type="radio"]:checked + label {
    color: #1a1a1a;
    font-weight: 600;
    background: #a67c00;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Tab tooltips — appear below the tab, inside the card */
.rd-tabs label .rd-tooltip {
    position: absolute;
    top: calc(100% + 3px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--rd-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    padding: 8px 12px;
    border-radius: var(--rd-radius-sm);
    white-space: normal;
    width: 240px;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
    border: 1px solid rgba(169,119,8,0.3);
}
.rd-tabs label .rd-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: var(--rd-dark);
}
.rd-tabs label:hover .rd-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* Keep tooltip edges within the card */
.rd-tabs li:first-child label .rd-tooltip {
    left: 0;
    transform: translateX(0) translateY(-4px);
}
.rd-tabs li:first-child label:hover .rd-tooltip {
    transform: translateX(0) translateY(0);
}
.rd-tabs li:first-child label .rd-tooltip::after {
    left: 30px;
}
.rd-tabs li:last-child label .rd-tooltip {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(-4px);
}
.rd-tabs li:last-child label:hover .rd-tooltip {
    transform: translateX(0) translateY(0);
}
.rd-tabs li:last-child label .rd-tooltip::after {
    left: auto;
    right: 30px;
}

/* ============================================================
   FORM BODY
   ============================================================ */
.rd-body { padding: 16px 20px 20px; }

/* ---- Main fields row ---- */
.rd-fields {
    display: grid;
    gap: 12px;
    align-items: end;
}
.rd-fields--locations {
    grid-template-columns: 1fr 1fr;
}
.rd-fields--datetime {
    grid-template-columns: 1fr 1fr;
    margin-top: 12px;
}
.rate-div--full .rd-fields {
    grid-template-columns: 1fr 1fr;
}
.rate-div--compact .rd-fields {
    grid-template-columns: 1fr 1fr;
}
.rate-div--compact .rd-field--cta {
    grid-column: 1 / -1;
}

/* ---- Individual field ---- */
.rd-field { position: relative; }
.rd-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--rd-text-light);
    margin-bottom: 4px;
}
.rd-field label .rd-icon {
    margin-right: 4px;
    opacity: 0.5;
}
.rd-field input[type="text"],
.rd-field input[type="date"],
.rd-field input[type="time"],
.rd-field select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    font-size: 14px;
    font-family: var(--rd-font);
    color: var(--rd-text);
    background: var(--rd-white);
    transition: var(--rd-transition);
    outline: none;
    box-sizing: border-box;
    height: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.rd-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
.rd-field input:focus,
.rd-field select:focus {
    border-color: var(--rd-gold);
    box-shadow: 0 0 0 3px rgba(169,119,8,0.15);
}
.rd-field input::placeholder {
    color: var(--rd-text-light);
    font-weight: 400;
}

/* Swap button between From/To */
.rd-swap {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rd-white);
    border: 2px solid var(--rd-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: var(--rd-text-light);
    transition: var(--rd-transition);
}
.rd-swap:hover {
    border-color: var(--rd-gold);
    color: var(--rd-dark);
    background: var(--rd-gold);
}

/* ---- CTA Button ---- */
.rd-cta {
    background: var(--rd-gold);
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--rd-font);
    border-radius: var(--rd-radius-sm);
    cursor: pointer;
    transition: var(--rd-transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    min-height: 42px;
}
.rd-cta:hover {
    background: var(--rd-gold-hover);
    box-shadow: 0 4px 12px rgba(169,119,8,0.3);
    transform: translateY(-1px);
}
.rd-cta:active { transform: translateY(0); }

/* ============================================================
   EXTRA ROWS (return, hourly, wait & return)
   ============================================================ */
.rd-extra-row {
    display: grid;
    gap: 12px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.35s ease;
}
.rd-extra-row.is-visible {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}
/* Return row: clean 4-column layout — From | To | Return Date | Return Time */
.rd-extra-row--return {
    grid-template-columns: 1fr 1fr;
}
.rate-div--full .rd-extra-row--return {
    grid-template-columns: 1fr 1fr;
}
/* Return pax/luggage row — needs overflow:visible for luggage dropdown */
.rd-extra-row--return-pax {
    grid-template-columns: 1fr 1fr;
}
.rd-extra-row--return-pax.is-visible {
    overflow: visible;
}
/* Hourly row: 2 fields */
.rd-extra-row--hourly {
    grid-template-columns: 1fr 1fr;
}
/* Wait row: 1 field */
.rd-extra-row--wait {
    grid-template-columns: 1fr 1fr;
}

/* Return stops wrapper — matches outbound stops layout */
.rd-return-stops-wrap {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}
.rd-return-stops-wrap.is-visible {
    max-height: 800px;
    opacity: 1;
}

/* ============================================================
   PASSENGERS & LUGGAGE ROW
   ============================================================ */
.rd-pax-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    margin-top: 12px;
    align-items: end;
}

/* Passenger select */
.rd-pax-select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    font-size: 14px;
    font-family: var(--rd-font);
    font-weight: 600;
    color: var(--rd-text);
    background: var(--rd-white);
    cursor: pointer;
    transition: var(--rd-transition);
    outline: none;
    box-sizing: border-box;
    height: 42px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
.rate-div--full .rd-pax-select {
    padding: 12px 14px;
    font-size: 15px;
    height: 46px;
    padding-right: 34px;
}
.rd-pax-select:hover,
.rd-pax-select:focus {
    border-color: var(--rd-gold);
    box-shadow: 0 0 0 3px rgba(252,193,2,0.15);
}

/* Luggage trigger field */
.rd-luggage-trigger {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    font-size: 14px;
    font-family: var(--rd-font);
    color: var(--rd-text);
    background: var(--rd-white);
    cursor: pointer;
    transition: var(--rd-transition);
    outline: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
    user-select: none;
}
.rate-div--full .rd-luggage-trigger {
    padding: 12px 14px;
    font-size: 15px;
    height: 46px;
}
.rd-luggage-trigger:hover,
.rd-luggage-trigger.is-open {
    border-color: var(--rd-gold);
    box-shadow: 0 0 0 3px rgba(169,119,8,0.15);
}
.rd-luggage-trigger .rd-lug-summary {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rd-luggage-trigger .rd-lug-arrow {
    font-size: 10px;
    color: var(--rd-text-light);
    transition: transform 0.2s ease;
    margin-left: 8px;
    flex-shrink: 0;
}
.rd-luggage-trigger.is-open .rd-lug-arrow {
    transform: rotate(180deg);
}

/* Luggage dropdown panel */
.rd-luggage-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--rd-white);
    border: 2px solid var(--rd-gold);
    border-top: none;
    border-radius: 0 0 var(--rd-radius-sm) var(--rd-radius-sm);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 12px 14px;
    display: none;
}
.rd-luggage-panel.is-open {
    display: block;
    animation: lugPanelIn 0.2s ease;
}
@keyframes lugPanelIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.rd-lug-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}
.rd-lug-item + .rd-lug-item {
    border-top: 1px solid var(--rd-border);
}
.rd-lug-item-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--rd-text);
}
.rd-lug-item-label .rd-lug-icon {
    font-size: 16px;
    width: 22px;
    text-align: center;
}
.rd-luggage-panel select.rd-lug-select {
    width: 70px !important;
    padding: 6px 8px !important;
    padding-right: 8px !important;
    border: 1px solid var(--rd-border) !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-family: var(--rd-font) !important;
    font-weight: 600 !important;
    color: var(--rd-text) !important;
    background: var(--rd-white) !important;
    background-image: none !important;
    cursor: pointer !important;
    outline: none !important;
    flex-shrink: 0 !important;
    height: 32px !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    appearance: menulist !important;
}
.rd-luggage-panel select.rd-lug-select:hover,
.rd-luggage-panel select.rd-lug-select:focus {
    border-color: var(--rd-gold) !important;
    box-shadow: 0 0 0 2px rgba(252,193,2,0.15) !important;
}

/* Luggage divider (before Pets) */
.rd-lug-divider {
    height: 1px;
    background: var(--rd-border);
    margin: 4px 0;
}

/* Pet details sub-fields */
.rd-pet-details {
    display: none;
    padding: 8px 0 4px;
    border-top: 1px dashed var(--rd-border);
    margin-top: 2px;
}
.rd-pet-details.is-visible {
    display: block;
}
.rd-pet-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}
.rd-pet-field label {
    font-size: 12px;
    font-weight: 500;
    color: var(--rd-text);
    font-family: var(--rd-font);
    margin: 0;
}
.rd-luggage-panel select.rd-pet-select {
    width: 140px !important;
    padding: 5px 8px !important;
    border: 1px solid var(--rd-border) !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-family: var(--rd-font) !important;
    font-weight: 500 !important;
    color: var(--rd-text) !important;
    background: var(--rd-white) !important;
    background-image: none !important;
    cursor: pointer !important;
    outline: none !important;
    height: 30px !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    appearance: menulist !important;
}
.rd-luggage-panel select.rd-pet-select:focus {
    border-color: var(--rd-gold) !important;
    box-shadow: 0 0 0 2px rgba(252,193,2,0.15) !important;
}
.rd-luggage-panel .rd-pet-input {
    width: 140px !important;
    padding: 5px 8px !important;
    border: 1px solid var(--rd-border) !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-family: var(--rd-font) !important;
    font-weight: 500 !important;
    color: var(--rd-text) !important;
    background: var(--rd-white) !important;
    outline: none !important;
    height: 30px !important;
    box-sizing: border-box !important;
}
.rd-luggage-panel .rd-pet-input:focus {
    border-color: var(--rd-gold) !important;
    box-shadow: 0 0 0 2px rgba(252,193,2,0.15) !important;
}

/* ============================================================
   STOPS
   ============================================================ */
.rd-stops {
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.35s ease;
}
.rd-stops.has-stops {
    max-height: 600px;
    opacity: 1;
    margin-top: 12px;
}
.rd-stop-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: end;
    margin-bottom: 8px;
    padding: 10px 12px;
    background: var(--rd-light);
    border-radius: var(--rd-radius-sm);
    border: 1px solid var(--rd-border);
    animation: stopSlideIn 0.25s ease;
}
@keyframes stopSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.rd-stop-item .rd-field label {
    font-size: 10px;
}
.rd-stop-item .rd-stop-location {
    min-width: 0;
}
.rd-stop-item .rd-stop-wait {
    width: 160px;
}
.rd-stop-remove {
    width: 32px;
    height: 38px;
    border: 2px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    background: var(--rd-white);
    color: var(--rd-text-light);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--rd-transition);
    align-self: end;
}
.rd-stop-remove:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #fdf0ef;
}
.rd-add-stop {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--rd-gold-hover);
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--rd-font);
    transition: var(--rd-transition);
    margin-top: 4px;
}
.rd-add-stop:hover {
    color: var(--rd-dark);
}
.rd-add-stop .plus {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--rd-gold);
    color: var(--rd-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* ============================================================
   FULL SIZE — SPECIFIC
   ============================================================ */
.rate-div--full .rd-tabs label {
    padding: 11px 10px;
    font-size: 14px;
}
.rate-div--full .rd-body {
    padding: 20px 24px 24px;
}
.rate-div--full .rd-field input[type="text"],
.rate-div--full .rd-field input[type="date"],
.rate-div--full .rd-field input[type="time"],
.rate-div--full .rd-field select {
    padding: 12px 14px;
    font-size: 15px;
}
.rate-div--full .rd-field select {
    padding-right: 34px;
}
.rate-div--full .rd-cta {
    padding: 14px 28px;
    font-size: 16px;
    min-height: 46px;
}

/* ============================================================
   COMPACT — SPECIFIC
   ============================================================ */
.rate-div--compact .rd-tabs label {
    padding: 10px 6px;
    font-size: 12px;
}
.rate-div--compact .rd-body {
    padding: 14px 16px 16px;
}
.rate-div--compact .rd-field input[type="text"],
.rate-div--compact .rd-field input[type="date"],
.rate-div--compact .rd-field input[type="time"],
.rate-div--compact .rd-field select {
    padding: 8px 10px;
    font-size: 13px;
}
.rate-div--compact .rd-field select {
    padding-right: 30px;
}
.rate-div--compact .rd-cta {
    padding: 10px 20px;
    font-size: 14px;
}
.rate-div--compact .rd-stop-item .rd-stop-wait {
    width: 130px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .rate-div--full .rd-extra-row--return {
        grid-template-columns: 1fr 1fr;
    }
    .rd-extra-row--return-pax { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .rd-fields--locations,
    .rd-fields--datetime,
    .rate-div--compact .rd-fields {
        grid-template-columns: 1fr;
    }
    .rd-pax-row {
        grid-template-columns: 1fr 1fr;
    }
    .rd-pax-row .rd-field--cta {
        grid-column: 1 / -1;
    }
    .rd-extra-row { grid-template-columns: 1fr 1fr !important; }
    .rd-extra-row--return-pax { grid-template-columns: 1fr 1fr !important; }
    .rd-swap { display: none; }
    .rd-tabs label { font-size: 12px !important; padding: 10px 4px !important; border-radius: 6px; color: #5a5360 !important; }
    .rd-tabs label .rd-tooltip { display: none; }
    .rd-stop-item { grid-template-columns: 1fr auto; }
    .rd-stop-item .rd-stop-wait { width: 100%; grid-column: 1; }
    .rd-stop-remove { grid-row: 1; grid-column: 2; }
}

@media (max-width: 480px) {
    .rd-tabs { flex-wrap: wrap; }
    .rd-tabs li { flex: 0 0 50%; }
    .rd-tabs label { font-size: 12px !important; padding: 12px 8px !important; border-radius: 6px; }
    .rd-tabs input[type="radio"]:checked + label {
        background: #a67c00 !important;
        border-radius: 50px !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        color: #1a1a1a !important;
    }
    .rd-extra-row { grid-template-columns: 1fr !important; }
}

/* ============================================================
   GOOGLE AUTOCOMPLETE DROPDOWN OVERRIDE
   ============================================================ */
.pac-container {
    font-family: var(--rd-font);
    font-size: 13px;
    border-radius: 0 0 var(--rd-radius-sm) var(--rd-radius-sm);
    border-top: 2px solid var(--rd-gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.pac-item {
    padding: 8px 12px;
    cursor: pointer;
    white-space: normal !important;
    line-height: 1.4;
}
.pac-item:hover { background: rgba(169,119,8,0.08); }
.pac-item-selected { background: rgba(169,119,8,0.12); }
/* Hide "Powered by Google" logo (paid API — attribution not required) */
.pac-container::after {
    display: none !important;
}

/* ============================================================
   FLEET STRIP — horizontal scroll overlapping hero bottom
   ============================================================ */
.fleet-strip {
    position: relative;
    z-index: 10;
    margin-top: 0;
    padding: 30px 0;
}
.fleet-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.fleet-strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 4px;
}
.fleet-strip-header h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--rd-dark);
    margin: 0;
}
.fleet-strip-header h2 strong {
    color: var(--rd-gold);
}
.fleet-scroll-arrows {
    display: flex;
    gap: 6px;
}
.fleet-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--rd-border);
    background: var(--rd-white);
    color: var(--rd-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
}
.fleet-arrow:hover {
    background: var(--rd-gold);
    border-color: var(--rd-gold);
    color: #1a1a1a;
}
.fleet-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}
.fleet-scroll-wrap {
    margin: 0 -4px;
    padding: 4px 4px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.fleet-scroll-wrap::-webkit-scrollbar { display: none; }
.fleet-scroll {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
}
.fleet-card {
    width: 210px;
    flex-shrink: 0;
    background: var(--rd-white);
    border-radius: var(--rd-radius);
    overflow: hidden;
    transition: var(--rd-transition);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.fleet-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    transform: translateY(-3px);
}
.fleet-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--rd-light);
    position: relative;
}
.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-card-img img {
    transform: scale(1.06);
}
.fleet-card-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--rd-dark);
    color: var(--rd-gold);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.fleet-card-body {
    padding: 10px 12px 12px;
}
.fleet-card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fleet-card-specs {
    display: flex;
    gap: 10px;
}
.fleet-card-spec {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: var(--rd-text-light);
    font-weight: 500;
}
.fleet-card-spec .spec-icon {
    font-size: 12px;
}

.fleet-card-desc {
    font-size: 11px;
    line-height: 1.5;
    color: var(--rd-text-light);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fleet-card-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--rd-border);
}
.fleet-card-price-amount {
    font-size: 11px;
    color: var(--rd-text-light);
}
.fleet-card-price-amount strong {
    font-size: 16px;
    color: var(--rd-dark);
    font-weight: 800;
}
.fleet-card-book {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: var(--rd-gold);
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}
.fleet-card:hover .fleet-card-book {
    background: var(--rd-dark);
    color: var(--rd-gold);
}
@media (max-width: 768px) {
    .fleet-strip { margin-top: 0; }
    .fleet-card { width: 170px; }
    .fleet-card-desc { display: none; }
    .fleet-arrow { width: 44px; height: 44px; }
}
@media (max-width: 480px) {
    .fleet-card { width: 155px; }
    .fleet-card-body { padding: 8px 10px 10px; }
    .fleet-card-name { font-size: 12px; }
}

/* ============================================================
   AVAILABILITY BANNER (hero) + FLEET BADGES
   ============================================================ */
.avail-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 8px 20px;
    border-radius: 50px;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    white-space: nowrap;
    max-width: 90%;
}
.avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: availPulse 2s ease-in-out infinite;
}
@keyframes availPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.avail-banner-text {
    font-family: var(--rd-font);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2px;
    transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
    .avail-banner { top: 10px; padding: 6px 14px; }
    .avail-banner-text { font-size: 11px; }
}
@media (max-width: 480px) {
    .avail-banner { padding: 5px 12px; max-width: 95%; }
    .avail-banner-text { font-size: 10px; }
}

/* Fleet card availability badges */
.fleet-avail-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--rd-font);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 0;
    letter-spacing: 0.2px;
}
.avail-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.fleet-avail-badge.avail-now {
    color: #16a34a;
}
.fleet-avail-badge.avail-now .avail-dot-sm {
    background: #22c55e;
    animation: availPulse 2s ease-in-out infinite;
}
.fleet-avail-badge.avail-soon {
    color: #a67c00;
}
.fleet-avail-badge.avail-soon .avail-dot-sm {
    background: var(--rd-gold);
}
.fleet-avail-badge.avail-advance {
    color: var(--rd-text-light);
}
.fleet-avail-badge.avail-advance .avail-dot-sm {
    background: #aaa;
}

/* ============================================================
   ABOUT / SERVICE AREAS SECTION
   ============================================================ */
.about-section {
    padding: 70px 20px;
    background: var(--rd-white);
    border-bottom: 1px solid var(--rd-border);
}
.about-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}
.about-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--rd-dark);
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}
.about-text h2 span { color: var(--rd-gold-hover); }
.about-text .about-since {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--rd-gold-hover);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.about-text p {
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 16px;
}
.about-text p strong { color: var(--rd-dark); }
/* Service areas sidebar */
.about-areas {
    background: var(--rd-light);
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid var(--rd-border);
}
.about-areas h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-areas h3 i { color: var(--rd-gold-hover); }
.about-area-group {
    margin-bottom: 18px;
}
.about-area-group:last-child { margin-bottom: 0; }
.about-area-group-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rd-text-light);
    margin-bottom: 8px;
}
.about-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.about-area-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--rd-dark);
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.about-area-tag:hover {
    border-color: var(--rd-gold);
    background: rgba(169,119,8,0.05);
}
.about-area-tag i {
    color: var(--rd-gold-hover);
    font-size: 11px;
}
.about-highlight-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.about-highlight {
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    transition: all 0.2s ease;
}
.about-highlight:hover {
    border-color: var(--rd-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.about-highlight i {
    font-size: 20px;
    color: var(--rd-gold-hover);
    margin-bottom: 6px;
    display: block;
}
.about-highlight-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--rd-dark);
    line-height: 1;
}
.about-highlight-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--rd-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 480px) {
    .about-section { padding: 50px 16px; }
    .about-text h2 { font-size: 24px; }
    .about-highlight-bar { grid-template-columns: 1fr; }
}

/* ============================================================
   FIELD VALIDATION
   ============================================================ */
.rd-field.rd-field--error input,
.rd-field.rd-field--error select {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.12);
}
.rd-field.rd-field--error input:focus,
.rd-field.rd-field--error select:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.2);
}
.rd-field .rd-error-msg {
    display: none;
    font-size: 11px;
    color: #e74c3c;
    margin-top: 3px;
    font-weight: 500;
}
.rd-field.rd-field--error .rd-error-msg {
    display: block;
}
.rd-stop-item.rd-field--error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.12);
}
.rd-stop-item.rd-field--error input {
    border-color: #e74c3c;
}
.rd-validation-summary {
    display: none;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: var(--rd-radius-sm);
    padding: 10px 14px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
}
.rd-validation-summary.is-visible {
    display: block;
    animation: shakeX 0.4s ease;
}
@keyframes shakeX {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* ============================================================
   VALIDATION RESULT (debug)
   ============================================================ */
.validation-result {
    margin-top: 15px; padding: 15px;
    border-radius: var(--rd-radius-sm); font-size: 13px; display: none;
}
/* ============================================================
   ASSISTANCE BANNER
   ============================================================ */
.assist-banner {
    background: linear-gradient(135deg, var(--rd-gold), #f0a800);
    padding: 28px 20px;
    text-align: center;
}
.assist-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.assist-banner-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--rd-dark);
}
.assist-banner-text i { margin-right: 6px; }
.assist-banner-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--rd-dark);
    color: var(--rd-gold);
    border-radius: var(--rd-radius-sm);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}
.assist-banner-phone:hover {
    background: #3a3240;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.assist-banner-hours {
    font-size: 12px;
    color: rgba(37,31,37,0.6);
    font-weight: 500;
}
@media (max-width: 480px) {
    .assist-banner-text { font-size: 14px; }
    .assist-banner-phone { font-size: 16px; padding: 8px 20px; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
    padding: 80px 20px;
    background: var(--rd-white);
}
.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}
.faq-list {
    margin-top: 10px;
}
.faq-item {
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
}
.faq-item:hover {
    border-color: rgba(169,119,8,0.3);
}
.faq-item.is-open {
    border-color: var(--rd-gold);
    box-shadow: 0 4px 16px rgba(169,119,8,0.08);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    background: var(--rd-white);
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--rd-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--rd-dark);
    transition: all 0.2s ease;
    gap: 16px;
}
.faq-question:hover {
    background: rgba(169,119,8,0.03);
}
.faq-item.is-open .faq-question {
    background: rgba(169,119,8,0.05);
}
.faq-question-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rd-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 12px;
    color: var(--rd-text-light);
}
.faq-item.is-open .faq-question-icon {
    background: var(--rd-gold);
    color: var(--rd-dark);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.35s ease;
    padding: 0 20px;
}
.faq-item.is-open .faq-answer {
    max-height: 400px;
    padding: 0 20px 20px;
}
.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}
.faq-answer p strong { color: var(--rd-dark); }
.faq-chain {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 14px;
    font-family: var(--rd-font);
    font-size: 12px;
    font-weight: 600;
    color: var(--rd-gold);
    background: rgba(169,119,8,0.06);
    border: 1px solid rgba(169,119,8,0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.faq-chain:hover {
    background: rgba(169,119,8,0.12);
    border-color: var(--rd-gold);
    color: var(--rd-gold-hover);
}
.faq-chain i { font-size: 10px; }
@media (max-width: 480px) {
    .faq-section { padding: 50px 16px; }
    .faq-question { font-size: 14px; padding: 14px 16px; }
    .faq-answer { padding: 0 16px; }
    .faq-item.is-open .faq-answer { padding: 0 16px 16px; }
}

/* ============================================================
   OUR SERVICES — 6-card grid
   ============================================================ */
.services-section {
    padding: 80px 20px;
    background: var(--rd-white);
}
.services-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card {
    background: var(--rd-light);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rd-gold), #f0a800);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
    background: var(--rd-white);
    border-color: rgba(169,119,8,0.15);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.service-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(169,119,8,0.12), rgba(169,119,8,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--rd-gold-hover);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}
.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--rd-gold), #f0a800);
    color: var(--rd-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(169,119,8,0.25);
}
.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0 0 8px;
}
.service-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--rd-text-light);
    margin: 0 0 14px;
}
.service-card-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--rd-gold-hover);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-card-link:hover {
    color: var(--rd-dark);
    gap: 8px;
}
@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .services-section { padding: 50px 16px; }
    .service-card { padding: 22px 20px; }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rd-dark);
    color: var(--rd-gold);
    border: 2px solid rgba(169,119,8,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--rd-gold);
    color: var(--rd-dark);
    border-color: var(--rd-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(169,119,8,0.3);
}

/* ============================================================
   SCROLL PROGRESS BAR — gold line at top of viewport
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rd-gold), #f0a800, var(--rd-gold));
    width: 0%;
    z-index: 9999;
    transition: width 0.05s linear;
    box-shadow: 0 0 8px rgba(169,119,8,0.4);
}

/* ============================================================
   TRUSTED BY — corporate partner logos strip
   ============================================================ */
.partners-section {
    padding: 60px 20px;
    background: var(--rd-white);
    border-top: 1px solid var(--rd-border);
    border-bottom: 1px solid var(--rd-border);
}
.partners-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.partners-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rd-text-light);
    margin-bottom: 30px;
}
.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.35;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}
.partner-logo:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}
.partner-logo-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--rd-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--rd-dark);
    transition: all 0.3s ease;
}
.partner-logo:hover .partner-logo-icon {
    background: rgba(169,119,8,0.08);
    color: var(--rd-gold-hover);
    transform: scale(1.05);
}
.partner-logo-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--rd-text);
    letter-spacing: 0.3px;
}
@media (max-width: 768px) {
    .partners-grid { gap: 30px; }
    .partner-logo-icon { width: 52px; height: 52px; font-size: 22px; }
}
@media (max-width: 480px) {
    .partners-section { padding: 40px 16px; }
    .partners-grid { gap: 20px 30px; }
}

/* ============================================================
   ROUTE CARDS — enhanced hover + Book link
   ============================================================ */
.route-card-book {
    font-size: 12px;
    font-weight: 700;
    color: var(--rd-gold-hover);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.route-card:hover .route-card-book {
    opacity: 1;
    transform: translateY(0);
}
.route-card-book:hover {
    color: var(--rd-dark);
    gap: 7px;
}

.validation-result.success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.validation-result.error { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }
.validation-result pre {
    background: #f8f9fa; padding: 10px; border-radius: 4px;
    max-height: 300px; overflow: auto; font-size: 12px; margin-top: 10px;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   TRUST BAR — animated counters
   ============================================================ */
.trust-bar {
    background: var(--rd-white);
    padding: 48px 20px;
    border-bottom: 1px solid var(--rd-border);
}
.trust-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.trust-stat {
    position: relative;
}
.trust-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--rd-border);
}
.trust-stat:last-child::after { display: none; }
.trust-stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--rd-gold), #f0a800);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--rd-dark);
    box-shadow: 0 4px 14px rgba(184, 134, 11, 0.25);
    transition: transform 0.3s ease;
}
.trust-stat:hover .trust-stat-icon { transform: scale(1.1) rotate(-3deg); }
.trust-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--rd-dark);
    line-height: 1;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}
.trust-stat-number .trust-suffix {
    font-size: 22px;
    font-weight: 700;
    color: var(--rd-gold-hover);
}
.trust-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--rd-text-light);
    letter-spacing: 0.3px;
}
@media (max-width: 768px) {
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .trust-stat:nth-child(2)::after { display: none; }
    .trust-stat-number { font-size: 28px; }
}
@media (max-width: 480px) {
    .trust-bar { padding: 32px 16px; }
    .trust-stat-icon { width: 44px; height: 44px; font-size: 20px; border-radius: 12px; }
    .trust-stat-number { font-size: 24px; }
}

/* ============================================================
   NYC DAILY TRAVEL INTEL
   ============================================================ */
.intel-section {
    padding: 60px 20px;
    background: var(--rd-light, #faf9f7);
}
.intel-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.intel-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.intel-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
}
.intel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.intel-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--rd-dark, #251f25);
    color: var(--rd-gold, #A97708);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.intel-card-title {
    font-family: var(--rd-font-display, 'Playfair Display', serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--rd-dark, #251f25);
    margin-bottom: 6px;
}
.intel-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--rd-text-light, #777);
    margin: 0;
}
.intel-updated {
    text-align: center;
    font-size: 12px;
    color: var(--rd-text-light, #999);
    margin-top: 20px;
    opacity: 0.7;
}
@media (max-width: 768px) {
    .intel-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .intel-section { padding: 40px 16px; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
    padding: 80px 20px;
    background: var(--rd-light);
}
.why-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--rd-dark);
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}
.section-header h2 span { color: var(--rd-gold-hover); }
.section-header p {
    font-size: 16px;
    color: var(--rd-text-light);
    margin: 0;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}
.section-header .section-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--rd-gold), transparent);
    margin: 16px auto 0;
    border-radius: 3px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--rd-white);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rd-gold), #f0a800, var(--rd-gold));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(184, 134, 11, 0.15);
}
.why-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(169,119,8,0.12), rgba(169,119,8,0.04));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.35s ease;
}
.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--rd-gold), #f0a800);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}
.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0 0 8px;
}
.why-card p {
    font-size: 13px;
    color: var(--rd-text-light);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 992px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-card { padding: 24px 20px; }
    .section-header h2 { font-size: 26px; }
    .why-section { padding: 50px 16px; }
}

/* ============================================================
   HOW IT WORKS — 3-step timeline
   ============================================================ */
.how-section {
    padding: 80px 20px;
    background: var(--rd-dark);
    position: relative;
    overflow: hidden;
}
.how-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(169,119,8,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.how-section-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.how-section .section-header h2 { color: var(--rd-white); }
.how-section .section-header p { color: rgba(255,255,255,0.5); }
.how-section .section-header .section-line {
    background: linear-gradient(90deg, var(--rd-gold), transparent);
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-top: 20px;
}
/* Connecting line */
.how-steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(16.66% + 30px);
    right: calc(16.66% + 30px);
    height: 2px;
    background: linear-gradient(90deg, var(--rd-gold), rgba(169,119,8,0.3), var(--rd-gold));
    z-index: 0;
}
.how-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}
.how-step-num {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rd-gold), #f0a800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--rd-dark);
    box-shadow: 0 0 0 6px rgba(169,119,8,0.15), 0 8px 30px rgba(169,119,8,0.2);
    transition: all 0.35s ease;
    position: relative;
}
.how-step:hover .how-step-num {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(169,119,8,0.25), 0 12px 40px rgba(169,119,8,0.3);
}
.how-step-icon {
    font-size: 26px;
    display: block;
}
.how-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--rd-white);
    margin: 0 0 8px;
}
.how-step p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .how-steps { grid-template-columns: 1fr; gap: 40px; }
    .how-steps::before { display: none; }
    .how-section { padding: 50px 16px; }
}

/* ============================================================
   POPULAR ROUTES
   ============================================================ */
.routes-section {
    padding: 80px 20px;
    background: var(--rd-white);
}
.routes-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.route-card {
    background: var(--rd-light);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.route-card::after {
    content: '\2192';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    opacity: 0;
    font-size: 18px;
    color: var(--rd-gold);
    font-weight: 700;
    transition: all 0.3s ease;
}
.route-card:hover {
    border-color: var(--rd-gold);
    background: var(--rd-white);
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.route-card:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.route-card-icon {
    width: 48px;
    height: 48px;
    background: var(--rd-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--rd-gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.route-card:hover .route-card-icon {
    background: var(--rd-gold);
    color: var(--rd-dark);
}
.route-card-info { flex: 1; min-width: 0; }
.route-card-route {
    font-size: 14px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.route-card-route .route-arrow {
    color: var(--rd-gold-hover);
    margin: 0 6px;
    font-weight: 400;
}
.route-card-meta {
    font-size: 12px;
    color: var(--rd-text-light);
}
.route-card-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--rd-gold-hover);
    background: rgba(169,119,8,0.1);
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 4px;
}
@media (max-width: 992px) { .routes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .routes-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
    .routes-grid { grid-template-columns: 1fr; gap: 12px; }
    .routes-section { padding: 50px 16px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    padding: 80px 20px;
    background: var(--rd-light);
    position: relative;
}
.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--rd-white);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.07);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(169,119,8,0.12);
    line-height: 1;
}
.testimonial-stars {
    color: var(--rd-gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--rd-text);
    margin: 0 0 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rd-dark), #3a3240);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rd-gold);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0;
}
.testimonial-author-trip {
    font-size: 11px;
    color: var(--rd-text-light);
    margin: 0;
}
@media (max-width: 992px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }
@media (max-width: 480px) {
    .testimonials-section { padding: 50px 16px; }
    .testimonial-card { padding: 24px 20px; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, #1a1520 0%, var(--rd-dark) 50%, #2d2435 100%);
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(169,119,8,0.05) 0%, transparent 60%);
}
.cta-banner-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta-banner h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--rd-white);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.cta-banner h2 span { color: var(--rd-gold); }
.cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    margin: 0 0 30px;
    line-height: 1.6;
}
.cta-banner-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-btn-primary {
    padding: 14px 36px;
    background: var(--rd-gold);
    color: #fff;
    border: none;
    border-radius: var(--rd-radius-sm);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--rd-font);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cta-btn-primary:hover {
    background: var(--rd-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(169,119,8,0.3);
}
.cta-btn-secondary {
    padding: 14px 36px;
    background: transparent;
    color: var(--rd-white);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--rd-radius-sm);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--rd-font);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.cta-btn-secondary:hover {
    border-color: var(--rd-gold);
    color: var(--rd-gold);
    background: rgba(169,119,8,0.05);
}
@media (max-width: 480px) {
    .cta-banner { padding: 50px 16px; }
    .cta-banner h2 { font-size: 24px; }
    .cta-btn-primary, .cta-btn-secondary { width: 100%; text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #1a161a;
    padding: 60px 20px 0;
    color: rgba(255,255,255,0.6);
}
.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-col { }
.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--rd-white);
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--rd-gold);
    border-radius: 2px;
}
.footer-about-text {
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 20px;
}
.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
}
.footer-social a:hover {
    background: var(--rd-gold);
    color: var(--rd-dark);
    transform: translateY(-2px);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links li a::before {
    content: '\203A';
    color: var(--rd-gold);
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}
.footer-links li a:hover {
    color: var(--rd-gold);
    padding-left: 4px;
}
.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
}
.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(169,119,8,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--rd-gold);
    flex-shrink: 0;
}
.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--rd-gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 50px;
    padding: 20px 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom-text {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--rd-gold); }
.footer-payment {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}
.footer-payment-label {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-payment-icons {
    display: flex;
    gap: 8px;
}
.footer-payment-icons i {
    font-size: 22px;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}
.footer-payment-icons i:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 992px) {
    .site-footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .site-footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .site-footer { padding: 40px 16px 0; }
    .footer-bottom { justify-content: center; text-align: center; }
    .footer-bottom-links { justify-content: center; }
}

/* ============================================================
   MOBILE STICKY CTA — bottom bar on small screens
   ============================================================ */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: var(--rd-white);
    border-top: 1px solid var(--rd-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 10px 16px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-sticky-cta.is-visible {
    transform: translateY(0);
}
.mobile-sticky-cta-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}
.mobile-sticky-cta-text {
    flex: 1;
    font-size: 12px;
    color: var(--rd-text-light);
    line-height: 1.3;
}
.mobile-sticky-cta-text strong {
    display: block;
    font-size: 14px;
    color: var(--rd-dark);
}
.mobile-sticky-cta-btn {
    background: var(--rd-gold);
    color: #fff;
    border: none;
    border-radius: var(--rd-radius-sm);
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--rd-font);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.mobile-sticky-cta-btn:hover { background: var(--rd-gold-hover); }
@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    /* add bottom padding so content isn't hidden behind sticky bar */
    .site-footer { padding-bottom: 70px; }
    /* move back-to-top above the sticky bar */
    .back-to-top { bottom: 80px; }
}

/* ============================================================
   SOCIAL PROOF TOAST — "Someone just booked" notification
   ============================================================ */
.social-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--rd-white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 300;
    max-width: 340px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.social-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}
.social-toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #28a745;
    flex-shrink: 0;
}
.social-toast-body {
    flex: 1;
    min-width: 0;
}
.social-toast-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--rd-dark);
    margin: 0;
    line-height: 1.35;
}
.social-toast-meta {
    font-size: 11px;
    color: var(--rd-text-light);
    margin: 2px 0 0;
}
.social-toast-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 14px;
    color: var(--rd-text-light);
    cursor: pointer;
    padding: 2px;
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.social-toast-close:hover { opacity: 1; }
/* Review variant — gold star icon */
.social-toast.is-review .social-toast-icon {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #d4a017;
}
.social-toast-stars {
    display: none;
    gap: 1px;
    margin: 3px 0 0;
    font-size: 11px;
    color: #f59e0b;
    line-height: 1;
}
.social-toast.is-review .social-toast-stars { display: flex; }
@media (max-width: 768px) {
    .social-toast { left: 12px; right: 12px; bottom: 80px; max-width: none; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--rd-dark);
    color: rgba(255,255,255,0.8);
    padding: 16px 20px;
    z-index: 600;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.is-visible {
    transform: translateY(0);
}
.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
    min-width: 200px;
}
.cookie-banner-text a {
    color: var(--rd-gold);
    text-decoration: underline;
}
.cookie-banner-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn-accept {
    background: var(--rd-gold);
    color: #fff;
    border: none;
    border-radius: var(--rd-radius-sm);
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--rd-font);
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--rd-gold-hover); }
.cookie-btn-decline {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--rd-radius-sm);
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--rd-font);
    cursor: pointer;
    transition: all 0.2s;
}
.cookie-btn-decline:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
@media (max-width: 480px) {
    .cookie-banner-inner { flex-direction: column; text-align: center; }
    .cookie-banner-btns { width: 100%; justify-content: center; }
}

/* ============================================================
   SERVICE PAGES (.sv-* prefix)
   Used by AirportTransportation, CorporateTravel, WeddingService,
   SightseeingService, GroupTravelService, NightontheTownService, etc.
   ============================================================ */

/* --- Mini Hero (shorter than homepage hero) --- */
.sv-hero {
    background: var(--rd-dark);
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}
.sv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 80%, rgba(169,119,8,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.sv-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.sv-breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.sv-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.sv-breadcrumb a:hover { color: var(--rd-gold); }
.sv-breadcrumb .sv-breadcrumb-sep {
    margin: 0 8px;
    color: rgba(255,255,255,0.3);
}
.sv-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--rd-white);
    margin: 0 0 12px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}
.sv-hero h1 span { color: var(--rd-gold); }
.sv-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 28px;
    line-height: 1.6;
    max-width: 650px;
}
.sv-hero-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.sv-hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
}
.sv-hero-badge i {
    color: var(--rd-gold);
    font-size: 15px;
}
@media (max-width: 768px) {
    .sv-hero { padding: 80px 16px 36px; }
    .sv-hero h1 { font-size: 26px; }
    .sv-hero-sub { font-size: 15px; }
    .sv-hero-badges { gap: 16px; }
}

/* --- Two-Column Layout --- */
.sv-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
@media (max-width: 991px) {
    .sv-layout { grid-template-columns: 1fr; }
}

/* --- Sidebar --- */
.sv-sidebar {
    position: sticky;
    top: 80px;
}
@media (max-width: 991px) {
    .sv-sidebar { order: -1; position: static; }
}

/* --- Content Sections --- */
.sv-content {}
.sv-section { margin-bottom: 40px; }
.sv-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--rd-gold);
    display: inline-block;
}
.sv-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 16px;
}
.sv-text:last-child { margin-bottom: 0; }

/* --- Feature Cards Grid --- */
.sv-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.sv-feature {
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    padding: 22px;
    transition: var(--rd-transition);
}
.sv-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--rd-shadow);
    border-color: var(--rd-gold);
}
.sv-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--rd-dark), #3a2f3a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rd-gold);
    font-size: 20px;
    margin-bottom: 14px;
}
.sv-feature h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0 0 6px;
}
.sv-feature p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 575px) {
    .sv-features { grid-template-columns: 1fr; }
}

/* --- Airport Cards --- */
.sv-airports {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.sv-airport {
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    color: var(--rd-text);
    transition: var(--rd-transition);
    display: block;
}
.sv-airport:hover {
    border-color: var(--rd-gold);
    transform: translateY(-3px);
    box-shadow: var(--rd-shadow);
    text-decoration: none;
    color: var(--rd-text);
}
.sv-airport-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--rd-dark), #3a2f3a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rd-gold);
    font-size: 22px;
}
.sv-airport-code {
    font-size: 26px;
    font-weight: 800;
    color: var(--rd-dark);
    letter-spacing: 1px;
}
.sv-airport-name {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    line-height: 1.4;
}
.sv-airport-link {
    font-size: 12px;
    color: var(--rd-gold);
    font-weight: 600;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.sv-airport:hover .sv-airport-link { text-decoration: underline; }
@media (max-width: 575px) {
    .sv-airports { grid-template-columns: 1fr; }
}

/* --- Area Tags --- */
.sv-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sv-area-tag {
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 13px;
    color: var(--rd-text);
    transition: var(--rd-transition);
}
.sv-area-tag:hover {
    border-color: var(--rd-gold);
    color: var(--rd-dark);
}

/* --- Related Services Links --- */
.sv-related {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.sv-related-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    text-decoration: none;
    color: var(--rd-text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--rd-transition);
}
.sv-related-link:hover {
    border-color: var(--rd-gold);
    color: var(--rd-dark);
    text-decoration: none;
    transform: translateX(3px);
}
.sv-related-link i {
    color: var(--rd-gold);
    font-size: 16px;
    width: 20px;
    text-align: center;
}
@media (max-width: 575px) {
    .sv-related { grid-template-columns: 1fr; }
}

/* --- Service Page Sidebar Booking Card --- */
.sv-book-card {
    background: var(--rd-white);
    border-radius: var(--rd-radius);
    border: 1px solid var(--rd-border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    overflow: hidden;
}
.sv-book-card-header {
    background: var(--rd-dark);
    color: var(--rd-white);
    padding: 18px 20px;
    text-align: center;
    font-family: var(--rd-font);
}
.sv-book-card-header i {
    display: block;
    font-size: 24px;
    color: var(--rd-gold);
    margin-bottom: 6px;
}
.sv-book-card-header .sv-book-card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.sv-book-card-header .sv-book-card-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}
/* Make rate div single-column inside sidebar card */
.sv-book-card .rate-div {
    box-shadow: none;
    border-radius: 0;
    border: none;
    margin: 0;
}
.sv-book-card .rd-tabs { border-radius: 0; }
.sv-book-card .rd-tabs li label {
    padding: 10px 4px;
    font-size: 11px;
    letter-spacing: 0;
}
.sv-book-card .rd-body { padding: 14px 16px 16px; }
.sv-book-card .rd-fields {
    grid-template-columns: 1fr !important;
    gap: 0;
}
.sv-book-card .rd-field--cta {
    grid-column: auto;
    margin-top: 4px;
}
.sv-book-card .rd-field input[type="text"],
.sv-book-card .rd-field input[type="date"],
.sv-book-card .rd-field input[type="time"],
.sv-book-card .rd-field select {
    padding: 9px 10px;
    font-size: 13px;
}
.sv-book-card .rd-pax-row { grid-template-columns: 1fr 1fr; }
.sv-book-card .rd-extra-row { grid-template-columns: 1fr !important; }
.sv-book-card .rd-extra-row--return { grid-template-columns: 1fr !important; }
.sv-book-card .rd-swap {
    right: -14px;
    width: 28px;
    height: 28px;
    font-size: 11px;
}
.sv-book-card .rd-add-stop {
    font-size: 12px;
    padding: 6px 10px;
}
.sv-book-card .rd-cta {
    padding: 12px 16px;
    font-size: 13px;
}
.sv-book-card .rd-stop-item { flex-wrap: wrap; }
.sv-book-card .rd-stop-item .rd-stop-wait { width: 100%; }
.sv-book-footer {
    padding: 0 20px 18px;
    text-align: center;
}
.sv-book-or {
    font-family: var(--rd-font);
    font-size: 12px;
    color: #aaa;
    margin: 8px 0;
}
.sv-book-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: transparent;
    color: var(--rd-dark);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    font-family: var(--rd-font);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: border-color 0.2s;
}
.sv-book-phone i { color: var(--rd-gold); }
.sv-book-phone:hover {
    border-color: var(--rd-gold);
    text-decoration: none;
    color: var(--rd-dark);
}

/* --- Service Hub Grid (overview page) --- */
.sv-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.sv-service-card {
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    padding: 28px 24px;
    text-decoration: none;
    color: var(--rd-text);
    transition: var(--rd-transition);
    display: block;
    position: relative;
}
.sv-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--rd-gold);
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.sv-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rd-shadow);
    text-decoration: none;
    color: var(--rd-text);
    border-color: var(--rd-gold);
}
.sv-service-card:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.sv-service-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--rd-dark), #3a2f3a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rd-gold);
    font-size: 24px;
    margin-bottom: 16px;
}
.sv-service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0 0 8px;
}
.sv-service-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 14px;
}
.sv-service-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--rd-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sv-service-card-link i {
    transition: transform 0.2s;
}
.sv-service-card:hover .sv-service-card-link i {
    transform: translateX(4px);
}
@media (max-width: 991px) {
    .sv-service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .sv-service-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ct-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
@media (max-width: 991px) {
    .ct-layout { grid-template-columns: 1fr; }
}

/* Contact form card */
.ct-form-card {
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    padding: 32px;
    box-shadow: var(--rd-shadow);
}
.ct-form-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0 0 6px;
}
.ct-form-card .ct-form-sub {
    font-size: 14px;
    color: var(--rd-text-light);
    margin: 0 0 24px;
    line-height: 1.6;
}
.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 575px) {
    .ct-form-row { grid-template-columns: 1fr; }
}
.ct-field {
    margin-bottom: 16px;
}
.ct-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--rd-dark);
    margin-bottom: 5px;
}
.ct-field label .ct-required {
    color: #d32f2f;
    margin-right: 2px;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    font-family: var(--rd-font);
    font-size: 14px;
    color: var(--rd-dark);
    background: #fff;
    transition: border-color 0.2s;
}
.ct-field select {
    appearance: auto;
    -webkit-appearance: menulist;
    cursor: pointer;
    background-color: #fff;
    padding-right: 32px;
    height: auto;
    min-height: 42px;
}
.ct-field .ct-name-row select {
    min-height: 42px;
    padding: 10px 8px;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    outline: none;
    border-color: var(--rd-gold);
    box-shadow: 0 0 0 3px rgba(169,119,8,0.08);
}
.ct-field textarea {
    resize: vertical;
    min-height: 120px;
}
.ct-field .ct-name-row {
    display: flex;
    gap: 10px;
}
.ct-field .ct-name-row select {
    width: 80px;
    flex-shrink: 0;
}
.ct-field .ct-name-row input {
    flex: 1;
}
.ct-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--rd-gold);
    color: #fff;
    border: none;
    border-radius: var(--rd-radius-sm);
    font-family: var(--rd-font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
}
.ct-submit:hover {
    background: var(--rd-gold-hover);
    transform: translateY(-1px);
}

/* Contact info sidebar */
.ct-info-sidebar {}
.ct-info-card {
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    padding: 24px;
    margin-bottom: 16px;
    transition: var(--rd-transition);
}
.ct-info-card:hover {
    border-color: var(--rd-gold);
    box-shadow: var(--rd-shadow);
}
.ct-info-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--rd-dark), #3a2f3a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rd-gold);
    font-size: 20px;
    margin-bottom: 14px;
}
.ct-info-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0 0 8px;
}
.ct-info-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}
.ct-info-card a {
    color: var(--rd-gold);
    text-decoration: none;
    font-weight: 600;
}
.ct-info-card a:hover { text-decoration: underline; }
.ct-hours {
    background: var(--rd-dark);
    color: var(--rd-white);
    border-color: var(--rd-dark);
}
.ct-hours .ct-info-card-icon {
    background: rgba(255,255,255,0.1);
}
.ct-hours h3 { color: var(--rd-white); }
.ct-hours p { color: rgba(255,255,255,0.7); }

/* Toastr overrides for V2 design */
.toast-top-full-width { top: 80px; }
#toast-container > .toast {
    background-color: var(--rd-dark) !important;
    border-radius: var(--rd-radius) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
    padding: 18px 20px 18px 52px !important;
    font-family: var(--rd-font) !important;
    opacity: 1 !important;
    max-width: 700px;
    margin: 0 auto 8px;
}
#toast-container > .toast-success {
    background-color: #1a3a1a !important;
    border-left: 4px solid #2ecc71 !important;
}
#toast-container > .toast-success::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #2ecc71;
}
#toast-container > .toast-warning {
    background-color: #3a2e0a !important;
    border-left: 4px solid var(--rd-gold) !important;
}
#toast-container > .toast-error {
    background-color: #3a1a1a !important;
    border-left: 4px solid #e74c3c !important;
}
#toast-container > .toast-info {
    background-color: #1a2a3a !important;
    border-left: 4px solid #3498db !important;
}
#toast-container > .toast .toast-title {
    font-weight: 700 !important;
    font-size: 15px !important;
}
#toast-container > .toast .toast-message {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(255,255,255,0.9) !important;
}
#toast-container > .toast .toast-close-button {
    color: rgba(255,255,255,0.5) !important;
    font-size: 18px !important;
    top: 4px;
    right: 4px;
}
#toast-container > .toast .toast-close-button:hover {
    color: #fff !important;
}

/* Success confirmation card */
.ct-success-card {
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    padding: 48px 36px;
    text-align: center;
    box-shadow: var(--rd-shadow);
}
.ct-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ct-success-icon i {
    font-size: 40px;
    color: #2e7d32;
}
.ct-success-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--rd-dark);
    margin: 0 0 16px;
}
.ct-success-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 520px;
    margin: 0 auto 28px;
}
.ct-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.ct-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--rd-gold);
    color: #fff;
    border: none;
    border-radius: var(--rd-radius-sm);
    font-family: var(--rd-font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.ct-success-btn:hover {
    background: var(--rd-gold-hover);
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}
.ct-success-btn--outline {
    background: transparent;
    color: var(--rd-dark);
    border: 1px solid var(--rd-border);
}
.ct-success-btn--outline:hover {
    background: var(--rd-light);
    border-color: var(--rd-gold);
    color: var(--rd-dark);
}

/* Honeypot - invisible */
.contact-fax-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    z-index: -1;
}

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.tm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
@media (max-width: 768px) {
    .tm-grid { grid-template-columns: 1fr; }
}
.tm-card {
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    padding: 24px;
    position: relative;
    transition: var(--rd-transition);
}
.tm-card:hover {
    border-color: var(--rd-gold);
    box-shadow: var(--rd-shadow);
    transform: translateY(-2px);
}
.tm-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    color: var(--rd-gold);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}
.tm-card-body {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
}
.tm-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--rd-border);
    padding-top: 12px;
}
.tm-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--rd-dark);
}
.tm-card-closing {
    font-size: 12px;
    color: var(--rd-text-light);
    font-style: italic;
}
.tm-card-date {
    font-size: 12px;
    color: var(--rd-text-light);
}
.tm-stars {
    color: var(--rd-gold);
    font-size: 13px;
    margin-bottom: 10px;
}

/* ============================================================
   ABOUT / FAQ CMS CONTENT WRAPPER
   ============================================================ */
.cms-content-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--rd-white);
    border-radius: var(--rd-radius);
    border: 1px solid var(--rd-border);
    overflow: hidden;
}
.cms-content-wrap h1,
.cms-content-wrap h2,
.cms-content-wrap h3 {
    color: var(--rd-dark);
    font-family: var(--rd-font);
}
.cms-content-wrap p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}
.cms-content-wrap a {
    color: var(--rd-gold);
}
.cms-content-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: var(--rd-radius-sm);
}
/* Override Bootstrap grid inside CMS content so it doesn't break layout */
.cms-content-wrap .row {
    margin-left: 0;
    margin-right: 0;
}
.cms-content-wrap [class*="col-"] {
    width: 100%;
    float: none;
    padding-left: 0;
    padding-right: 0;
}
/* Force all CMS text to be readable (override inline white/light colors from old layout) */
.cms-content-wrap,
.cms-content-wrap * {
    color: #444 !important;
}
.cms-content-wrap h1,
.cms-content-wrap h2,
.cms-content-wrap h3,
.cms-content-wrap h4 {
    color: var(--rd-dark) !important;
}
.cms-content-wrap a {
    color: var(--rd-gold) !important;
}

/* ============================================================
   SMALL PHONE SAFETY NET (375px and below)
   ============================================================ */
@media (max-width: 375px) {
    /* Header */
    .gh-inner { padding: 0 10px; }
    .gh-logo img { height: 34px; }

    /* Hero */
    .hero-section { padding-top: 76px; min-height: auto; }
    .hero-content .hero-title { font-size: 20px; }

    /* Rate div */
    .rd-body { padding: 14px; }
    .rd-field input, .rd-field select { font-size: 14px; padding: 10px 12px; }

    /* Fleet strip */
    .fleet-card { width: 140px; }
    .fleet-strip-header { padding: 0 12px; }

    /* Sections */
    .about-section, .services-section, .routes-section,
    .testimonials-section, .faq-section, .cta-banner { padding: 40px 12px; }
    .about-text h2, .section-header h2 { font-size: 22px; }
    .cta-banner h2 { font-size: 22px; }

    /* Footer */
    .site-footer { padding: 30px 12px 0; }
    .footer-bottom-links { gap: 12px; }
}
