/* ============================================================
   Booking Melbourne Taxi — main.css
   ============================================================ */

/* ─── CSS Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ─── CSS Variables ──────────────────────────────────────────── */
:root {
    --gold:        #D4890A;
    --gold-btn:    #F5A623;
    --yellow:      #FFC107;
    --dark:        #0A0D14;
    --dark2:       #0F1320;
    --bg:          #F8F9FC;
    --text:        #0F1320;
    --text-muted:  #6B748A;
    --white:       #FFFFFF;
    --card-border: rgba(0,0,0,0.07);

    --radius-card: 14px;
    --radius-sm:   8px;
    --radius-btn:  50px;
    --transition:  0.25s ease;

    --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
}

/* ─── Scroll Progress Bar ────────────────────────────────────── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gold);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ─── Utility Classes ────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
}

.section-pad {
    padding-block: 80px;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gold-btn);
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-btn);
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: transparent;
    color: var(--gold-btn);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--gold-btn);
    border-radius: var(--radius-btn);
    transition: var(--transition);
    white-space: nowrap;
}
.btn-secondary:hover {
    background: var(--gold-btn);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,0.25);
}
.btn-secondary.light {
    color: var(--white);
    border-color: var(--white);
}
.btn-secondary.light:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: #25D366;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-btn);
    transition: var(--transition);
    white-space: nowrap;
}
.btn-whatsapp:hover {
    background: #1fb558;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ─── Section Headings ───────────────────────────────────────── */
.section-label {
    display: inline-block;
    padding: 5px 16px;
    background: var(--gold-btn);
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-btn);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: inherit;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}
.section-subtitle.center { margin-inline: auto; }

.section-header {
    margin-bottom: 56px;
}
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-inline: auto; }

/* Dark section heading overrides */
.bg-dark .section-title,
.bg-dark2 .section-title { color: var(--white); }
.bg-dark .section-subtitle,
.bg-dark2 .section-subtitle { color: rgba(255,255,255,0.65); }
.bg-dark .section-label,
.bg-dark2 .section-label { background: var(--gold-btn); color: var(--dark); }

/* ─── Navigation ─────────────────────────────────────────────── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

/* Default: transparent on hero, glassmorphism */
#site-header .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 32px;
}

#site-header .nav-logo img {
    height: 66px;
    width: auto;
    padding-block: 4px;
}

/* Glassmorphism state (always) */
#site-header {
    background: rgba(10, 13, 20, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Scrolled: deeper bg + shadow */
#site-header.scrolled {
    background: rgba(10, 13, 20, 0.92);
    box-shadow: 0 4px 32px rgba(0,0,0,0.28);
}

/* Nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    position: relative;
    padding: 8px 14px;
    color: rgba(255,255,255,0.85);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: var(--white);
}

.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold-btn);
    border-radius: 2px;
}

/* Dropdown menus */
.nav-menu .menu-item-has-children {
    position: relative;
}
.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-card);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}
.nav-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-menu .sub-menu a {
    display: block;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}
.nav-menu .sub-menu a::after { display: none; }
.nav-menu .sub-menu a:hover { background: rgba(255,255,255,0.06); color: var(--gold-btn); }

/* Dropdown caret */
.nav-caret {
    display: inline-flex;
    align-items: center;
    margin-left: 3px;
    vertical-align: middle;
    opacity: 0.7;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-menu .menu-item-has-children:hover .nav-caret {
    transform: rotate(180deg);
    opacity: 1;
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Shared nav button base */
.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--radius-btn);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
    transition: var(--transition);
    line-height: 1;
}

/* Call — ghost/outline white */
.nav-btn-call {
    color: rgba(255,255,255,0.88);
    border: 1.5px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
}
.nav-btn-call:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

/* Get a Quote — gold outline */
.nav-btn-quote {
    color: var(--gold-btn);
    border: 1.5px solid rgba(245,166,35,0.5);
    background: rgba(245,166,35,0.06);
}
.nav-btn-quote:hover {
    background: rgba(245,166,35,0.14);
    border-color: var(--gold-btn);
    color: var(--gold-btn);
}

/* Book Now — gold filled */
.nav-btn-book {
    background: var(--gold-btn);
    color: var(--dark);
    border: 1.5px solid var(--gold-btn);
}
.nav-btn-book:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-hamburger:hover { background: rgba(255,255,255,0.14); }
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
#mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: var(--dark2);
    z-index: 999;
    padding: 100px 0 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
}
#mobile-menu.open { transform: translateX(0); }

#mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
#mobile-menu-overlay.open { opacity: 1; visibility: visible; }

#mobile-menu .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    padding: 0 12px;
}
#mobile-menu .mobile-nav-links a {
    display: block;
    padding: 13px 16px;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
#mobile-menu .mobile-nav-links a:hover,
#mobile-menu .mobile-nav-links .current-menu-item > a {
    background: rgba(255,255,255,0.07);
    color: var(--gold-btn);
}
#mobile-menu .mobile-sub-menu { padding-left: 16px; }
#mobile-menu .mobile-sub-menu a { font-size: 0.95rem; padding: 10px 16px; }

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-cta-quote,
.mobile-menu-cta-book {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: var(--radius-btn);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.mobile-menu-cta-quote {
    color: var(--gold-btn);
    border: 1.5px solid rgba(245,166,35,0.5);
    background: rgba(245,166,35,0.06);
}
.mobile-menu-cta-quote:hover {
    background: rgba(245,166,35,0.14);
    border-color: var(--gold-btn);
}
.mobile-menu-cta-book {
    background: var(--gold-btn);
    color: var(--dark);
    border: 1.5px solid var(--gold-btn);
}
.mobile-menu-cta-book:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}


/* ─── Hero Section ───────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,13,20,0.4) 0%,
        rgba(10,13,20,0.2) 40%,
        rgba(10,13,20,0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: var(--radius-btn);
    color: var(--gold-btn);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-eyebrow span { display: inline-block; width: 6px; height: 6px; background: var(--gold-btn); border-radius: 50%; }

.hero-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
}
.hero-heading em {
    font-style: normal;
    color: var(--gold-btn);
}

.hero-subtext {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
}
.hero-trust-item svg { color: var(--gold-btn); flex-shrink: 0; }

/* Booking widget below hero heading */
.hero-booking-widget {
    margin-top: 40px;
}

/* ─── Booking Widget ─────────────────────────────────────────── */
.booking-widget {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-card);
    padding: 28px;
    max-width: 900px;
}

.booking-widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.booking-widget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.booking-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}
.booking-field input::placeholder { color: rgba(255,255,255,0.35); }
.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--gold-btn);
    background: rgba(255,255,255,0.1);
}
.booking-field select option { background: var(--dark2); color: var(--white); }

/* ─── Service Cards ──────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 28px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-btn);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212,137,10,0.15);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(245,166,35,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.service-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.service-card-desc {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.service-card-link:hover { gap: 10px; }

/* ─── Fleet Cards ────────────────────────────────────────────── */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

/* ─── Fleet Carousel ─────────────────────────────────────────── */
.fleet-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fleet-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.fleet-carousel-track::-webkit-scrollbar {
    display: none;
}

.fleet-carousel-item {
    flex: 0 0 calc(25% - 15px);
    min-width: 260px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.fleet-carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--card-border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}
.fleet-carousel-btn:hover {
    background: var(--gold-btn);
    border-color: var(--gold-btn);
    color: var(--dark);
    box-shadow: 0 4px 16px rgba(245,166,35,0.3);
}
.fleet-carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.fleet-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.fleet-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.fleet-carousel-dot.active {
    background: var(--gold-btn);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .fleet-carousel-item { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 640px) {
    .fleet-carousel-item { flex: 0 0 calc(100% - 0px); min-width: 0; }
    .fleet-carousel-btn { display: none; }
    .fleet-carousel-wrap { gap: 0; }
}

.fleet-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: var(--transition);
}
.fleet-card:hover {
    transform: scale(1.025);
    box-shadow: var(--shadow-md);
}

.fleet-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.fleet-card-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
}

.fleet-card-body {
    padding: 22px;
}

.fleet-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.fleet-card-type {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.fleet-card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.fleet-spec svg { color: var(--gold); flex-shrink: 0; }
.fleet-spec strong { color: var(--text); font-weight: 600; }

.fleet-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 14px;
}
.fleet-card-price .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}
.fleet-card-price .unit {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ─── How It Works (Steps) ───────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(to right, var(--gold-btn), rgba(245,166,35,0.2));
    z-index: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    background: var(--gold-btn);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 22px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 0 8px rgba(245,166,35,0.12);
    transition: var(--transition);
}
.step-item:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(245,166,35,0.16);
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ─── Reviews Marquee ────────────────────────────────────────── */
.reviews-section { overflow: hidden; }

.reviews-marquee-wrap {
    position: relative;
    overflow: hidden;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: reviews-scroll 36s linear infinite;
    padding: 8px 0 16px;
}
.reviews-marquee-wrap:hover .reviews-marquee-track {
    animation-play-state: paused;
}

@keyframes reviews-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card-marquee {
    width: 320px;
    flex-shrink: 0;
}

/* ─── Review Cards ───────────────────────────────────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 28px;
    transition: var(--transition);
    position: relative;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-quote-icon {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 3.5rem;
    font-family: Georgia, serif;
    color: rgba(245,166,35,0.12);
    line-height: 1;
    user-select: none;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}
.review-stars svg { color: var(--yellow); }

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 22px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-btn), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }

.review-author-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}
.review-author-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── CTA Section ────────────────────────────────────────────── */
.cta-section {
    position: relative;
    background: var(--yellow);
    overflow: hidden;
}

.cta-section .cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text .cta-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.cta-text .cta-subtext {
    color: rgba(10,13,20,.75);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* Button overrides on yellow background */
.cta-section .btn-primary {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(10,13,20,.2);
}
.cta-section .btn-primary:hover {
    background: var(--dark2);
    box-shadow: 0 8px 28px rgba(10,13,20,.32);
    transform: translateY(-2px);
}
.cta-section .btn-secondary.light {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    box-shadow: 0 4px 14px rgba(10,13,20,.12);
}
.cta-section .btn-secondary.light:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    box-shadow: 0 8px 24px rgba(10,13,20,.25);
    transform: translateY(-2px);
}
.cta-section .btn-whatsapp {
    box-shadow: 0 4px 14px rgba(10,13,20,.15);
}
.cta-section .btn-whatsapp:hover {
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* ─── Stats Strip ────────────────────────────────────────────── */
.stats-strip {
    background: var(--dark2);
    padding-block: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gold-btn);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* ─── Why Choose Us ──────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-item {
    text-align: center;
    padding: 28px 20px;
}

.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(245,166,35,0.1);
    border: 2px solid rgba(245,166,35,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--gold-btn);
    transition: var(--transition);
}
.why-item:hover .why-icon {
    background: var(--gold-btn);
    color: var(--dark);
    border-color: var(--gold-btn);
    transform: scale(1.1);
}

.why-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 8px;
}
.why-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ─── Service Areas ──────────────────────────────────────────── */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.area-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.area-chip:hover {
    border-color: var(--gold-btn);
    color: var(--gold);
    background: rgba(245,166,35,0.04);
    transform: translateY(-2px);
}
.area-chip svg { color: var(--gold); flex-shrink: 0; }

/* ─── Blog / Post Cards ──────────────────────────────────────── */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.post-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: var(--transition);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.post-card-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.post-card-body { padding: 22px; }

.post-card-cat {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(245,166,35,0.1);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-btn);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.post-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
    border-top: 1px solid var(--card-border);
    padding-top: 14px;
}

/* ─── Footer ─────────────────────────────────────────────────── */
#site-footer {
    background: var(--dark2);
    padding-top: 72px;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
    height: 126px;
    width: auto;
    margin-bottom: 18px;
}

.footer-tagline {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--gold-btn);
    border-color: var(--gold-btn);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-btn);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--gold-btn); padding-left: 4px; }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
}
.footer-contact-item svg {
    color: var(--gold-btn);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold-btn); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 22px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}
.footer-legal-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    transition: var(--transition);
}
.footer-legal-links a:hover { color: var(--gold-btn); }

/* ─── WhatsApp Floating Button ───────────────────────────────── */
#whatsapp-float {
    display: none;
}

.whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: var(--transition);
    position: relative;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: wa-pulse 2.4s ease-out infinite;
}
.whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: wa-pulse 2.4s ease-out 0.8s infinite;
}

@keyframes wa-pulse {
    0%   { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.7); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark2);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--dark2);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ─── Back to Top Button (hidden — replaced by mobile bottom nav) */
#back-to-top { display: none; }


/* ─── Mobile Bottom Navigation ───────────────────────────────── */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: var(--dark2);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bottom-nav .mbn-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.02em;
    transition: var(--transition);
    text-decoration: none;
}
.mobile-bottom-nav .mbn-btn svg { flex-shrink: 0; }
.mobile-bottom-nav .mbn-btn:hover,
.mobile-bottom-nav .mbn-btn:active { color: var(--white); }

.mobile-bottom-nav .mbn-book  { color: var(--gold-btn); }
.mobile-bottom-nav .mbn-book:hover { color: var(--yellow); }
.mobile-bottom-nav .mbn-call  { border-left: 1px solid rgba(255,255,255,0.08); border-right: 1px solid rgba(255,255,255,0.08); }
.mobile-bottom-nav .mbn-whatsapp { color: #25D366; }
.mobile-bottom-nav .mbn-whatsapp:hover { color: #1fb558; }

/* ─── Background helpers ─────────────────────────────────────── */
.bg-dark  { background: var(--dark); }
.bg-dark2 { background: var(--dark2); }
.bg-white { background: var(--white); }
.bg-light { background: var(--bg); }

/* ─── Dividers / Decorations ─────────────────────────────────── */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}
.wave-divider svg { display: block; width: 100%; }

/* ─── Preloader ──────────────────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(245,166,35,0.2);
    border-top-color: var(--gold-btn);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Animations ─────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
    opacity: 0;
    transition: opacity 0.55s ease;
}
.fade-in.visible { opacity: 1; }

/* ─── Form Elements (global) ─────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--gold-btn);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
.form-control::placeholder { color: rgba(107,116,138,0.6); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ─── Alert / Notice ─────────────────────────────────────────── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 16px;
}
.alert-success { background: rgba(0,163,42,0.1); color: #00a32a; border: 1px solid rgba(0,163,42,0.2); }
.alert-error   { background: rgba(214,54,56,0.1); color: #d63638; border: 1px solid rgba(214,54,56,0.2); }
.alert-info    { background: rgba(245,166,35,0.1); color: var(--gold); border: 1px solid rgba(245,166,35,0.2); }

/* ─── Breadcrumbs ────────────────────────────────────────────── */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--gold-btn); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--gold-btn); }

/* ─── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
    background: var(--dark2);
    padding: 140px 0 64px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold-btn), transparent);
}
.page-hero .page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero .page-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
}

/* ─── Responsive: 1024px (tablet) ───────────────────────────── */
@media (max-width: 1024px) {
    /* Nav: hide desktop items, show hamburger */
    .nav-menu,
    .nav-btn { display: none; }
    .nav-hamburger { display: flex; }

    /* Mobile bottom nav: show on tablet/mobile */
    .mobile-bottom-nav {
        display: flex;
        flex-direction: row;
    }

    /* Body padding so content isn't hidden under mobile nav */
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }

    /* WhatsApp float: hidden on mobile — bottom nav has WhatsApp */
    #whatsapp-float { display: none; }

    /* Hero: release min-height so stacked columns don't get clipped */
    #hero {
        min-height: auto;
        overflow: visible;
        align-items: flex-start;
    }

    /* Reduce section header spacing */
    .section-header { margin-bottom: 40px; }

    /* Why grid: 3 cols → 2 cols at tablet */
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Footer: 4-col → 2-col at tablet */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ─── Responsive: 768px (mobile) ────────────────────────────── */
@media (max-width: 768px) {
    .container { padding-inline: 20px; }
    .section-pad { padding-block: 56px; }

    /* Logo: prevent it from being squashed on small screens */
    #site-header .nav-logo img { height: 71px; }
    #site-header .nav-inner { height: 84px; }
    .section-header { margin-bottom: 32px; }
    .section-subtitle { font-size: 0.95rem; }

    /* Hero */
    .hero-heading { font-size: clamp(1.9rem, 7vw, 2.8rem); }
    .hero-subtext  { font-size: 1rem; margin-bottom: 24px; }
    .hero-actions  { gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
    .hero-trust    { gap: 12px; flex-wrap: wrap; }
    .hero-trust-item { font-size: 0.82rem; }
    .hero-trust-airports { display: none; }
    .hero-eyebrow  { font-size: 0.75rem; padding: 5px 12px; margin-bottom: 14px; }

    /* Booking widget grid (hero bottom widget) */
    .booking-widget-grid { grid-template-columns: 1fr; }

    /* Steps: 4-col → 2-col */
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
    .steps-grid::before { display: none; }
    .step-number { width: 56px; height: 56px; font-size: 1.2rem; }

    /* Stats: 4-col → 2-col */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

    /* Service / fleet / reviews: single column */
    .services-grid { grid-template-columns: 1fr; }
    .fleet-grid    { grid-template-columns: 1fr 1fr; gap: 16px; }
    .reviews-grid  { grid-template-columns: 1fr; }

    /* Why choose: 2-col at mobile */
    .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-item { padding: 20px 12px; }

    /* CTA section */
    .cta-section .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; flex-wrap: wrap; gap: 10px; }
    .cta-text .cta-heading { font-size: clamp(1.4rem, 5vw, 2rem); }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .footer-legal-links { justify-content: center; }
    #site-footer { padding-top: 48px; }

    /* Buttons: full width where stacked */
    .btn-whatsapp { white-space: normal; text-align: center; }
}

/* ─── Responsive: 480px (small mobile) ──────────────────────── */
@media (max-width: 480px) {
    .container { padding-inline: 16px; }
    .section-pad { padding-block: 44px; }
    .section-header { margin-bottom: 24px; }

    /* Hero */
    .hero-heading  { font-size: clamp(1.7rem, 8.5vw, 2.2rem); }
    .hero-subtext  { font-size: 0.95rem; margin-bottom: 20px; }
    .hero-actions  { flex-direction: column; gap: 10px; margin-bottom: 20px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { width: 100%; justify-content: center; }
    .hero-trust    { gap: 10px; }

    /* Steps: 2-col → 1-col */
    .steps-grid { grid-template-columns: 1fr; gap: 28px; }

    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-number { font-size: 1.8rem; }

    /* Fleet: 2-col → 1-col on very small */
    .fleet-grid { grid-template-columns: 1fr; }

    /* Why choose: 2-col → 1-col */
    .why-grid { grid-template-columns: 1fr; gap: 12px; }
    .why-item { padding: 20px 16px; text-align: left; display: flex; gap: 16px; align-items: flex-start; }
    .why-icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }
    .why-title { text-align: left; }
    .why-desc  { text-align: left; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-tagline { max-width: 100%; }

    /* CTA buttons: stack */
    .cta-actions { flex-direction: column; }
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary,
    .cta-actions .btn-whatsapp { width: 100%; justify-content: center; }

    /* Global button full-width only in specific containers */
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { width: 100%; }

    /* Booking widget */
    .booking-widget { padding: 18px; }
    .home-widget { padding: 16px !important; }


    /* Areas grid */
    .areas-grid { grid-template-columns: 1fr 1fr; }

    /* Section label */
    .section-label { font-size: 0.68rem; }
}

/* ─── Thank You Page ─────────────────────────────────────────── */
.thankyou-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.thankyou-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    text-align: center;
}

.thankyou-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(212,137,10,.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.thankyou-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .75rem;
}

.thankyou-ref {
    display: inline-block;
    background: rgba(212,137,10,.1);
    color: var(--gold);
    font-weight: 700;
    font-size: .9rem;
    padding: .35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.thankyou-msg {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}
.thankyou-msg strong { color: var(--dark); }

.thankyou-details {
    background: var(--bg);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: left;
    margin-bottom: 1.75rem;
}

.thankyou-details-title {
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: .75rem;
}

.thankyou-details-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.thankyou-details-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-size: .95rem;
}
.thankyou-details-list li:last-child { border-bottom: none; padding-bottom: 0; }

.tyd-label { color: var(--text-muted); flex-shrink: 0; }
.tyd-value { font-weight: 600; color: var(--dark); text-align: right; }

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sidebar */
.thankyou-side { display: flex; flex-direction: column; gap: 1.25rem; }

.thankyou-side-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.thankyou-steps {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    counter-reset: none;
}

.thankyou-steps li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .9rem;
    color: var(--text-muted);
}

.ts-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thankyou-side-contact p {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.sidebar-contact-btn {
    display: flex;
    align-items: center;
    gap: .6rem;
    width: 100%;
    padding: .75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    background: var(--dark);
    color: #fff;
    margin-bottom: .6rem;
    transition: background .2s;
}
.sidebar-contact-btn:last-child { margin-bottom: 0; }
.sidebar-contact-btn:hover { background: var(--dark2); }
.sidebar-whatsapp { background: #25D366; }
.sidebar-whatsapp:hover { background: #1ebe5c; }

/* Responsive */
@media (max-width: 768px) {
    .thankyou-wrap { grid-template-columns: 1fr; }
    .thankyou-card { padding: 1.75rem 1.25rem; }
    .thankyou-heading { font-size: 1.4rem; }
    .thankyou-actions { flex-direction: column; }
    .thankyou-actions .btn-primary,
    .thankyou-actions .btn-secondary { width: 100%; text-align: center; justify-content: center; }
}

/* ── Specialty Services Section (front-page.php) ──────────────────────── */

/* Coloured top accent on scheme cards — everything else inherits .service-card */
.scheme-card { border-top: 4px solid var(--sc-color, var(--gold-btn)); }

/* Footer specialty divider */
.footer-services-divider {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin: 16px 0 6px;
    border-top: 1px solid rgba(255,255,255,.18);
    padding-top: 14px;
}
