/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* =========================================================
   THEME VARIABLES - DARK
========================================================= */

:root {
    color-scheme: dark;
    --background: #0b0b0b;
    --background-soft: #111111;
    --card: #151515;
    --card-secondary: #111111;
    --header-background: rgba(10, 10, 10, 0.96);
    --border: #2b2b2b;
    --border-input: #373737;
    --text: #f5f5f5;
    --text-secondary: #999999;
    --text-muted: #a0a0a0;
    --input-background: #0c0c0c;
    --gold: #ffd400;
    --gold-hover: #eec600;
    --gold-text: #ffe36b;
    --gold-soft: rgba(255, 212, 0, 0.08);
    --gold-border: rgba(255, 212, 0, 0.24);
    --ambient-glow: rgba(255, 212, 0, 0.055);
    --shadow: rgba(0, 0, 0, 0.30);
    --success-bg: #14251a;
    --success-border: #315b3c;
    --success-text: #b7efc5;
    --error-bg: #2c1719;
    --error-border: #663238;
    --error-text: #ffc4c9;
}

/* =========================================================
   THEME VARIABLES - LIGHT
========================================================= */

html[data-theme="light"] {
    color-scheme: light;
    --background: #f5f5f3;
    --background-soft: #eeeeeb;
    --card: #ffffff;
    --card-secondary: #fafafa;
    --header-background: rgba(255, 255, 255, 0.96);
    --border: #deded9;
    --border-input: #c9c9c5;
    --text: #171717;
    --text-secondary: #626262;
    --text-muted: #686868;
    --input-background: #ffffff;
    --gold: #edc400;
    --gold-hover: #d9b300;
    --gold-text: #705b00;
    --gold-soft: rgba(180, 145, 0, 0.09);
    --gold-border: rgba(135, 109, 0, 0.25);
    --ambient-glow: rgba(205, 168, 0, 0.085);
    --shadow: rgba(0, 0, 0, 0.08);
    --success-bg: #edf8ef;
    --success-border: #b8dfbf;
    --success-text: #245c30;
    --error-bg: #fff0f1;
    --error-border: #e4bfc2;
    --error-text: #8c2932;
}

/* =========================================================
   BODY
========================================================= */

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", Arial, sans-serif;
    background: radial-gradient( circle at 50% -180px, var(--ambient-glow), transparent 430px ), var(--background);
    background-attachment: fixed;
    color: var(--text);
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-background);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* =========================================================
   BRAND
========================================================= */

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

.brand-link {
    color: inherit;
    text-decoration: none;
}

.brand-star {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff1b8 0%, #ebc94f 38%, #c79821 72%, #f5df83 100%);
    border: 1px solid rgba(255, 236, 160, 0.65);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 0 20px rgba(222, 178, 45, 0.17);
    color: #111111;
    font-size: 22px;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.brand-star svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
}

.brand-link:hover .brand-star {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 0 26px rgba(222, 178, 45, 0.3);
}

.brand-name {
    display: block;
    color: var(--text);
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.brand-subtitle {
    display: block;
    margin-top: 3px;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

.nav-links a:hover {
    color: var(--gold-text);
}

/* =========================================================
   LIGHT DARK BUTTON
========================================================= */

.theme-toggle {
    width: auto;
    min-height: 38px;
    margin: 0;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    color: var(--text);
    font-family: inherit;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.theme-toggle:hover {
    background: var(--card-secondary);
    border-color: var(--border-input);
    box-shadow: none;
}

.theme-icon {
    position: relative;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}

.theme-icon svg {
    position: absolute;
    inset: 0;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-icon-moon, html[data-theme="light"] .theme-icon-sun {
    display: none;
}

html[data-theme="light"] .theme-icon-moon {
    display: block;
}

.theme-toggle:focus-visible, .brand-link:focus-visible, .nav-links a:focus-visible, .cancel-link:focus-visible, .footer-contact a:focus-visible {
    outline: 3px solid rgba(255, 212, 0, 0.28);
    outline-offset: 3px;
}

/* =========================================================
   MAIN PAGE
========================================================= */

.page-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    margin-bottom: 42px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    margin-bottom: 18px;
    border: 1px solid var(--gold-border);
    border-radius: 100px;
    background: var(--gold-soft);
    color: var(--gold-text);
    font-size: 0.82rem;
    font-weight: 600;
}

.badge-icon {
    width: 15px;
    height: 15px;
    display: inline-flex;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.hero h1 {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.hero-text {
    max-width: 580px;
    margin: 18px auto 0;
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 1rem;
}

/* =========================================================
   SUBTLE TAXI ROUTE
========================================================= */

.hero-route {
    position: relative;
    width: min(310px, 78vw);
    height: 42px;
    margin: 21px auto 0;
}

.hero-route-line {
    position: absolute;
    z-index: 0;
    left: 12px;
    right: 25px;
    top: 27px;
    height: 1px;
    background: repeating-linear-gradient( 90deg, var(--gold-border) 0 7px, transparent 7px 13px );
}

.hero-route-start {
    position: absolute;
    z-index: 2;
    left: 1px;
    top: 22px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--gold-text);
    border-radius: 50%;
    background: var(--background);
    box-shadow: 0 0 0 4px var(--gold-soft);
}

.hero-route-pin {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    color: var(--gold-text);
}

.hero-route-pin svg {
    width: 100%;
    height: 100%;
    fill: var(--card);
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-route-pin circle {
    fill: currentColor;
    stroke: none;
}

.hero-taxi {
    position: absolute;
    z-index: 1;
    left: calc(100% - 90px);
    top: 0;
    width: 72px;
    height: 36px;
    color: var(--gold);
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.16));
    animation: taxi-arrive 1.25s cubic-bezier(0.22, 0.75, 0.25, 1) 0.28s both;
}

.taxi-body, .taxi-sign {
    fill: currentColor;
}

.taxi-window {
    fill: var(--card);
}

.taxi-wheel {
    fill: var(--text);
    stroke: var(--card);
    stroke-width: 1.6;
}

@keyframes taxi-arrive {
    from {
        opacity: 0;
        transform: translateX(-175px);
    }
    18% {
        opacity: 1;
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge, .hero h1, .hero-text, .confirmation-card {
    animation: fade-up 0.48s ease-out both;
}

.hero h1 {
    animation-delay: 0.04s;
}

.hero-text {
    animation-delay: 0.09s;
}

.confirmation-card {
    animation-delay: 0.14s;
}

/* =========================================================
   BOOKING LAYOUT
========================================================= */

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(250px, 1fr);
    gap: 24px;
    align-items: start;
    justify-content: center;
}

/* =========================================================
   CARDS
========================================================= */

.booking-card, .info-card, .confirmation-card, .success-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 50px var(--shadow);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-card {
    padding: 30px;
}

/* =========================================================
   CARD HEADING
========================================================= */

.card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.card-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 1.4rem;
}

.card-heading p {
    margin: 7px 0 0;
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.booking-step-badge {
    flex-shrink: 0;
    padding: 6px 9px;
    border-radius: 7px;
    background: var(--gold-soft);
    border: 1px solid var(--gold-border);
    color: var(--gold-text);
    font-size: 0.70rem;
    font-weight: 600;
}

/* =========================================================
   FORM RESET INSIDE CARDS
========================================================= */

.booking-card form, .confirmation-form {
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
}

/* =========================================================
   FORM GROUPS
========================================================= */

.form-group {
    margin-bottom: 19px;
}

.form-group label, .price-options legend {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
}

/* =========================================================
   ORIGIN DESTINATION ROUTE
========================================================= */

.trip-fields {
    position: relative;
}

.trip-fields .form-group label {
    padding-left: 45px;
}

.trip-fields::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 22px;
    top: 55px;
    width: 1px;
    height: 78px;
    background: repeating-linear-gradient( 180deg, var(--gold-border) 0 5px, transparent 5px 9px );
    pointer-events: none;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-left: 45px;
}

.field-icon {
    position: absolute;
    z-index: 3;
    left: 14px;
    top: 50%;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-text);
    transform: translateY(-50%);
    pointer-events: none;
}

.field-icon-start > span {
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 50%;
    background: var(--input-background);
    box-shadow: 0 0 0 3px var(--gold-soft);
}

.field-icon-end svg {
    width: 18px;
    height: 18px;
    fill: var(--input-background);
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.field-icon-end circle {
    fill: currentColor;
    stroke: none;
}

/* =========================================================
   INPUTS
========================================================= */

input, select, textarea {
    display: block;
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    margin: 0;
    border: 1px solid var(--border-input);
    border-radius: 8px;
    outline: none;
    background: var(--input-background);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.10);
}

input::placeholder {
    color: var(--text-muted);
}

.field-help {
    display: block;
    margin-top: 7px;
    color: var(--text-muted);
    line-height: 1.45;
    font-size: 0.78rem;
}

/* =========================================================
   PRICE OPTIONS
========================================================= */

.price-options {
    padding: 0;
    margin: 0 0 20px;
    border: none;
}

.price-options legend {
    margin-bottom: 9px;
}

.price-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
    border-radius: 9px;
    cursor: pointer;
    background: var(--card-secondary);
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.price-option:hover {
    border-color: var(--gold-border);
}

.price-option:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold-soft);
    box-shadow: inset 0 0 0 1px rgba(255, 212, 0, 0.08);
}

.price-option:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.10);
}

.price-option input[type="radio"] {
    width: auto;
    min-height: auto;
    margin: 0;
    accent-color: var(--gold);
}

.price-option-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.price-option-content strong {
    color: var(--text);
    font-size: 0.91rem;
}

.price-option-content small {
    color: var(--text-secondary);
    font-size: 0.78rem;
}

/* =========================================================
   PRIMARY BUTTON
========================================================= */

.primary-button, .secondary-button {
    width: 100%;
    min-height: 48px;
    border: none;
    border-radius: 9px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.primary-button {
    margin-top: 7px;
    background: var(--gold);
    color: #101010;
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 9px 24px rgba(255, 212, 0, 0.13);
}

.primary-button:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 212, 0, 0.17);
}

.primary-button:active {
    transform: translateY(0);
}

.primary-button:focus-visible, .secondary-button:focus-visible {
    outline: 3px solid rgba(255, 212, 0, 0.28);
    outline-offset: 3px;
}

.button-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.15s ease;
}

.primary-button:hover .button-icon {
    transform: translateX(2px);
}

.secondary-button {
    margin-top: 20px;
    background: var(--card-secondary);
    border: 1px solid var(--border);
    color: var(--text);
}

/* =========================================================
   INFO CARD
========================================================= */

.info-card {
    padding: 25px;
}

.info-card h2 {
    margin: 0 0 22px;
    color: var(--text);
    font-size: 1.05rem;
}

.info-row {
    display: flex;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

.info-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--gold-soft);
    color: var(--gold-text);
    font-size: 0.75rem;
}

.info-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-icon:nth-child(1) svg {
    overflow: visible;
}

.info-row strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-size: 0.87rem;
}

.info-row p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.81rem;
}

/* =========================================================
   FLASH
========================================================= */

.flash {
    max-width: 1080px;
    margin: 0 auto 24px;
    padding: 13px 16px;
    border-radius: 9px;
    font-size: 0.85rem;
}

.flash.error {
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    color: var(--error-text);
}

.flash.success {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success-text);
}

/* =========================================================
   SUCCESS PAGE
========================================================= */

.success-card {
    max-width: 520px;
    margin: 30px auto;
    padding: 40px;
    text-align: center;
}

.success-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--success-bg);
    color: var(--success-text);
    font-size: 1.5rem;
    font-weight: bold;
}

.success-card h2 {
    margin: 0 0 12px;
    color: var(--text);
}

.success-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================================
   CONFIRMATION PAGE
========================================================= */

.confirmation-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 65px 24px;
}

.confirmation-card {
    padding: 36px;
}

.confirmation-heading {
    margin-bottom: 28px;
}

.confirmation-step {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--gold-text);
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.confirmation-step svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.confirmation-heading h1 {
    margin: 0;
    color: var(--text);
    text-align: left;
    font-size: 1.8rem;
    letter-spacing: -0.03em;
}

.confirmation-heading p {
    margin: 10px 0 0;
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.9rem;
}

/* =========================================================
   BOOKING SUMMARY
========================================================= */

.booking-summary {
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.summary-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span {
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.summary-row strong {
    color: var(--text);
    text-align: right;
    font-size: 0.86rem;
    overflow-wrap: anywhere;
}

.summary-row.highlight {
    background: var(--gold-soft);
}

.summary-row.highlight strong {
    color: var(--gold-text);
}

/* =========================================================
   CANCEL LINK
========================================================= */

.cancel-link {
    display: flex;
    width: fit-content;
    margin: 17px auto 0;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    text-align: center;
    text-decoration: none;
    font-size: 0.82rem;
}

.cancel-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.15s ease;
}

.cancel-link:hover svg {
    transform: translateX(-2px);
}

.cancel-link:hover {
    color: var(--text);
}

/* =========================================================
   CUSTOM DATETIME
========================================================= */

.custom-time {
    display: none;
    margin-top: 9px;
}

.custom-time.visible {
    display: block;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

/* =========================================================
   HONEYPOT
========================================================= */

.honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    max-width: 1080px;
    margin: 0 auto;
    padding: 30px 24px 40px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand strong {
    color: var(--text);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.footer-contact span {
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 500;
}

.footer-contact a {
    color: var(--gold-text);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: right;
}

/* =========================================================
   GOOGLE AUTOCOMPLETE
========================================================= */

.pac-container {
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--card);
    font-family: "Inter", Arial, sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.pac-item {
    padding: 9px 12px;
    border-top-color: var(--border);
    color: var(--text-secondary);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.81rem;
    cursor: pointer;
}

.pac-item:hover, .pac-item-selected {
    background: var(--card-secondary);
}

.pac-item-query {
    color: var(--text);
    font-size: 0.86rem;
}

.pac-matched {
    color: var(--gold-text);
    font-weight: 700;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {
    .header-inner {
        padding: 15px 18px;
    }
    .nav-links {
        display: none;
    }
    .header-actions {
        gap: 10px;
    }
    .theme-toggle {
        padding: 8px 10px;
    }
    #theme-text {
        display: none;
    }
    .brand-name {
        font-size: 1rem;
    }
    .brand-star {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }
    .page-container {
        padding: 38px 16px 60px;
    }
    .hero {
        margin-bottom: 28px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-text {
        font-size: 0.9rem;
    }
    .hero-route {
        width: min(270px, 82vw);
        margin-top: 18px;
    }
    .booking-layout {
        grid-template-columns: 1fr;
    }
    .booking-card, .info-card {
        padding: 22px;
    }
    .card-heading {
        flex-direction: column;
        gap: 10px;
    }
    .confirmation-container {
        padding: 38px 16px;
    }
    .confirmation-card {
        padding: 23px;
    }
    .summary-row {
        flex-direction: column;
        gap: 5px;
    }
    .summary-row strong {
        text-align: left;
    }
    .site-footer {
        margin: 0 16px;
        padding-left: 0;
        padding-right: 0;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 22px;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-copyright {
        text-align: center;
    }
}

/* =========================================================
   CLOUDFLARE TURNSTILE
========================================================= */

.captcha-section {
    margin-top: 22px;
    margin-bottom: 10px;
    width: 100%;
    display: block;
    position: relative;
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 8px;
    overflow: visible;
}

html[data-theme="light"] .captcha-section {
    border-color: #929292;
}

/* =========================================================
   REDUCED MOTION
========================================================= */

/* =========================================================
   BOOKING, CONTACT AND RECEIPT DETAILS
========================================================= */

[hidden] {
    display: none !important;
}

#booking, #info {
    scroll-margin-top: 110px;
}

.header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 9px 13px;
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    color: var(--gold-text);
    background: var(--gold-soft);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.header-call svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.header-call:hover {
    border-color: var(--gold);
}

.header-call:focus-visible, .info-call:focus-visible, .primary-button:focus-visible {
    outline: 3px solid var(--gold-text);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 12px;
    z-index: 200;
    padding: 12px;
    background: var(--gold);
    color: #111;
}

.skip-link:focus {
    top: 10px;
}

.theme-toggle {
    min-height: 44px;
    min-width: 44px;
}

.header-actions {
    gap: 16px;
}

.field-error {
    margin: 8px 0 0;
    color: var(--error-text);
    font-size: 0.84rem;
    line-height: 1.5;
}

[aria-invalid="true"] {
    border-color: var(--error-border);
    box-shadow: 0 0 0 1px var(--error-border);
}

.flash {
    line-height: 1.55;
}

.flash:focus {
    outline: 2px solid var(--gold-text);
    outline-offset: 3px;
}

.custom-time-group {
    margin-top: 16px;
}

.airport-note {
    margin: 12px 0 0;
    padding: 10px 12px;
    border-left: 2px solid var(--gold-border);
    background: var(--gold-soft);
}

.airport-note-active {
    color: var(--gold-text);
    border-color: var(--gold);
}

.form-reassurance {
    margin: 13px 0 0;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.5;
    text-align: center;
}

.primary-button[aria-disabled="true"] {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.primary-button[aria-disabled="true"] .button-icon {
    animation: pending-pulse 1.2s ease-in-out infinite alternate;
}

@keyframes pending-pulse {
    to {
        opacity: 0.3;
    }
}

.info-number {
    color: var(--gold-text);
    font-size: 0.76rem;
    font-weight: 700;
    padding-top: 3px;
}

.info-airport {
    margin-top: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}

.info-airport > span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.info-airport > strong {
    display: block;
    margin-top: 7px;
    color: var(--gold-text);
    font-size: 2.2rem;
    letter-spacing: -0.04em;
}

.info-airport small {
    font-size: 1rem;
    font-weight: 500;
}

.info-airport p {
    color: var(--text-muted);
    font-size: 0.79rem;
    line-height: 1.5;
    margin: 6px 0 0;
}

.info-call {
    display: block;
    margin-top: 20px;
    color: var(--gold-text);
    font-size: 0.82rem;
    line-height: 1.5;
    text-underline-offset: 4px;
}

.live-quote-amount {
    min-height: 1.2em;
    font-variant-numeric: tabular-nums;
}

#live-quote[data-quote-state="loading"] .live-quote-amount {
    position: relative;
    width: 4ch;
    border-radius: 6px;
    background: var(--gold-soft);
    animation: quote-loading 1.2s ease-in-out infinite;
}

#live-quote[data-quote-state="loading"] #live-quote-price {
    visibility: hidden;
}

#live-quote[data-quote-state="ready"] .live-quote-amount {
    animation: quote-reveal 420ms cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

@keyframes quote-loading {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 1; }
}

@keyframes quote-reveal {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    #live-quote[data-quote-state] .live-quote-amount {
        animation: none;
    }
}

.travel-information {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.travel-information h2 {
    margin: 0 0 20px;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.travel-information-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.travel-information h3, .travel-faq dt {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.travel-information h3 {
    margin: 0 0 10px;
}

.travel-information p, .travel-faq dd {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.travel-information a {
    color: var(--gold-text);
    text-underline-offset: 3px;
}

.travel-faq {
    margin-top: 32px;
}

.travel-faq dl {
    margin: 0;
}

.travel-faq dt {
    margin-top: 20px;
}

.travel-faq dd {
    margin-top: 6px;
}

@media (max-width: 760px) {
    .travel-information-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.info-airport-secondary {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--gold-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.info-airport-secondary > strong {
    display: block;
    margin-top: 5px;
    color: var(--gold-text);
    font-size: 1.25rem;
}

.turnstile-widget {
    width: 100%;
    min-width: 0;
}

.turnstile-widget iframe {
    display: block;
    border: 0;
}

#captcha-status:empty {
    display: none;
}

.receipt-fare {
    padding: 24px;
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    background: var(--gold-soft);
}

.receipt-fare > span {
    display: block;
    color: var(--gold-text);
    font-size: 0.78rem;
    font-weight: 600;
}

.receipt-fare > strong {
    display: block;
    margin-top: 6px;
    color: var(--gold-text);
    font-size: clamp(2.6rem, 8vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.055em;
}

.receipt-fare strong small {
    font-size: 1.35rem;
    letter-spacing: 0;
    font-weight: 500;
}

.receipt-fare > .meter-fare {
    font-size: 1.8rem;
    letter-spacing: -0.035em;
}

.receipt-fare p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 10px 0 0;
}

.receipt-route {
    margin: 24px 0;
}

.receipt-route > div {
    display: flex;
    gap: 14px;
    position: relative;
    padding-bottom: 22px;
}

.receipt-route > div:last-child {
    padding-bottom: 0;
}

.receipt-route > div:first-child::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 20px;
    bottom: 0;
    width: 1px;
    background: var(--gold-border);
}

.route-dot {
    display: block;
    width: 9px;
    height: 9px;
    margin-top: 6px;
    border: 2px solid var(--gold-text);
    border-radius: 50%;
    flex: 0 0 9px;
}

.route-dot-end {
    border-radius: 2px;
    background: var(--gold-text);
}

.receipt-route small {
    display: block;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-size: 0.76rem;
}

.receipt-route strong {
    display: block;
    font-size: 0.93rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.receipt-pickup, .booking-reference, .receipt-contact {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 0;
    border-top: 1px solid var(--border);
    font-size: 0.84rem;
}

.receipt-pickup > span, .booking-reference > span, .receipt-contact > span {
    color: var(--text-secondary);
}

.receipt-pickup > strong, .receipt-contact > strong {
    text-align: right;
    overflow-wrap: anywhere;
}

.contact-heading {
    border-top: 1px solid var(--border);
    margin: 6px 0 22px;
    padding-top: 25px;
}

.contact-heading h2 {
    font-size: 1.08rem;
    margin: 0;
}

.contact-heading p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 8px 0 0;
}

.request-note {
    padding: 12px 14px;
    margin: 18px 0;
    border-radius: 8px;
    background: var(--background-soft);
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.55;
}

.edit-button {
    border: 0;
    padding: 10px 12px;
    background: none;
    font: inherit;
    font-size: 0.85rem;
    cursor: pointer;
}

.edit-button[aria-disabled="true"] {
    cursor: wait;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 10px;
    border: 1px solid var(--gold-border);
    border-radius: 30px;
    color: var(--gold-text);
    background: var(--gold-soft);
    font-size: 0.71rem;
    line-height: 1.4;
}

.status-pill > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.booking-reference {
    border-top: 0;
    padding-top: 0;
    margin-bottom: 8px;
}

.booking-reference > strong {
    letter-spacing: 0.06em;
    font-size: 0.8rem;
}

.receipt-call {
    display: flex;
    text-align: center;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 760px) {
    .header-inner {
        padding: 12px 16px;
        gap: 10px;
    }
    .header-actions {
        gap: 8px;
    }
    .header-call {
        width: 44px;
        padding: 10px;
    }
    .header-call > span {
        display: none;
    }
    .page-container {
        padding-top: 24px;
    }
    .hero {
        margin-bottom: 22px;
    }
    .hero-badge {
        margin-bottom: 12px;
        font-size: 0.73rem;
    }
    .hero h1 {
        font-size: clamp(1.65rem, 6.5vw, 2rem);
    }
    .hero-text {
        margin-top: 12px;
        line-height: 1.5;
        font-size: 0.86rem;
    }
    .hero-route {
        height: 32px;
        margin-top: 8px;
        transform: scale(0.85);
    }
    .booking-card, .info-card, .confirmation-card {
        padding: 20px;
        border-radius: 14px;
    }
    .card-heading {
        margin-bottom: 22px;
        gap: 8px;
    }
    input, select, textarea {
        font-size: 16px;
        min-width: 0;
    }
    .confirmation-container {
        padding-top: 24px;
    }
    .confirmation-heading h1 {
        font-size: 1.55rem;
    }
    .receipt-fare {
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .header-inner {
        padding: 10px 12px;
    }
    .brand {
        gap: 8px;
    }
    .brand-name {
        font-size: 0.86rem;
    }
    .brand-subtitle {
        font-size: 0.68rem;
    }
    .brand-star {
        width: 34px;
        height: 34px;
    }
    .header-actions {
        gap: 5px;
    }
    .header-call, .theme-toggle {
        min-width: 40px;
        width: 40px;
    }
    .receipt-pickup, .booking-reference, .receipt-contact {
        flex-direction: column;
        gap: 6px;
    }
    .receipt-pickup > strong, .receipt-contact > strong {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   PICKUP CALENDAR DIALOG
========================================================= */

.pickup-picker-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid var(--border-input);
    border-radius: 8px;
    background: var(--input-background);
    color: var(--text);
    font: inherit;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
}

.pickup-picker-button span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.pickup-picker-button svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.pickup-dialog {
    width: min(420px, calc(100% - 24px));
    max-width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    margin: auto;
    padding: 22px;
    border: 1px solid var(--border-input);
    border-radius: 16px;
    background: var(--card);
    color: var(--text);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.pickup-dialog::backdrop {
    background: rgba(0, 0, 0, 0.65);
}

.picker-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.picker-heading h2 {
    margin: 0;
    font-size: 1.25rem;
}

.picker-heading p {
    margin: 7px 0 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

.picker-icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-height: 40px;
    flex: 0 0 40px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card-secondary);
    color: var(--text);
    font: inherit;
    font-size: 1.6rem;
    cursor: pointer;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 22px 0 16px;
}

.calendar-navigation h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
}

.calendar-weekdays, .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.calendar-weekdays {
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.calendar-days > span {
    min-height: 38px;
}

.calendar-day {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 4px 0;
    border: 1px solid transparent;
    border-radius: 7px;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 0.9rem;
    cursor: pointer;
}

.calendar-day:not(:disabled):hover {
    border-color: var(--gold-border);
    background: var(--gold-soft);
}

.calendar-day[aria-pressed="true"] {
    background: var(--gold);
    color: #111;
    font-weight: 700;
}

.calendar-day[aria-pressed="true"]:hover {
    background: var(--gold-hover);
}

.calendar-day:disabled, .picker-icon-button:disabled {
    opacity: 0.3;
    cursor: default;
}

.calendar-selected {
    margin: 14px 0;
    color: var(--gold-text);
    font-size: 0.8rem;
    line-height: 1.5;
}

.picker-time-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: end;
    gap: 12px;
}

.picker-time-fields > div {
    min-width: 0;
}

.picker-time-fields label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.82rem;
}

.picker-time-fields > span {
    padding-bottom: 13px;
}

.picker-time-fields select {
    font-size: 16px;
}

.picker-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.picker-actions .primary-button {
    width: auto;
    flex: 1;
    margin: 0;
}

.picker-cancel {
    min-height: 46px;
    padding: 10px 16px;
    border: 1px solid var(--border-input);
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    font: inherit;
    cursor: pointer;
}

.pickup-picker-button:focus-visible, .pickup-dialog button:focus-visible {
    outline: 2px solid var(--gold-text);
    outline-offset: 2px;
}

@media (max-width: 360px) {
    .pickup-dialog {
        padding: 16px;
    }
    .calendar-navigation h3 {
        font-size: 0.9rem;
    }
}

/* =========================================================
   POLICY PAGE AND LINKS
========================================================= */

.policy-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.policy-card {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card);
}

.policy-card section {
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.policy-card section h2 {
    margin: 0 0 12px;
    font-size: 1.15rem;
}

.policy-card section p {
    margin: 10px 0 0;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.75;
}

.policy-card a:not(.primary-button), .form-policy a, .footer-copyright a {
    color: var(--gold-text);
    text-underline-offset: 4px;
}

.form-policy {
    margin: 16px 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-copyright span {
    display: block;
    margin-top: 9px;
}

.nav-links a[aria-current="page"] {
    color: var(--gold-text);
}

@media (max-width: 760px) {
    .policy-container {
        padding: 24px 16px 40px;
    }
    .policy-card {
        padding: 22px;
    }
}
