/* ==========================================================================
   SLS Tours and Travels — theme stylesheet
   Dark · White · Yellow
   Written from scratch for slstoursandtravels.com (no Bootstrap, no jQuery).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
    /* Surfaces — dark */
    --ink: #08080B;
    --ink-soft: #0E0E13;
    --surface: #131319;
    --surface-2: #1A1A22;
    --surface-3: #22222C;

    /* Ink on light */
    --white: #FFFFFF;
    --muted: #9C9CAC;
    --muted-2: #6E6E7E;

    /* Brand yellow */
    --yellow: #FFC61A;
    --yellow-bright: #FFD84D;
    --yellow-deep: #E5A800;
    --yellow-glow: rgba(255, 198, 26, .28);

    /* Lines */
    --line: rgba(255, 255, 255, .09);
    --line-strong: rgba(255, 255, 255, .16);

    /* Type */
    --font-display: "Sora", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

    /* Shape */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-pill: 999px;

    /* Motion */
    --ease: cubic-bezier(.22, .68, .28, 1);

    /* Rhythm */
    --gutter: 24px;
    --shell: 1240px;
    --section-y: 112px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background-color: var(--ink);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--white);
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s var(--ease);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

::selection {
    background: var(--yellow);
    color: var(--ink);
}

:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-3);
    border-radius: var(--r-pill);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--yellow-deep);
}

/* --------------------------------------------------------------------------
   3. Layout utilities
   -------------------------------------------------------------------------- */
.shell {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    position: relative;
    padding-block: var(--section-y);
}

.section--tight {
    padding-block: 84px;
}

.section--flush-top {
    padding-top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Section heading block */
.sec-head {
    max-width: 720px;
    margin-bottom: 56px;
}

.sec-head--center {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--yellow);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    line-height: 1;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--yellow);
    flex: none;
}

.sec-head--center .eyebrow::after {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--yellow);
    flex: none;
}

.sec-title {
    font-size: clamp(30px, 4.2vw, 50px);
    font-weight: 800;
    line-height: 1.1;
}

.sec-text {
    margin-top: 20px;
    color: var(--muted);
    font-size: 16.5px;
}

.hl {
    color: var(--yellow);
}

/* Yellow marker behind a word */
.mark {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.mark::after {
    content: "";
    position: absolute;
    left: -.08em;
    right: -.08em;
    bottom: .02em;
    height: .18em;
    background: var(--yellow);
    z-index: -1;
    transform: skewX(-12deg);
}

.mark.on-yellow::after {
    background: var(--ink);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .3s var(--ease), background-color .3s var(--ease),
        color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.btn i {
    font-size: 14px;
}

.btn--primary {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 12px 30px -10px var(--yellow-glow);
}

.btn--primary:hover {
    background: var(--yellow-bright);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -12px rgba(255, 198, 26, .5);
}

.btn--ghost {
    background: transparent;
    border-color: var(--line-strong);
    color: var(--white);
}

.btn--ghost:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-3px);
}

.btn--ink {
    background: var(--ink);
    color: var(--white);
}

.btn--ink:hover {
    background: var(--surface-2);
    transform: translateY(-3px);
}

.btn--block {
    width: 100%;
}

.btn--lg {
    padding: 18px 38px;
    font-size: 16px;
}

/* --------------------------------------------------------------------------
   5. Reveal on scroll
   -------------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay: var(--delay, 0ms);
}

[data-reveal].is-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   6. Top bar
   -------------------------------------------------------------------------- */
.topbar {
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 46px;
    padding-block: 6px;
}

.topbar__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 26px;
    color: var(--muted);
}

.topbar__list li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.topbar__list i {
    color: var(--yellow);
    font-size: 13px;
}

.topbar__list a:hover {
    color: var(--yellow);
}

.topbar__note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    font-weight: 600;
    font-size: 13.5px;
}

.topbar__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 0 var(--yellow-glow);
    animation: pulse 2.4s infinite;
    flex: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 198, 26, .6); }
    70% { box-shadow: 0 0 0 12px rgba(255, 198, 26, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 198, 26, 0); }
}

/* --------------------------------------------------------------------------
   7. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(8, 8, 11, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-stuck {
    background: rgba(8, 8, 11, .96);
    box-shadow: 0 14px 40px -22px rgba(0, 0, 0, .9);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

/* Wordmark */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex: none;
}

/* The emblem is gold on transparent, so it needs no plate behind it */
.brand__logo {
    width: auto;
    height: 58px;
    flex: none;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand__name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--white);
}

.brand__tag {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--yellow);
}

/* Desktop menu */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-inline: auto;
}

.nav__menu a {
    position: relative;
    display: block;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    border-radius: var(--r-pill);
}

.nav__menu a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 3px;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}

.nav__menu a:hover,
.nav__menu a.is-active {
    color: var(--white);
}

.nav__menu a:hover::after,
.nav__menu a.is-active::after {
    transform: scaleX(1);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: none;
}

.nav__call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.nav__call-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    color: var(--yellow);
    font-size: 15px;
    transition: border-color .3s var(--ease), background-color .3s var(--ease);
}

.nav__call:hover .nav__call-icon {
    border-color: var(--yellow);
    background: rgba(255, 198, 26, .1);
}

.nav__call-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.nav__call-meta span {
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.nav__call-meta strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.nav__burger {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    background: transparent;
    color: var(--white);
    font-size: 17px;
    cursor: pointer;
}

.nav__burger:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* Mobile drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
    visibility: hidden;
    pointer-events: none;
}

.drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.drawer__scrim {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 6, .72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.drawer.is-open .drawer__scrim {
    opacity: 1;
}

.drawer__panel {
    position: absolute;
    inset-block: 0;
    right: 0;
    width: min(360px, 88vw);
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 26px 26px 40px;
    background: var(--ink-soft);
    border-left: 1px solid var(--line);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
}

.drawer.is-open .drawer__panel {
    transform: none;
}

.drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer__close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: transparent;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
}

.drawer__close:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.drawer__menu {
    display: flex;
    flex-direction: column;
}

.drawer__menu a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}

.drawer__menu a:hover {
    color: var(--yellow);
    padding-left: 12px;
}

.drawer__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--muted);
    font-size: 15px;
}

.drawer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.drawer__contact i {
    margin-top: 6px;
    color: var(--yellow);
    font-size: 14px;
}

.drawer__social {
    display: flex;
    gap: 10px;
}

.drawer__social a,
.social-row a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    transition: all .3s var(--ease);
}

.drawer__social a:hover,
.social-row a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    overflow: hidden;
    padding-block: 96px 120px;
    background:
        radial-gradient(1000px 620px at 78% 34%, rgba(255, 198, 26, .16), transparent 62%),
        radial-gradient(700px 500px at 8% 8%, rgba(255, 255, 255, .05), transparent 60%),
        var(--ink);
}

/* Faint road-lane texture */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(115deg,
            rgba(255, 255, 255, .028) 0 1px,
            transparent 1px 84px);
    pointer-events: none;
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    align-items: center;
    gap: 60px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px 9px 10px;
    margin-bottom: 26px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .03);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
}

.hero__badge b {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 11px;
    border-radius: var(--r-pill);
    background: var(--yellow);
    color: var(--ink);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero__title {
    font-size: clamp(38px, 5.6vw, 68px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.03em;
}

.hero__text {
    max-width: 54ch;
    margin-top: 24px;
    color: var(--muted);
    font-size: 17px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 18px;
    margin-top: 52px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.hero__stat > strong {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    color: var(--yellow);
}

.hero__stat > span {
    display: block;
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--muted);
}

/* Hero visual */
.hero__visual {
    position: relative;
}

.hero__plate {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    background: linear-gradient(160deg, rgba(255, 198, 26, .1), rgba(255, 255, 255, .02));
    box-shadow: 0 50px 90px -50px rgba(0, 0, 0, .95);
}

.hero__plate img {
    width: 100%;
    animation: float-y 6s ease-in-out infinite;
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero__glow {
    position: absolute;
    z-index: -1;
    inset: 12% -6% -12% -6%;
    background: radial-gradient(closest-side, var(--yellow-glow), transparent 72%);
    filter: blur(28px);
}

.hero__chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--r-md);
    border: 1px solid var(--line-strong);
    background: rgba(19, 19, 25, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 26px 50px -28px rgba(0, 0, 0, .9);
}

.hero__chip i {
    color: var(--yellow);
    font-size: 18px;
}

.hero__chip strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.hero__chip span {
    display: block;
    font-size: 12.5px;
    color: var(--muted);
}

.hero__chip--rating {
    top: 26px;
    left: -26px;
}

.hero__chip--trips {
    bottom: 26px;
    right: -18px;
}

/* --------------------------------------------------------------------------
   9. Marquee strip
   -------------------------------------------------------------------------- */
.strip {
    border-block: 1px solid var(--line);
    background: var(--yellow);
    color: var(--ink);
    overflow: hidden;
}

.strip__track {
    display: flex;
    width: max-content;
    animation: marquee 38s linear infinite;
}

.strip:hover .strip__track {
    animation-play-state: paused;
}

.strip__group {
    display: flex;
    align-items: center;
    flex: none;
}

.strip__group li {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 17px 30px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
}

.strip__group li::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink);
    opacity: .55;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   10. Booking form
   -------------------------------------------------------------------------- */
.booking {
    background: var(--ink);
}

.booking__card {
    position: relative;
    margin-top: -64px;
    padding: 40px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-lg);
    background:
        linear-gradient(180deg, rgba(255, 198, 26, .07), transparent 42%),
        var(--surface);
    box-shadow: 0 46px 90px -50px rgba(0, 0, 0, 1);
}

.booking__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.booking__head h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
}

.booking__head p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 15px;
}

.booking__tabs {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    background: var(--ink-soft);
}

.booking__tab {
    padding: 11px 24px;
    border: 0;
    border-radius: var(--r-pill);
    background: transparent;
    color: var(--muted);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s var(--ease);
}

.booking__tab:hover {
    color: var(--white);
}

.booking__tab.is-active {
    background: var(--yellow);
    color: var(--ink);
    font-weight: 700;
}

.booking__panel[hidden] {
    display: none;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.field--wide {
    grid-column: span 2;
}

.field label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.field label i {
    color: var(--yellow);
    font-size: 12px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    background: var(--ink-soft);
    color: var(--white);
    font-size: 15px;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.field textarea {
    resize: vertical;
    min-height: 108px;
    line-height: 1.6;
    font-family: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--muted-2);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 198, 26, .16);
}

/* Native date/time pickers on a dark surface */
.field input[type="date"],
.field input[type="time"] {
    color-scheme: dark;
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFC61A'%3E%3Cpath d='M8 11.5 2.5 6h11z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 13px;
    padding-right: 42px;
}

.field select option {
    background: var(--surface-2);
    color: var(--white);
}

.booking__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.booking__note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.booking__note i {
    color: var(--yellow);
}

.form-status {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line-strong);
    background: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.6;
}

.form-status[hidden] {
    display: none;
}

.form-status.is-ok {
    border-color: rgba(255, 198, 26, .5);
    color: var(--yellow-bright);
}

.form-status.is-err {
    border-color: rgba(255, 108, 108, .5);
    color: #FF9B9B;
}

/* The submit button hugs its label at every width */
.booking__foot .btn {
    flex: 0 0 auto;
    width: auto;
}

/* --------------------------------------------------------------------------
   11. Services
   -------------------------------------------------------------------------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
    gap: 24px;
}

.service {
    position: relative;
    padding: 36px 30px 32px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
    overflow: hidden;
    transition: transform .4s var(--ease), border-color .4s var(--ease),
        background-color .4s var(--ease);
}

.service::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--ease);
}

.service:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 198, 26, .35);
    background: var(--surface-2);
}

.service:hover::before {
    transform: scaleX(1);
}

.service__icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: rgba(255, 198, 26, .12);
    border: 1px solid rgba(255, 198, 26, .22);
    color: var(--yellow);
    font-size: 24px;
    transition: all .4s var(--ease);
}

.service:hover .service__icon {
    background: var(--yellow);
    color: var(--ink);
}

.service h3 {
    font-size: 20px;
    font-weight: 700;
}

.service p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
}

.service__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: var(--yellow);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
}

.service__link i {
    transition: transform .3s var(--ease);
}

.service__link:hover i {
    transform: translateX(5px);
}

.service__num {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, .05);
}

/* --------------------------------------------------------------------------
   12. About
   -------------------------------------------------------------------------- */
.about {
    background: var(--ink-soft);
    border-block: 1px solid var(--line);
}

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 68px;
}

.about__media {
    position: relative;
}

.about__img {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    aspect-ratio: 4 / 5;
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(8, 8, 11, .72));
}

.about__years {
    position: absolute;
    right: -24px;
    bottom: 44px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 24px 26px;
    border-radius: var(--r-md);
    background: var(--yellow);
    color: var(--ink);
    text-align: center;
    box-shadow: 0 30px 60px -30px rgba(255, 198, 26, .6);
}

.about__years > strong {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.about__years > span {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    max-width: 10ch;
    line-height: 1.35;
}

.about__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 26px;
    margin-top: 30px;
}

.about__points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    color: var(--white);
}

.about__points i {
    margin-top: 5px;
    color: var(--yellow);
    font-size: 14px;
    flex: none;
}

.about__meters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 40px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.meter__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}

.meter__top h4 {
    font-size: 15.5px;
    font-weight: 600;
}

.meter__top b {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--yellow);
}

.meter__bar {
    height: 6px;
    border-radius: var(--r-pill);
    background: var(--surface-3);
    overflow: hidden;
}

.meter__fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: var(--r-pill);
    background: linear-gradient(90deg, var(--yellow-deep), var(--yellow-bright));
    transition: width 1.4s var(--ease);
}

.about__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 26px;
    margin-top: 40px;
}

.about__signature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 14.5px;
}

.about__signature i {
    color: var(--yellow);
    font-size: 22px;
}

/* --------------------------------------------------------------------------
   13. Tariff
   -------------------------------------------------------------------------- */
/* Four vehicles — one row on wide screens so no card is orphaned */
.tariff__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.fare {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
    overflow: hidden;
    transition: transform .4s var(--ease), border-color .4s var(--ease),
        box-shadow .4s var(--ease);
}

.fare:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 198, 26, .4);
    box-shadow: 0 34px 60px -40px rgba(255, 198, 26, .5);
}

/* Light "showroom plate" so the vehicle cut-outs stay legible on dark */
.fare__plate {
    position: relative;
    display: grid;
    place-items: center;
    padding: 24px 18px;
    height: 172px;
    background:
        radial-gradient(120% 90% at 50% 20%, #FFFFFF, #DFE1E6 78%);
    border-bottom: 1px solid var(--line);
}

.fare__plate img {
    max-height: 118px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .22));
    transition: transform .5s var(--ease);
}

.fare:hover .fare__plate img {
    transform: scale(1.06);
}

.fare__seats {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}

.fare__seats i {
    color: var(--yellow);
    font-size: 11px;
}

.fare__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 20px 22px;
}

.fare__name {
    font-size: 19px;
    font-weight: 700;
}

.fare__rate {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 14px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--line-strong);
}

.fare__rate b {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    color: var(--yellow);
}

.fare__rate span {
    font-size: 13.5px;
    color: var(--muted);
}

.fare__specs {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 18px;
    font-size: 14px;
    color: var(--muted);
}

.fare__specs li span {
    white-space: nowrap;
}

.fare__specs li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fare__specs strong {
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
}

.fare__btn {
    margin-top: 24px;
    padding: 14px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-pill);
    text-align: center;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white);
    transition: all .3s var(--ease);
}

.fare:hover .fare__btn,
.fare__btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
}

/* Local & airport packages */
.packages {
    margin-top: 64px;
    padding-top: 56px;
    border-top: 1px solid var(--line);
}

.packages__head {
    max-width: 620px;
    margin: 0 auto 36px;
    text-align: center;
}

.packages__title {
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 800;
}

.packages__text {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15.5px;
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 920px;
    margin-inline: auto;
}

.package {
    display: flex;
    flex-direction: column;
    padding: 26px 26px 24px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}

.package:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 198, 26, .4);
}

.package__head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.package__img {
    display: grid;
    place-items: center;
    width: 88px;
    height: 62px;
    flex: none;
    padding: 6px;
    border-radius: 12px;
    background: radial-gradient(120% 90% at 50% 20%, #FFFFFF, #DFE1E6 80%);
}

.package__img img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.package__name {
    font-size: 20px;
    font-weight: 700;
}

.package__seats {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13.5px;
}

.package__seats i {
    color: var(--yellow);
    font-size: 12px;
}

.package__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    margin-top: 6px;
}

.package__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px dashed var(--line);
}

.package__list li:last-child {
    border-bottom: 0;
}

.package__label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.package__type {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.package__type i {
    color: var(--yellow);
    font-size: 13px;
    flex: none;
}

.package__meta {
    padding-left: 22px;
    color: var(--muted-2);
    font-size: 13px;
}

.package__price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    color: var(--yellow);
    white-space: nowrap;
}

.package__btn {
    margin-top: 20px;
    padding: 14px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-pill);
    text-align: center;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white);
    transition: all .3s var(--ease);
}

.package:hover .package__btn,
.package__btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
}

.tariff__note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 860px;
    margin: 40px auto 0;
    padding: 20px 24px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--r-md);
    color: var(--muted);
    font-size: 14.5px;
    text-align: left;
}

.tariff__note i {
    margin-top: 5px;
    color: var(--yellow);
    flex: none;
}

/* --------------------------------------------------------------------------
   14. Why us (split)
   -------------------------------------------------------------------------- */
.why {
    background: var(--ink-soft);
    border-block: 1px solid var(--line);
}

.why__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 68px;
}

.why__media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    aspect-ratio: 5 / 4;
}

.why__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.why__media:hover img {
    transform: scale(1.05);
}

.why__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(255, 198, 26, .12), rgba(8, 8, 11, .55));
}

.why__stat {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border-radius: var(--r-md);
    background: rgba(8, 8, 11, .88);
    border: 1px solid var(--line-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.why__stat > strong {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    color: var(--yellow);
}

.why__stat > span {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.4;
}

.why__list {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

.why__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
    transition: border-color .35s var(--ease), transform .35s var(--ease);
}

.why__item:hover {
    border-color: rgba(255, 198, 26, .35);
    transform: translateX(6px);
}

.why__item i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 198, 26, .12);
    color: var(--yellow);
    font-size: 17px;
    flex: none;
}

.why__item h3 {
    font-size: 17px;
    font-weight: 700;
}

.why__item p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 14.5px;
}

/* --------------------------------------------------------------------------
   15. Destinations
   -------------------------------------------------------------------------- */
.dest__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

/* 5:4 matches the source photography, so nothing important gets cropped out */
.dest {
    position: relative;
    display: block;
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 5 / 4;
    border: 1px solid var(--line);
}

.dest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.85) brightness(.82);
    transition: transform 1s var(--ease), filter .6s var(--ease);
}

.dest::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 11, .1) 30%, rgba(8, 8, 11, .92));
    transition: background .5s var(--ease);
}

.dest:hover img {
    transform: scale(1.09);
    filter: saturate(1) brightness(.9);
}

.dest__body {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 22px;
}

.dest__name {
    font-size: 20px;
    font-weight: 700;
}

.dest__from {
    display: block;
    margin-top: 4px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--yellow);
    letter-spacing: .02em;
}

.dest__go {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-size: 14px;
    flex: none;
    transform: translateY(8px) scale(.85);
    opacity: 0;
    transition: all .4s var(--ease);
}

.dest:hover .dest__go {
    transform: none;
    opacity: 1;
}

/* "Somewhere else?" tile — fills the eighth slot of the grid */
.dest--ask {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 26px;
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
}

.dest--ask::after {
    content: none;
}

.dest--ask h3 {
    font-size: 22px;
    color: var(--ink);
    max-width: 12ch;
}

.dest--ask p {
    font-size: 14.5px;
    font-weight: 500;
}

.dest--ask .dest__go {
    position: static;
    opacity: 1;
    transform: none;
    background: var(--ink);
    color: var(--yellow);
    align-self: flex-start;
    transition: transform .35s var(--ease);
}

.dest--ask:hover .dest__go {
    transform: translateX(6px);
}

/* --------------------------------------------------------------------------
   16. Testimonials
   -------------------------------------------------------------------------- */
.reviews {
    background: var(--ink-soft);
    border-block: 1px solid var(--line);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 30px 30px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}

.review:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 198, 26, .35);
}

.review__quote {
    position: absolute;
    top: 26px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 62px;
    font-weight: 800;
    line-height: .7;
    color: rgba(255, 198, 26, .16);
}

.review__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    color: var(--yellow);
    font-size: 13px;
}

.review__text {
    color: var(--muted);
    font-size: 15.5px;
    flex: 1;
}

.review__by {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.review__avatar {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 198, 26, .14);
    border: 1px solid rgba(255, 198, 26, .3);
    color: var(--yellow);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    flex: none;
}

.review__by h4 {
    font-size: 16px;
    font-weight: 700;
}

.review__by span {
    font-size: 13.5px;
    color: var(--muted-2);
}

/* --------------------------------------------------------------------------
   17. CTA band
   -------------------------------------------------------------------------- */
.band {
    position: relative;
    overflow: hidden;
    padding-block: 96px;
    background: var(--ink);
}

.band__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .34;
}

.band::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--ink) 8%, rgba(8, 8, 11, .74) 55%, rgba(8, 8, 11, .45)),
        radial-gradient(700px 380px at 82% 50%, rgba(255, 198, 26, .2), transparent 68%);
}

.band__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px;
}

.band__title {
    max-width: 18ch;
    font-size: clamp(29px, 4vw, 48px);
    font-weight: 800;
}

.band__text {
    max-width: 46ch;
    margin-top: 18px;
    color: var(--muted);
    font-size: 16.5px;
}

.band__phone {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 36px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-lg);
    background: rgba(19, 19, 25, .78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.band__phone span {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--yellow);
}

.band__phone a.band__number {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 800;
    letter-spacing: -.02em;
}

.band__phone a.band__number:hover {
    color: var(--yellow);
}

/* --------------------------------------------------------------------------
   18. Contact
   -------------------------------------------------------------------------- */
.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    align-items: center;
    gap: 62px;
}

.contact__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.contact__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 26px 24px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
    transition: border-color .35s var(--ease), transform .35s var(--ease);
}

.contact__card:hover {
    border-color: rgba(255, 198, 26, .4);
    transform: translateY(-5px);
}

.contact__card i {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(255, 198, 26, .12);
    color: var(--yellow);
    font-size: 17px;
}

.contact__card h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.contact__card p,
.contact__card a {
    font-size: 15.5px;
    color: var(--white);
    line-height: 1.55;
}

.contact__card a:hover {
    color: var(--yellow);
}

/* Enquiry (contact) form */
.enquiry {
    padding: 34px 32px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-lg);
    background:
        linear-gradient(180deg, rgba(255, 198, 26, .06), transparent 40%),
        var(--surface);
    box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 1);
}

.enquiry__title {
    font-size: 23px;
    font-weight: 700;
}

.enquiry__text {
    margin-top: 8px;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 15px;
}

.field-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enquiry__submit {
    margin-top: 26px;
}

/* Map + Google review card */
.map-row {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 24px;
    margin-top: 72px;
}

.map-frame {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    min-height: 380px;
    background: var(--surface);
}

.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    /* Google's embed is light-themed; damp it so it sits in a dark page */
    filter: grayscale(.35) contrast(1.05) brightness(.88);
}

.gmap-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 380px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line-strong);
}

.gmap-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 22%;
}

.gmap-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 11, .25) 20%, rgba(8, 8, 11, .96));
}

.gmap-card__body {
    position: relative;
    z-index: 2;
    padding: 28px 26px;
}

.gmap-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    color: var(--yellow);
    font-size: 14px;
}

.gmap-card__body h3 {
    font-size: 22px;
    font-weight: 700;
}

.gmap-card__body p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14.5px;
}

.gmap-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.gmap-card__actions .btn {
    padding: 13px 22px;
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--ink-soft);
    border-top: 1px solid var(--line);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-block: 78px 62px;
}

.footer__about p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 15px;
    max-width: 34ch;
}

.footer .social-row {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.footer__title {
    margin-bottom: 24px;
    font-size: 17px;
    font-weight: 700;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 15px;
}

.footer__links a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: .55;
    transition: all .3s var(--ease);
}

.footer__links a:hover {
    color: var(--yellow);
}

.footer__links a:hover::before {
    opacity: 1;
    width: 12px;
    border-radius: var(--r-pill);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.footer__contact i {
    margin-top: 6px;
    color: var(--yellow);
    font-size: 14px;
    flex: none;
}

.footer__contact a:hover {
    color: var(--yellow);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-block: 26px;
    border-top: 1px solid var(--line);
    color: var(--muted-2);
    font-size: 14px;
}

.footer__bottom a {
    color: var(--muted);
}

.footer__bottom a:hover {
    color: var(--yellow);
}

/* --------------------------------------------------------------------------
   20. Floating actions
   -------------------------------------------------------------------------- */
.dock {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dock a,
.dock button {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    font-size: 21px;
    cursor: pointer;
    box-shadow: 0 16px 30px -14px rgba(0, 0, 0, .85);
    transition: transform .3s var(--ease), background-color .3s var(--ease);
}

.dock a:hover,
.dock button:hover {
    transform: translateY(-4px) scale(1.05);
}

.dock__wa {
    background: #25D366;
    color: #fff;
}

.dock__call {
    background: var(--yellow);
    color: var(--ink);
}

.dock__top {
    background: var(--surface-2);
    color: var(--white);
    border: 1px solid var(--line-strong) !important;
    font-size: 16px !important;
    opacity: 0;
    pointer-events: none;
}

.dock__top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
    .nav__menu a {
        padding: 10px 11px;
        font-size: 14.5px;
    }

    .nav__call-meta {
        display: none;
    }

    .hero__chip--rating {
        left: -6px;
    }

    .hero__chip--trips {
        right: -4px;
    }
}

@media (max-width: 1180px) {
    .tariff__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-y: 84px;
    }

    .dest__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .nav__menu,
    .nav__call {
        display: none;
    }

    .nav__burger {
        display: grid;
        place-items: center;
    }

    .hero {
        padding-block: 70px 104px;
    }

    .hero__grid,
    .about__grid,
    .why__grid,
    .contact__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 52px;
    }

    .hero__visual {
        order: -1;
        max-width: 620px;
    }

    .about__media {
        max-width: 460px;
    }

    .map-row {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 52px;
    }

    .map-frame,
    .gmap-card {
        min-height: 320px;
    }

    .footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px;
    }
}

@media (max-width: 860px) {
    .tariff__grid,
    .dest__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .booking__card {
        padding: 28px 22px;
    }

    .band__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .band__phone {
        width: 100%;
    }
}

@media (max-width: 860px) {
    .packages__grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 520px;
    }
}

@media (max-width: 720px) {
    :root {
        --gutter: 18px;
        --section-y: 68px;
    }

    /* ---- Compact form controls on phones ----
       Font-size stays at 16px: anything smaller makes iOS Safari zoom in on
       focus, which throws the whole layout sideways. Height comes off the
       padding instead. */
    .field {
        gap: 6px;
    }

    .field label {
        font-size: 11px;
        letter-spacing: .1em;
    }

    .field label i {
        font-size: 11px;
    }

    .field input,
    .field select,
    .field textarea {
        padding: 4px 13px;
        font-size: 15px;
        border-radius: 8px;
    }

    .field textarea {
        min-height: 90px;
    }

    .field select {
        padding-right: 36px;
        background-position: right 13px center;
        background-size: 11px;
    }

    .field-grid {
        gap: 10px;
    }

    /* ---- Smaller type throughout ---- */
    body {
        font-size: 15px;
    }

    .sec-text,
    .hero__text,
    .service p,
    .why__item p,
    .review__text,
    .band__text,
    .packages__text,
    .footer__about p {
        font-size: 14.5px;
    }

    .eyebrow {
        font-size: 11.5px;
        letter-spacing: .16em;
        margin-bottom: 14px;
    }

    .sec-head {
        margin-bottom: 34px;
    }

    .booking__head h2 {
        font-size: 22px;
    }

    .booking__head p,
    .booking__note {
        font-size: 13.5px;
    }

    .booking__tab {
        padding: 10px 18px;
        font-size: 13.5px;
    }

    .btn {
        padding: 13px 24px;
        font-size: 14.5px;
    }

    .btn--lg {
        padding: 15px 28px;
        font-size: 15px;
    }

    .service h3,
    .fare__name,
    .package__name,
    .why__item h3,
    .dest__name {
        font-size: 17px;
    }

    .fare__rate b {
        font-size: 28px;
    }

    .package__price {
        font-size: 22px;
    }

    .package__type {
        font-size: 14px;
    }

    .footer__title {
        font-size: 16px;
    }

    .topbar__list li:not(:first-child),
    .topbar__note {
        display: none;
    }

    .topbar__inner {
        justify-content: center;
    }

    .nav {
        min-height: 72px;
    }

    .hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 20px;
    }

    .hero__stat > strong {
        font-size: 26px;
    }

    .about__points,
    .about__meters,
    .contact__cards,
    .field-grid--two {
        grid-template-columns: minmax(0, 1fr);
    }

    .enquiry {
        padding: 26px 20px;
    }

    .about__years {
        right: 12px;
        bottom: 12px;
        padding: 18px 20px;
    }

    .about__years strong {
        font-size: 34px;
    }

    .booking__head {
        flex-direction: column;
        align-items: stretch;
    }

    .booking__tabs {
        align-self: flex-start;
    }

    .dock a,
    .dock button {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }
}

/* Keep the header from overflowing on narrow phones */
@media (max-width: 560px) {
    .nav {
        gap: 12px;
    }

    .nav__actions {
        gap: 10px;
    }

    .nav__actions .btn {
        padding: 12px 18px;
        font-size: 14px;
    }

    .brand__logo {
        height: 40px;
    }

    .brand__name {
        font-size: 17px;
    }
}

@media (max-width: 400px) {
    .site-header .brand__text {
        display: none;
    }
}

@media (max-width: 520px) {
    .tariff__grid,
    .dest__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .field-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .field--wide {
        grid-column: span 1;
    }

    .footer__top {
        grid-template-columns: minmax(0, 1fr);
        gap: 38px;
        padding-block: 56px 44px;
    }

    .hero__chip {
        padding: 11px 15px;
    }

    .hero__chip strong {
        font-size: 14px;
    }

    .hero__chip span {
        font-size: 11.5px;
    }
}

/* --------------------------------------------------------------------------
   22. FAQ
   -------------------------------------------------------------------------- */
.faq {
    background: var(--ink-soft);
    border-block: 1px solid var(--line);
}

.faq__list {
    display: grid;
    gap: 12px;
    max-width: 880px;
    margin-inline: auto;
}

/* <details> keeps every answer in the HTML, so it is crawlable and needs no JS */
.faq__item {
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
    overflow: hidden;
    transition: border-color .35s var(--ease);
}

.faq__item[open],
.faq__item:hover {
    border-color: rgba(255, 198, 26, .35);
}

.faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: none;
    border-radius: 50%;
    background: rgba(255, 198, 26, .12);
    color: var(--yellow);
    font-size: 12px;
    transition: transform .35s var(--ease), background-color .35s var(--ease);
}

.faq__item[open] summary i {
    transform: rotate(45deg);
    background: var(--yellow);
    color: var(--ink);
}

.faq__answer {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 15.5px;
}

.faq__answer a {
    color: var(--yellow);
    font-weight: 600;
}

.faq__answer a:hover {
    text-decoration: underline;
}

@media (max-width: 720px) {
    .faq__item summary {
        padding: 16px 18px;
        font-size: 15px;
        gap: 14px;
    }

    .faq__answer {
        padding: 0 18px 18px;
        font-size: 14.5px;
    }
}

/* --------------------------------------------------------------------------
   23. Place autocomplete (custom dropdown — keeps the API key server-side)
   -------------------------------------------------------------------------- */
.field {
    position: relative;
}

.ac-list {
    position: absolute;
    z-index: 40;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 260px;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    background: var(--surface-2);
    box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .95);
}

.ac-list[hidden] {
    display: none;
}

.ac-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 11px 12px;
    border-radius: 8px;
    color: var(--white);
    font-size: 14.5px;
    line-height: 1.45;
    cursor: pointer;
}

.ac-item i {
    margin-top: 3px;
    color: var(--yellow);
    font-size: 12px;
    flex: none;
}

.ac-item:hover,
.ac-item.is-active {
    background: rgba(255, 198, 26, .14);
}

.ac-empty {
    padding: 12px;
    color: var(--muted-2);
    font-size: 13.5px;
}

/* --------------------------------------------------------------------------
   24. Estimate page
   -------------------------------------------------------------------------- */
.estimate-page {
    background:
        radial-gradient(900px 520px at 80% -10%, rgba(255, 198, 26, .12), transparent 60%),
        var(--ink);
    min-height: 100vh;
}

.est {
    max-width: 1100px;
}

.est__head {
    margin-bottom: 34px;
}

.est__title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
}

.est__title i {
    color: var(--yellow);
    font-size: .6em;
}

.est__sub {
    margin-top: 12px;
    color: var(--muted);
    font-size: 16px;
}

.est__hint {
    margin-top: 12px;
    color: var(--muted-2);
    font-size: 13.5px;
}

.est__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: start;
    gap: 24px;
}

.est__card {
    border: 1px solid var(--line-strong);
    border-radius: var(--r-lg);
    background: var(--surface);
    overflow: hidden;
}

.est__card--pad {
    padding: 30px 28px;
}

.est__card--center {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
}

.est__card--center .est__title,
.est__card--center .est__actions {
    justify-content: center;
}

.est__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.est__total span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

.est__total strong {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 800;
    line-height: 1;
    color: var(--yellow);
}

.est__lines {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.est__lines li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--muted);
    font-size: 15px;
}

.est__lines li small {
    display: block;
    color: var(--muted-2);
    font-size: 12.5px;
}

.est__lines b {
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
}

.est__lines-note b,
.est__lines-note span {
    color: var(--yellow);
}

.est__lines-total {
    border-bottom: 0;
    padding-top: 18px;
}

.est__lines-total span {
    font-weight: 700;
    color: var(--white);
}

.est__lines-total b {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--yellow);
}

.est__lines--plain li:last-child {
    border-bottom: 0;
}

.est__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.est__meta > div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--ink-soft);
}

.est__meta i {
    color: var(--yellow);
    font-size: 16px;
}

.est__meta span {
    display: block;
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--muted-2);
}

.est__meta strong {
    display: block;
    margin-top: 4px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
}

.est__disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted-2);
    font-size: 13.5px;
    line-height: 1.6;
}

.est__disclaimer i {
    margin-top: 3px;
    color: var(--yellow);
    flex: none;
}

.est__side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.est__map {
    border: 1px solid var(--line-strong);
    border-radius: var(--r-lg);
    overflow: hidden;
    line-height: 0;
    background: var(--surface);
    min-height: 260px;
}

.est__map img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.est__confirm-title {
    font-size: 21px;
    font-weight: 700;
}

.est__confirm-text {
    margin: 8px 0 22px;
    color: var(--muted);
    font-size: 14.5px;
}

.est__confirm-form .btn {
    margin-top: 22px;
}

.est__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.est__call i {
    color: var(--yellow);
}

.est__call:hover {
    color: var(--yellow);
}

.est__errors {
    margin: 18px 0 26px;
    color: #FF9B9B;
    font-size: 15px;
}

.est__errors li {
    padding: 4px 0;
}

.est__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

@media (max-width: 960px) {
    .est__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .est__side {
        flex-direction: column-reverse;
    }
}

@media (max-width: 720px) {
    .est__card--pad {
        padding: 22px 18px;
    }

    .est__meta {
        grid-template-columns: minmax(0, 1fr);
    }

    .est__lines li {
        font-size: 14px;
    }
}

@media (max-width: 620px) {
    /* The estimate header has no burger menu, so the two buttons plus the
       wordmark overflow a narrow phone. The page body already carries a
       prominent "call us" link, so drop the duplicate here. */
    .estimate-page .nav__actions .btn--ghost {
        display: none;
    }

    .estimate-page .est__title {
        gap: 10px;
        word-break: break-word;
    }
}

/* --------------------------------------------------------------------------
   25. Estimate — route summary and vehicle picker
   -------------------------------------------------------------------------- */
.est__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 40px;
}

.est__stats {
    display: grid;
    gap: 14px;
    align-content: start;
}

.est__stats > div {
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
}

.est__stats i {
    color: var(--yellow);
    font-size: 16px;
}

.est__stats span {
    display: block;
    margin-top: 10px;
    font-size: 12.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.est__stats strong {
    display: block;
    margin-top: 5px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
}

.est__section-title {
    font-size: clamp(21px, 3vw, 27px);
    font-weight: 800;
}

.est__section-text {
    margin: 8px 0 24px;
    color: var(--muted);
    font-size: 15px;
}

/* Vehicle picker — selection is pure CSS off the radio, no JS needed */
.fare-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
    gap: 18px;
}

.fare-opt {
    display: block;
    cursor: pointer;
}

.fare-opt input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.fare-opt__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 22px 20px 18px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
    transition: border-color .3s var(--ease), transform .3s var(--ease),
        box-shadow .3s var(--ease);
}

.fare-opt:hover .fare-opt__inner {
    transform: translateY(-4px);
    border-color: rgba(255, 198, 26, .35);
}

.fare-opt input:checked + .fare-opt__inner {
    border-color: var(--yellow);
    box-shadow: 0 0 0 1px var(--yellow), 0 26px 50px -34px rgba(255, 198, 26, .6);
}

.fare-opt input:focus-visible + .fare-opt__inner {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
}

.fare-opt__pick {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: transparent;
    font-size: 11px;
    transition: all .3s var(--ease);
}

.fare-opt input:checked + .fare-opt__inner .fare-opt__pick {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
}

.fare-opt__car {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--line);
}

.fare-opt__img {
    display: grid;
    place-items: center;
    width: 84px;
    height: 56px;
    flex: none;
    padding: 5px;
    border-radius: 10px;
    background: radial-gradient(120% 90% at 50% 20%, #FFFFFF, #DFE1E6 80%);
}

.fare-opt__img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.fare-opt__name b {
    display: block;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
}

.fare-opt__name small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

.fare-opt__calc {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    color: var(--muted);
    font-size: 13.5px;
}

.fare-opt__calc span:last-child {
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
}

.fare-opt__note {
    display: block;
    padding-bottom: 6px;
    color: var(--yellow);
    font-size: 12.5px;
}

.fare-opt__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--line-strong);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.fare-opt__total b {
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: none;
    color: var(--yellow);
}

.est__on-request {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    padding: 18px 20px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--r-md);
    color: var(--muted);
    font-size: 14.5px;
}

.est__on-request i {
    margin-top: 4px;
    color: var(--yellow);
    flex: none;
}

.est__on-request a {
    color: var(--yellow);
    font-weight: 600;
}

.est__confirm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.est__confirm .est__disclaimer {
    flex: 1 1 420px;
    margin: 0;
    padding: 0;
    border: 0;
}

.est__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 14.5px;
}

.est__call i {
    color: var(--yellow);
}

.est__call a {
    color: var(--yellow);
    font-weight: 600;
}

@media (max-width: 900px) {
    .est__summary {
        grid-template-columns: minmax(0, 1fr);
    }

    .est__stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 720px) {
    .est__confirm {
        flex-direction: column;
        align-items: stretch;
    }

    .est__confirm .btn {
        width: 100%;
    }

    .fare-opt__total b {
        font-size: 24px;
    }
}

/* Booking received (shown when a fare could not be calculated) */
.est__tick {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-size: 24px;
}

.est__recap {
    max-width: 460px;
    margin: 28px auto 0;
    text-align: left;
}

.est__rates-title {
    margin-top: 34px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

.est__card--center .est__lines {
    max-width: 460px;
    margin-inline: auto;
    text-align: left;
}

/* Three booking tabs need to stay reachable on a narrow phone */
@media (max-width: 560px) {
    .booking__tabs {
        display: flex;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .booking__tabs::-webkit-scrollbar {
        display: none;
    }

    .booking__tab {
        flex: 1 0 auto;
        padding: 10px 16px;
        font-size: 13.5px;
        white-space: nowrap;
    }
}

/* Package extra-kilometre line — a rate, not a headline price */
.package__extra {
    border-top: 1px solid var(--line);
    border-bottom: 0 !important;
}

.package__rate {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.field--full {
    grid-column: 1 / -1;
}

.field__opt {
    margin-left: 2px;
    color: var(--muted-2);
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
}

/* --------------------------------------------------------------------------
   26. Popular routes (footer link block)
   -------------------------------------------------------------------------- */
.routes {
    padding-block: 72px;
    background: var(--ink);
    border-top: 1px solid var(--line);
}

.routes__heading {
    font-size: clamp(21px, 3vw, 28px);
    font-weight: 800;
}

.routes__intro {
    max-width: 62ch;
    margin: 12px 0 40px;
    color: var(--muted);
    font-size: 15px;
}

.routes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 34px 28px;
}

.routes__title {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--yellow);
}

.routes__list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.routes__list a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.routes__list a:hover {
    color: var(--yellow);
    padding-left: 4px;
}

@media (max-width: 720px) {
    .routes {
        padding-block: 52px;
    }

    .routes__grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 28px 20px;
    }

    .routes__list a {
        font-size: 13.5px;
    }
}

/* --------------------------------------------------------------------------
   27. Per-field validation messages
   -------------------------------------------------------------------------- */
.field__error {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 0;
    color: #FF9B9B;
    font-size: 13px;
    line-height: 1.45;
}

.field__error i {
    margin-top: 2px;
    font-size: 11.5px;
    flex: none;
}

.field--invalid input,
.field--invalid select,
.field--invalid textarea {
    border-color: rgba(255, 107, 107, .75);
    background: rgba(255, 107, 107, .05);
}

.field--invalid input:focus,
.field--invalid select:focus,
.field--invalid textarea:focus {
    border-color: #FF8A8A;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, .18);
}

.field--invalid label {
    color: #FF9B9B;
}

.field--invalid label i {
    color: #FF9B9B;
}
