:root {
    --lg-bg-1: #0b0a14;
    --lg-bg-2: #1a1030;
    --lg-bg-3: #120d22;
    --lg-surface: rgba(255, 255, 255, 0.1);
    --lg-surface-strong: rgba(255, 255, 255, 0.16);
    --lg-surface-soft: rgba(255, 255, 255, 0.06);
    --lg-border: rgba(255, 255, 255, 0.18);
    --lg-border-strong: rgba(255, 255, 255, 0.28);
    --lg-text: #f7f5ff;
    --lg-text-soft: rgba(247, 245, 255, 0.74);
    --lg-muted: rgba(232, 226, 255, 0.62);
    --lg-primary-1: #7b2ff7;
    --lg-primary-2: #c026d3;
    --lg-accent: #d7f95b;
    --lg-success: #6cf2b7;
    --lg-warning: #f6c668;
    --lg-danger: #ff8ea7;
    --lg-shadow: 0 28px 80px rgba(7, 6, 16, 0.4);
    --lg-shadow-soft: 0 18px 42px rgba(7, 6, 16, 0.24);
    --lg-radius-sm: 12px;
    --lg-radius-md: 16px;
    --lg-radius-lg: 20px;
    --lg-radius-xl: 28px;
    --lg-space-1: 4px;
    --lg-space-2: 8px;
    --lg-space-3: 12px;
    --lg-space-4: 16px;
    --lg-space-5: 24px;
    --lg-space-6: 32px;
    --lg-space-7: 40px;
    --lg-layout-gutter: 24px;
    --lg-page-gap: 20px;
    --lg-topbar-offset: 16px;
    --lg-bottom-nav-offset: 18px;
    --lg-bottom-nav-clearance: 132px;
    --liquid-x: 50%;
    --liquid-y: 30%;
    --page-liquid-x: 50%;
    --page-liquid-y: 28%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body.liquid-body {
    margin: 0;
    min-height: 100vh;
    color: var(--lg-text);
    font-family: "Cairo", sans-serif;
    background-color: var(--lg-bg-1);
    background:
        radial-gradient(circle at 15% 16%, rgba(123, 47, 247, 0.32), transparent 24%),
        radial-gradient(circle at 86% 14%, rgba(192, 38, 211, 0.28), transparent 18%),
        radial-gradient(circle at 76% 74%, rgba(91, 249, 209, 0.12), transparent 20%),
        linear-gradient(160deg, var(--lg-bg-1) 0%, var(--lg-bg-2) 52%, var(--lg-bg-3) 100%);
    background-color: var(--lg-bg-1);
    background-attachment: fixed;
    direction: rtl;
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom);
}

.liquid-body.home-screen-page .app-topbar {
    display: none;
}

.liquid-body.home-screen-page .app-shell {
    width: min(100%, calc(100% - 16px));
    padding-top: 10px;
}

.liquid-body.home-screen-page .app-main {
    display: block;
}

.liquid-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.liquid-background::before,
.liquid-background::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(14px);
}

.liquid-background::before {
    width: 420px;
    height: 420px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.3), rgba(123, 47, 247, 0));
}

.liquid-background::after {
    width: 320px;
    height: 320px;
    bottom: 8%;
    left: -80px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.22), rgba(192, 38, 211, 0));
}

a {
    color: inherit;
    text-decoration: none;
}

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

.app-shell {
    width: min(1440px, calc(100% - var(--lg-layout-gutter)));
    margin: 0 auto;
    padding: 12px 0 calc(var(--lg-bottom-nav-clearance) + env(safe-area-inset-bottom));
    position: relative;
    isolation: isolate;
}

.glass-surface,
.surface-card,
.pricing-card,
.detail-card,
.stat-card,
.summary-card,
.list-card,
.page-hero,
.notice-card,
.app-topbar,
.footer-surface,
.app-bottom-nav {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border: 1px solid var(--lg-border);
    box-shadow: var(--lg-shadow-soft);
}

.glass-surface::after,
.surface-card::after,
.pricing-card::after,
.detail-card::after,
.stat-card::after,
.summary-card::after,
.list-card::after,
.notice-card::after,
.footer-surface::after,
.app-bottom-nav::after,
.action-chip::after,
.home-content-panel::after,
.home-empty-state::after {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--liquid-x) var(--liquid-y), rgba(255, 255, 255, 0.22), transparent 24%),
        radial-gradient(circle at calc(100% - var(--liquid-x)) calc(100% - var(--liquid-y)), rgba(215, 249, 91, 0.1), transparent 30%),
        linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.06), transparent 58%);
    opacity: 0.55;
    transition: opacity 180ms ease;
}

.glass-surface > *,
.surface-card > *,
.pricing-card > *,
.detail-card > *,
.stat-card > *,
.summary-card > *,
.list-card > *,
.notice-card > *,
.footer-surface > *,
.app-bottom-nav > *,
.action-chip > *,
.home-content-panel > *,
.home-empty-state > * {
    position: relative;
    z-index: 1;
}

.liquid-body.is-ready .page-hero,
.liquid-body.is-ready .detail-card,
.liquid-body.is-ready .pricing-card,
.liquid-body.is-ready .list-card,
.liquid-body.is-ready .home-content-panel {
    animation: surfaceRise 620ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.app-topbar {
    position: relative;
    top: auto;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border-radius: var(--lg-radius-xl);
    margin-bottom: 20px;
    isolation: isolate;
    background: linear-gradient(180deg, rgba(39, 30, 63, 0.97) 0%, rgba(30, 23, 49, 0.96) 100%);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 42px rgba(7, 6, 16, 0.36);
}

.brand-block {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-logo {
    position: relative;
    width: 138px;
    height: 60px;
    flex: 0 0 auto;
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo::before {
    content: "A";
    position: absolute;
    inset: 7px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.7), rgba(192, 38, 211, 0.62));
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
}

.brand-logo.is-fallback::before {
    opacity: 1;
}

.brand-logo img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    min-width: 0;
}

.brand-copy strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.brand-copy span {
    display: block;
    font-size: 12px;
    color: var(--lg-text-soft);
    margin-top: 2px;
}

.topbar-copy {
    min-width: 0;
}

.topbar-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--lg-text-soft);
    font-size: 12px;
    font-weight: 700;
}

.topbar-copy h1 {
    margin: 8px 0 0;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
    font-weight: 800;
}

.topbar-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.header-chip,
.bottom-nav-item,
.button,
.button-secondary,
.button-ghost,
.status-pill,
.pricing-badge,
.trust-badge,
.hero-kicker,
.detail-chip,
.step-label,
.hero-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.header-chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--lg-text);
}

.header-chip.is-strong,
.button,
.pricing-card.is-featured .button-secondary {
    background: linear-gradient(135deg, var(--lg-primary-1), var(--lg-primary-2));
    color: #fff;
    border: 0;
    box-shadow: 0 18px 32px rgba(123, 47, 247, 0.28);
}

.header-chip.is-accent,
.button-accent {
    background: linear-gradient(135deg, var(--lg-accent), #fff079);
    color: #25163f;
    border: 0;
    box-shadow: 0 18px 32px rgba(215, 249, 91, 0.2);
}

.header-chip:hover,
.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.bottom-nav-item:hover {
    transform: translateY(-2px);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--lg-text);
}

.button-ghost {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    color: var(--lg-text-soft);
}

.app-main {
    display: grid;
    gap: var(--lg-page-gap);
    min-width: 0;
    position: relative;
    z-index: 1;
}

.app-main > * {
    min-width: 0;
}

.message-stack {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.message {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    line-height: 1.8;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(4, 3, 11, 0.18);
    animation: messageEnter 260ms ease both;
    transition: opacity 180ms ease, transform 180ms ease;
}

.message.is-dismissed {
    opacity: 0;
    transform: translateY(-8px);
}

.message p {
    margin: 0;
    min-width: 0;
}

.message-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 17px;
}

.message-close {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    color: inherit;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease;
}

.message-close:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.13);
}

.message.success {
    color: #d9ffe9;
    border-color: rgba(108, 242, 183, 0.28);
    background: rgba(108, 242, 183, 0.12);
}

.message.error,
.message.danger {
    color: #ffe3ea;
    border-color: rgba(255, 142, 167, 0.28);
    background: rgba(255, 142, 167, 0.1);
}

.message.warning,
.message.info {
    color: #fff1ca;
    border-color: rgba(246, 198, 104, 0.28);
    background: rgba(246, 198, 104, 0.1);
}

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

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: var(--lg-radius-xl);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 22px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.1), transparent 22%),
        radial-gradient(circle at 88% 22%, rgba(215, 249, 91, 0.12), transparent 16%);
    pointer-events: none;
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.hero-kicker,
.hero-chip {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--lg-text);
}

.page-hero h2,
.page-hero h3 {
    margin: 12px 0 10px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.15;
}

.page-hero p {
    margin: 0;
    color: var(--lg-text-soft);
    line-height: 1.95;
}

.hero-side,
.hero-metrics,
.metric-grid,
.surface-grid,
.pricing-grid,
.list-stack,
.trust-badges,
.stepper {
    display: grid;
    gap: 14px;
}

.hero-side {
    align-content: start;
}

.hero-metrics,
.metric-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

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

.stat-card,
.surface-card,
.detail-card,
.summary-card,
.list-card,
.notice-card {
    padding: 20px;
    border-radius: var(--lg-radius-lg);
}

.stat-card strong,
.metric-value {
    display: block;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card span,
.metric-label {
    color: var(--lg-text-soft);
    line-height: 1.8;
    font-size: 14px;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.section-header h3,
.section-header h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.3;
}

.section-header p {
    margin: 6px 0 0;
    color: var(--lg-text-soft);
    line-height: 1.85;
}

.detail-list {
    display: grid;
    gap: 12px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--lg-radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-row strong,
.detail-row span {
    line-height: 1.75;
}

.detail-row span {
    color: var(--lg-text-soft);
}

.detail-chip,
.trust-badge,
.status-pill {
    min-height: 38px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 13px;
}

.status-pill.is-success {
    background: rgba(108, 242, 183, 0.12);
    color: #d8ffec;
}

.status-pill.is-warning {
    background: rgba(246, 198, 104, 0.12);
    color: #fff1ca;
}

.status-pill.is-danger {
    background: rgba(255, 142, 167, 0.12);
    color: #ffe3ea;
}

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

.step-card {
    padding: 14px 16px;
    border-radius: var(--lg-radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-index {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 800;
}

.step-card.is-active .step-index {
    background: linear-gradient(135deg, var(--lg-primary-1), var(--lg-primary-2));
    border-color: transparent;
}

.step-title {
    display: block;
    font-weight: 800;
}

.step-copy {
    display: block;
    color: var(--lg-text-soft);
    font-size: 13px;
    margin-top: 2px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.form-grid > * {
    grid-column: span 12;
}

.form-grid .col-6 {
    grid-column: span 6;
}

.field,
.field-group {
    display: grid;
    gap: 8px;
}

.field label,
.field-group label,
.form-label {
    color: var(--lg-text);
    font-weight: 700;
    font-size: 14px;
}

input,
select,
textarea,
.form-control,
.form-select {
    width: 100%;
    min-height: 52px;
    border-radius: var(--lg-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(9, 8, 20, 0.36);
    color: var(--lg-text);
    padding: 14px 16px;
    font-family: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(192, 38, 211, 0.68);
    box-shadow: 0 0 0 4px rgba(123, 47, 247, 0.14);
}

select option {
    color: #171127;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
}

.stack-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.notice-card {
    border-color: rgba(246, 198, 104, 0.3);
    background: rgba(246, 198, 104, 0.1);
}

.notice-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

.notice-card p {
    margin: 0;
    color: var(--lg-text);
    line-height: 1.8;
}

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

.pricing-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-radius: var(--lg-radius-xl);
    background:
        radial-gradient(circle at var(--liquid-x) var(--liquid-y), rgba(215, 249, 91, 0.1), transparent 30%),
        linear-gradient(160deg, rgba(54, 42, 82, 0.96) 0%, rgba(35, 27, 56, 0.96) 48%, rgba(22, 18, 34, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.16);
}

.pricing-card.is-featured {
    border-color: rgba(215, 249, 91, 0.3);
    background:
        radial-gradient(circle at var(--liquid-x) var(--liquid-y), rgba(215, 249, 91, 0.13), transparent 28%),
        linear-gradient(160deg, rgba(74, 49, 111, 0.98) 0%, rgba(54, 35, 86, 0.98) 46%, rgba(26, 20, 43, 0.99) 100%);
    box-shadow: 0 28px 80px rgba(123, 47, 247, 0.34);
}

.pricing-card.is-featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(215, 249, 91, 0.06), rgba(123, 47, 247, 0));
    pointer-events: none;
}

.pricing-badge {
    min-height: 34px;
    padding: 0 12px;
    background: rgba(215, 249, 91, 0.16);
    color: #1e182e;
    font-size: 12px;
}

.price-value {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 16px 0 8px;
}

.price-value strong {
    font-size: clamp(38px, 5vw, 54px);
    line-height: 1;
}

.price-value span {
    color: var(--lg-text-soft);
    padding-bottom: 8px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.8;
    color: var(--lg-text-soft);
}

.feature-list i {
    color: var(--lg-accent);
    margin-top: 5px;
}

.subscription-description-list {
    margin-top: 14px;
    gap: 8px;
}

.subscription-description-list li {
    min-height: 42px;
    padding: 9px 12px;
    border-radius: var(--lg-radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--lg-text);
    align-items: center;
    line-height: 1.55;
}

.subscription-description-list li i {
    color: var(--lg-primary-2);
    margin-top: 0;
}

.subscription-cta {
    width: 100%;
    min-height: 56px;
    border-radius: var(--lg-radius-md);
    justify-content: center;
    font-size: 16px;
}

.empty-state {
    padding: 28px;
    text-align: center;
    border-radius: var(--lg-radius-xl);
}

.empty-state > i {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--lg-accent);
    font-size: 28px;
}

.button > i,
.button-secondary > i,
.button-ghost > i,
.header-chip > i,
.bottom-nav-item > i,
.empty-state .empty-icon > i {
    margin: 0;
    line-height: 1;
}

.empty-state .empty-icon > i {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
}

.empty-state h3 {
    margin: 0 0 10px;
    font-size: 26px;
}

.empty-state p {
    margin: 0;
    color: var(--lg-text-soft);
    line-height: 1.85;
}

.progress-shell {
    display: grid;
    gap: 12px;
}

.progress-track {
    width: 100%;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--lg-primary-1), var(--lg-primary-2), var(--lg-accent));
    box-shadow: 0 0 20px rgba(123, 47, 247, 0.4);
}

.installments-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.installment-card {
    padding: 16px;
}

.installment-card-header {
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.installment-detail-list {
    gap: 8px;
}

.installment-detail-list .detail-row {
    padding: 10px 12px;
}

.installment-actions {
    margin-top: 12px;
}

.installment-actions .button,
.installment-actions .button-ghost {
    width: 100%;
    min-height: 48px;
}

.payment-frame-panel {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: var(--lg-radius-xl);
}

.payment-frame-panel[hidden] {
    display: none;
}

.payment-frame-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.payment-frame-header h3 {
    margin: 8px 0 0;
    font-size: clamp(22px, 3vw, 30px);
}

.payment-frame-panel iframe {
    width: 100%;
    min-height: min(720px, calc(100vh - 180px));
    border: 0;
    border-radius: var(--lg-radius-lg);
    background: #fff;
}

.footer-surface {
    padding: 20px 24px;
    border-radius: var(--lg-radius-xl);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    margin-top: 4px;
}

.footer-surface p {
    margin: 0;
    color: var(--lg-text-soft);
    line-height: 1.85;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.app-bottom-nav {
    position: fixed;
    right: 50%;
    bottom: calc(var(--lg-bottom-nav-offset) + env(safe-area-inset-bottom));
    transform: translateX(50%);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: min(640px, calc(100% - 24px));
    padding: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(41, 31, 67, 0.985), rgba(24, 18, 41, 0.98));
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 50px rgba(7, 6, 16, 0.42);
    isolation: isolate;
    overflow: hidden;
    pointer-events: none;
}

.bottom-nav-item {
    flex: 1 1 0;
    min-height: 58px;
    padding: 8px 10px;
    background: transparent;
    color: var(--lg-text-soft);
    border: 1px solid transparent;
    flex-direction: column;
    font-size: 12px;
    min-width: 0;
    pointer-events: auto;
    touch-action: manipulation;
}

.bottom-nav-item i {
    font-size: 18px;
}

.bottom-nav-item span {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bottom-nav-item.is-active {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.32), rgba(192, 38, 211, 0.24));
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.profile-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 32px rgba(7, 6, 16, 0.24);
}

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

.media-card {
    display: flex;
    align-items: center;
    gap: 18px;
}

.muted-copy {
    color: var(--lg-text-soft);
    line-height: 1.85;
}

.app-shell.is-immersive {
    width: min(100%, calc(100% - 16px));
}

.home-screen,
.reservation-page {
    display: grid;
    gap: 20px;
}

.home-screen {
    gap: 0;
}

.home-map-stage {
    position: relative;
    min-height: clamp(360px, 54vh, 520px);
    padding: 24px;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--lg-shadow);
    background:
        radial-gradient(circle at 18% 18%, rgba(123, 47, 247, 0.2), transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(215, 249, 91, 0.1), transparent 16%),
        #09080f;
    display: grid;
    align-content: space-between;
    gap: 22px;
}

.home-map-shell {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(620px, calc(100vh - 188px), 920px);
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--lg-shadow);
    background:
        radial-gradient(circle at 18% 18%, rgba(123, 47, 247, 0.2), transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(215, 249, 91, 0.1), transparent 16%),
        #09080f;
}

#home-map,
.home-map-shell .leaflet-container,
.home-map-stage .leaflet-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(123, 47, 247, 0.2), transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(215, 249, 91, 0.1), transparent 16%),
        #09080f;
}

.home-map-shell .leaflet-tile,
.home-map-shell .maplibregl-canvas,
.home-map-stage .leaflet-tile,
.home-map-stage .maplibregl-canvas {
    filter: brightness(0.74) saturate(0.82) contrast(1.04) hue-rotate(-4deg);
}

.home-map-fade,
.home-map-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.home-map-fade {
    background:
        radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.08), transparent 20%),
        radial-gradient(circle at 84% 18%, rgba(255, 120, 203, 0.1), transparent 20%),
        linear-gradient(180deg, rgba(8, 7, 14, 0.34) 0%, rgba(8, 7, 14, 0.12) 34%, rgba(8, 7, 14, 0.68) 100%);
}

.home-map-grid {
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), #000 30%, rgba(0, 0, 0, 0.96));
}

.home-floating-meta {
    position: absolute;
    top: 20px;
    right: 20px;
    left: 20px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.home-map-top,
.home-map-copy {
    position: relative;
    z-index: 5;
}

.home-map-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.home-map-copy {
    display: grid;
    gap: 14px;
    align-self: end;
    max-width: min(760px, 100%);
    padding-top: 56px;
}

.home-map-copy h2 {
    margin: 0;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.05;
    font-weight: 800;
}

.home-map-copy p {
    margin: 0;
    max-width: 56ch;
    color: var(--lg-text-soft);
    line-height: 1.85;
}

.home-hero-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.home-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(10, 8, 20, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--lg-text);
    font-size: 13px;
    font-weight: 700;
}

.home-hero-pill.is-accent {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.54), rgba(192, 38, 211, 0.34));
}

.home-content-panel {
    position: relative;
    z-index: 6;
    margin: -46px 18px 0;
    padding: 24px;
    border-radius: 30px;
    display: grid;
    gap: 18px;
}

.floating-chip-cluster {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.floating-chip-cluster.is-secondary {
    justify-content: flex-start;
}

.home-map-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.home-map-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.home-map-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.wallet-balance-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(12, 10, 22, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--lg-shadow-soft);
}

.wallet-balance-chip strong {
    display: block;
    font-size: 16px;
    line-height: 1;
}

.wallet-balance-chip span {
    display: block;
    margin-top: 4px;
    color: var(--lg-text-soft);
    font-size: 12px;
    line-height: 1.5;
}

.home-sheet {
    position: relative;
    width: calc(100% - 36px);
    margin: auto 18px 94px;
    z-index: 25;
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 32px;
    overflow: hidden;
    transition: max-height 260ms ease, transform 260ms ease;
}

.home-sheet-inner {
    display: grid;
    gap: 18px;
    overflow: auto;
    padding-inline-end: 4px;
}

.home-sheet-inner::-webkit-scrollbar,
.filter-row::-webkit-scrollbar {
    display: none;
}

.home-sheet[data-sheet-state="collapsed"] {
    max-height: 240px;
}

.home-sheet[data-sheet-state="half"] {
    max-height: min(72vh, 700px);
}

.home-sheet[data-sheet-state="full"] {
    max-height: calc(100% - 132px);
}

.home-sheet-handle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-sheet-handle {
    width: 72px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.sheet-state-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sheet-state-toggle button {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--lg-text-soft);
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 200ms ease, background 200ms ease;
}

.sheet-state-toggle button.is-active {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.36), rgba(192, 38, 211, 0.28));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.home-heading {
    display: grid;
    gap: 10px;
}

.home-sheet-header {
    display: grid;
    gap: 16px;
}

.home-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
}

.home-heading p {
    margin: 0;
    color: var(--lg-text-soft);
    line-height: 1.9;
}

.home-overview-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.home-overview-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    max-width: 100%;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--lg-text-soft);
    font-size: 13px;
    font-weight: 700;
}

.home-overview-pill.is-accent {
    color: #fff;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.34), rgba(192, 38, 211, 0.24));
    border-color: rgba(255, 255, 255, 0.16);
}

.home-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.home-search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-search-field i {
    color: var(--lg-accent);
}

.home-search-field input {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.home-search-field input:focus {
    box-shadow: none;
}

.home-search-field input,
.home-search-field input::placeholder {
    font-size: 15px;
}

.inline-promo-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.inline-promo-card.is-compact {
    gap: 14px;
    padding: 14px 16px;
    border-radius: 22px;
}

.inline-promo-card img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 18px;
}

.inline-promo-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.46), rgba(192, 38, 211, 0.26));
    font-size: 22px;
}

.promo-copy strong {
    display: block;
    font-size: 18px;
    line-height: 1.4;
}

.promo-copy p {
    margin: 6px 0 0;
    color: var(--lg-text-soft);
    line-height: 1.8;
}

.filter-shell {
    display: grid;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-shell-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-shell-header strong {
    font-size: 15px;
    line-height: 1.5;
}

.filter-shell-header span {
    color: var(--lg-text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.action-chip {
    display: grid;
    justify-items: center;
    align-content: start;
    text-align: center;
    gap: 8px;
    min-height: 118px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--lg-text);
    transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.action-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--lg-shadow-soft);
}

.action-chip i {
    width: 46px;
    height: 46px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.42), rgba(192, 38, 211, 0.24));
}

.action-chip strong {
    font-size: 15px;
    line-height: 1.4;
}

.action-chip span {
    color: var(--lg-text-soft);
    font-size: 13px;
    line-height: 1.7;
    text-wrap: balance;
}

.filter-row {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.filter-chip {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: var(--lg-text-soft);
    white-space: nowrap;
    font-weight: 700;
    cursor: pointer;
    transition: transform 200ms ease, background 200ms ease;
}

.filter-chip.is-active,
.filter-chip.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.44), rgba(192, 38, 211, 0.28));
    border-color: rgba(255, 255, 255, 0.18);
}

.home-availability-shell {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(7, 7, 14, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-section-header {
    margin-bottom: 0;
}

.home-trip-list {
    display: grid;
    gap: 14px;
}

.home-trip-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--lg-shadow-soft);
}

.home-trip-card.is-hidden {
    display: none;
}

.home-trip-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.home-trip-top h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
}

.home-trip-top p {
    margin: 6px 0 0;
    color: var(--lg-text-soft);
    line-height: 1.8;
}

.home-trip-metrics,
.home-route-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.metric-pill,
.route-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--lg-text-soft);
    font-size: 13px;
    font-weight: 700;
}

.route-pill.is-hidden {
    display: none;
}

.more-stops-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--lg-accent);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.trip-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.price-block {
    display: grid;
    gap: 6px;
}

.price-block strong {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1;
}

.price-block span {
    color: var(--lg-text-soft);
    font-size: 13px;
}

.empty-illustration {
    width: 88px;
    height: 88px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.28), rgba(192, 38, 211, 0.16));
    box-shadow: var(--lg-shadow-soft);
    font-size: 30px;
    color: var(--lg-accent);
}

.home-sticky-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(246, 198, 104, 0.1);
    border: 1px solid rgba(246, 198, 104, 0.24);
}

.home-sticky-note i {
    color: var(--lg-warning);
    margin-top: 4px;
}

.home-sticky-note p {
    margin: 0;
    color: var(--lg-text);
    line-height: 1.85;
}

.reservation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 360px;
    gap: 20px;
}

.reservation-panel,
.summary-panel,
.form-section-card,
.payment-option {
    padding: 24px;
    border-radius: 28px;
}

.reservation-panel,
.summary-panel,
.form-section-card,
.payment-option,
.inline-surface {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border: 1px solid var(--lg-border);
    box-shadow: var(--lg-shadow-soft);
}

.form-stack,
.section-stack,
.option-stack,
.summary-list,
.price-breakdown,
.trip-type-grid,
.field-grid-two {
    display: grid;
    gap: 16px;
}

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

.form-section-card h3,
.summary-panel h3 {
    margin: 0;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.3;
}

.form-section-card p,
.summary-panel p {
    margin: 8px 0 0;
    color: var(--lg-text-soft);
    line-height: 1.85;
}

.field-shell {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.field-shell.is-hidden {
    display: none;
}

.field-shell input,
.field-shell select,
.field-shell textarea,
.field-shell .form-control,
.field-shell .form-select {
    background: rgba(9, 8, 20, 0.44);
}

.field-caption,
.micro-note {
    color: var(--lg-text-soft);
    font-size: 13px;
    line-height: 1.75;
}

.select-shell {
    position: relative;
}

.select-shell::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lg-text-soft);
    pointer-events: none;
}

.select-shell select {
    appearance: none;
    padding-left: 44px;
}

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

.trip-type-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trip-type-card.is-active {
    border-color: rgba(215, 249, 91, 0.32);
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.16), rgba(215, 249, 91, 0.08));
}

.trip-type-card strong {
    font-size: 15px;
    line-height: 1.5;
}

.trip-type-card span {
    color: var(--lg-text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-row.is-total {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.26), rgba(192, 38, 211, 0.16));
    border-color: rgba(255, 255, 255, 0.16);
}

.price-row strong {
    font-size: 15px;
}

.price-row span {
    color: var(--lg-text-soft);
    line-height: 1.7;
}

.price-row.is-total span {
    color: #fff;
    font-weight: 800;
}

.payment-option {
    display: grid;
    gap: 12px;
}

.payment-option.is-highlight {
    border-color: rgba(215, 249, 91, 0.28);
}

.payment-option strong {
    font-size: 18px;
    line-height: 1.4;
}

.payment-option p {
    margin: 0;
    color: var(--lg-text-soft);
    line-height: 1.85;
}

.payment-option button {
    width: 100%;
}

.summary-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--lg-text-soft);
    font-size: 12px;
    font-weight: 700;
}

.summary-emphasis {
    display: block;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1;
}

.loading-skeleton {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.loading-skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: skeletonShift 1.4s ease-in-out infinite;
}

@keyframes skeletonShift {
    100% {
        transform: translateX(100%);
    }
}

@keyframes surfaceRise {
    from {
        opacity: 0;
        transform: translateY(46px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1080px) {
    .page-hero,
    .booking-layout,
    .footer-surface,
    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .app-topbar {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .topbar-actions {
        justify-content: flex-start;
    }

    .home-map-stage {
        min-height: 420px;
        padding: 20px;
    }

    .home-map-copy {
        max-width: 100%;
        padding-top: 24px;
    }

    .home-content-panel {
        margin: -34px 14px 0;
        padding: 20px;
    }

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

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

@media (max-width: 820px) {
    .metric-grid.metric-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.liquid-body::after {
        content: "";
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 85;
        height: calc(86px + env(safe-area-inset-bottom));
        pointer-events: none;
        background: linear-gradient(180deg, rgba(11, 10, 20, 0), rgba(11, 10, 20, 0.94) 24%, #0b0a14 100%);
    }

    .app-shell {
        width: min(100%, calc(100% - 16px));
        padding-top: 10px;
        padding-bottom: calc(152px + env(safe-area-inset-bottom));
    }

    .app-topbar,
    .page-hero,
    .stat-card,
    .surface-card,
    .detail-card,
    .summary-card,
    .list-card,
    .pricing-card,
    .footer-surface {
        border-radius: 22px;
    }

    .app-topbar {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 12px;
        gap: 10px 12px;
        margin-bottom: 12px;
    }

    .app-topbar .brand-block {
        min-width: 0;
    }

    .app-topbar .brand-copy span {
        display: none;
    }

    .app-topbar .topbar-copy {
        min-width: 0;
        text-align: start;
    }

    .app-topbar .topbar-copy .eyebrow {
        display: none;
    }

    .app-topbar .topbar-copy h1 {
        margin: 0;
        font-size: clamp(19px, 5.6vw, 24px);
        line-height: 1.3;
    }

    .app-topbar .topbar-actions {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .app-topbar .topbar-actions::-webkit-scrollbar {
        display: none;
    }

    .app-topbar .topbar-actions .header-chip {
        flex: 0 0 auto;
        min-height: 36px;
        padding: 0 11px;
        font-size: 11px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .brand-copy span {
        font-size: 11px;
    }

    .topbar-copy .eyebrow {
        min-height: 30px;
        font-size: 11px;
        padding: 0 10px;
    }

    .topbar-copy h1 {
        margin-top: 6px;
        font-size: 28px;
    }

    .header-chip {
        min-height: 40px;
        padding: 0 14px;
        font-size: 13px;
    }

    .page-hero {
        padding: 18px;
        gap: 14px;
    }

    .page-hero h2,
    .page-hero h3 {
        font-size: 24px;
    }

    .page-hero p {
        display: none;
    }

    .form-grid .col-6 {
        grid-column: span 12;
    }

    .app-bottom-nav {
        width: calc(100% - 12px);
        bottom: 8px;
        padding: 4px;
    }

    .liquid-body.home-screen-page .app-bottom-nav {
        background: linear-gradient(180deg, rgba(46, 36, 74, 0.96), rgba(31, 24, 52, 0.94));
        border-color: rgba(255, 255, 255, 0.14);
        box-shadow: 0 20px 44px rgba(7, 6, 16, 0.42);
    }

    .bottom-nav-item {
        min-height: 46px;
        padding: 5px 6px;
        font-size: 10px;
    }

    .bottom-nav-item i {
        font-size: 16px;
    }

    .home-map-stage {
        min-height: 0;
        padding: 14px;
        border-radius: 28px;
        gap: 14px;
    }

    .home-map-top {
        display: grid;
        gap: 10px;
    }

    .home-map-brand {
        display: inline-flex;
        width: auto;
        gap: 10px;
    }

    .home-map-brand .brand-logo {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        padding: 7px;
    }

    .home-map-brand .brand-copy strong {
        font-size: 15px;
    }

    .home-map-actions {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    .home-map-actions .header-chip {
        flex: 1 1 calc(50% - 4px);
        min-height: 46px;
        padding: 0 10px;
        font-size: 12px;
    }

    .home-map-copy {
        gap: 10px;
        padding-top: 0;
    }

    .home-map-copy .hero-kicker {
        justify-self: start;
        width: max-content;
        max-width: 100%;
        min-height: 34px;
        padding: 0 12px;
        font-size: 12px;
    }

    .home-map-copy h2 {
        max-width: 9ch;
        font-size: clamp(20px, 7vw, 28px);
        line-height: 1.08;
    }

    .home-map-copy p {
        font-size: 14px;
        line-height: 1.7;
    }

    .home-hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-hero-pill {
        justify-content: flex-start;
        min-height: 34px;
        padding: 0 12px;
        font-size: 11px;
    }

    .home-hero-stats .home-hero-pill:nth-child(n + 3) {
        display: none;
    }

    .home-content-panel {
        margin: 10px 0 0;
        padding: 14px;
        border-radius: 24px;
    }

    .home-search-row {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: stretch;
    }

    .inline-promo-card {
        grid-template-columns: 1fr;
    }

    .home-search-row {
        gap: 10px;
    }

    .home-search-field {
        min-height: 52px;
        padding: 0 14px;
        border-radius: 18px;
    }

    .home-search-field input,
    .home-search-field input::placeholder {
        font-size: 13px;
    }

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

    .action-chip {
        min-height: 92px;
        padding: 12px 10px;
        border-radius: 20px;
    }

    .action-chip i {
        width: 38px;
        height: 38px;
        border-radius: 16px;
    }

    .action-chip strong {
        font-size: 13px;
    }

    .action-chip span {
        display: none;
    }

    .filter-shell,
    .home-availability-shell {
        gap: 14px;
        padding: 14px;
    }

    .filter-shell-header {
        display: grid;
        gap: 4px;
    }

    .home-trip-top h3 {
        font-size: 19px;
    }

    .home-trip-card {
        padding: 18px;
        border-radius: 22px;
    }

    .home-search-row .button-secondary {
        width: auto;
        min-height: 48px;
        padding: 0 14px;
        white-space: nowrap;
    }

    .trip-type-grid,
    .field-grid-two {
        grid-template-columns: 1fr;
    }

    .inline-promo-card img {
        width: 100%;
        height: 180px;
    }

    .home-map-copy p,
    .inline-promo-card.is-compact {
        display: none;
    }

    .home-map-brand .brand-copy span {
        display: none;
    }

    .trip-footer-row {
        align-items: stretch;
    }

    .section-header,
    .home-trip-top {
        display: grid;
        gap: 10px;
    }

    .detail-chip,
    .status-pill,
    .metric-pill,
    .route-pill {
        max-width: 100%;
    }
}

.home-screen-simple {
    gap: 0;
}

.liquid-body.home-screen-page {
    background: #0b0a14;
}

.liquid-body.home-screen-page .app-shell {
    position: relative;
    z-index: 2;
}

.liquid-body.home-screen-page #home-map {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.74;
}

.liquid-body.home-screen-page .home-map-stage {
    background: transparent;
    box-shadow: none;
}

.liquid-body.home-screen-page .home-map-stage::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--page-liquid-x) var(--page-liquid-y), rgba(123, 47, 247, 0.3), transparent 22%),
        linear-gradient(180deg, rgba(11, 10, 20, 0.12), rgba(11, 10, 20, 0.78));
}

.home-screen-simple .home-map-stage {
    min-height: clamp(240px, 34vh, 340px);
    padding: 18px;
    align-content: space-between;
    gap: 18px;
}

.home-screen-simple .home-map-top {
    align-items: flex-start;
}

.home-screen-simple .home-map-actions {
    justify-content: flex-start;
    gap: 10px;
}

.home-screen-simple .home-mini-chip {
    min-height: 46px;
    padding: 0 14px;
}

.home-screen-simple .home-map-brand {
    gap: 10px;
}

.home-screen-simple .home-map-brand .brand-logo {
    width: 54px;
    height: 54px;
}

.home-screen-simple .home-map-brand .brand-copy strong {
    font-size: 20px;
}

.home-screen-simple .home-map-statusbar {
    position: relative;
    z-index: 5;
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.home-screen-simple .home-map-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(10, 8, 20, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--lg-text);
    font-size: 13px;
    font-weight: 700;
    flex: 0 0 auto;
    max-width: min(260px, 72vw);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-screen-simple .home-map-statusbar::-webkit-scrollbar {
    height: 4px;
}

.home-screen-simple .home-map-statusbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.24);
    border-radius: 999px;
}

.home-screen-simple .home-content-panel {
    margin: -34px 14px 0;
    padding: 22px;
    gap: 16px;
}

.home-panel-heading {
    display: grid;
    gap: 4px;
}

.home-panel-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 800;
}

.home-panel-heading p {
    margin: 0;
    color: var(--lg-text-soft);
    font-size: 15px;
}

.home-screen-simple .home-search-row {
    grid-template-columns: minmax(0, 1fr) auto;
}

.home-choice-row {
    display: grid;
    gap: 10px;
}

.home-choice-pills {
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.home-choice-pills::-webkit-scrollbar {
    display: block;
    height: 6px;
}

.home-choice-pills::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.home-filter-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.home-filter-grid::-webkit-scrollbar {
    height: 6px;
}

.home-filter-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.home-filter-grid .filter-chip {
    min-width: 132px;
}

.filter-chip-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-grid-classic {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(184px, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding: 2px 0 10px;
    scrollbar-width: thin;
}

.action-grid-classic .action-chip {
    min-height: 104px;
    gap: 12px;
    align-content: center;
    scroll-snap-align: start;
}

.action-grid-classic::-webkit-scrollbar {
    height: 6px;
}

.action-grid-classic::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.action-grid-classic .action-chip span {
    display: none;
}

.action-grid-classic .action-chip strong {
    font-size: 14px;
}

.home-availability-shell-classic {
    padding: 16px;
    gap: 14px;
}

.home-availability-shell-classic > .empty-state {
    padding-bottom: calc(124px + env(safe-area-inset-bottom));
}

.home-section-header-simple {
    text-align: center;
    justify-items: center;
}

.home-section-header-simple .detail-chip {
    margin-inline: auto;
}

.home-empty-state {
    animation: none;
}

.home-empty-state .stack-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 560px);
    max-width: 520px;
    margin-inline: auto;
}

.home-empty-state .button,
.home-empty-state .button-secondary {
    min-width: 0;
    min-height: 62px;
    padding: 7px 10px 7px 18px;
    border-radius: 999px;
    font-size: 16px;
    justify-content: space-between;
    text-align: start;
    white-space: normal;
    overflow: visible;
}

.home-empty-state .button span,
.home-empty-state .button-secondary span {
    min-width: 0;
    line-height: 1.32;
    overflow-wrap: anywhere;
}

.home-empty-state .button i,
.home-empty-state .button-secondary i {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: var(--lg-accent);
    font-size: 22px;
}

.home-empty-state .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.home-section-header-simple {
    margin-bottom: 0;
}

.home-section-header-simple h2 {
    font-size: clamp(22px, 3vw, 30px);
}

.home-trip-list-classic {
    gap: 12px;
}

.home-trip-card-classic {
    padding: 18px;
    gap: 14px;
}

.home-trip-top-classic {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.home-trip-top-classic h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
}

.home-trip-top-classic p {
    margin: 6px 0 0;
    color: var(--lg-text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.home-trip-time {
    display: grid;
    gap: 4px;
    text-align: left;
}

.home-trip-time strong {
    font-size: 22px;
    line-height: 1;
}

.home-trip-time span {
    color: var(--lg-text-soft);
    font-size: 13px;
}

.home-route-pills-classic {
    gap: 8px;
}

.route-pill-muted {
    background: rgba(255, 255, 255, 0.04);
}

.home-screen-simple .trip-footer-row {
    align-items: center;
}

.home-screen-simple .price-block strong {
    font-size: clamp(24px, 3vw, 32px);
}

.home-empty-state .stack-actions {
    gap: 10px;
}

@media (max-width: 1080px) {
    .home-screen-simple .home-content-panel {
        margin: -26px 10px 0;
        padding: 20px;
    }

    .action-grid-classic {
        grid-auto-columns: minmax(170px, 42vw);
    }
}

@media (max-width: 768px) {
    .home-screen-simple .home-map-stage {
        min-height: 184px;
        padding: 14px;
        border-radius: 30px;
        gap: 14px;
    }

    .home-screen-simple .home-map-top {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: start;
        gap: 10px;
    }

    .home-screen-simple .home-map-actions {
        width: auto;
        justify-content: flex-start;
        gap: 8px;
        flex-wrap: wrap;
    }

    .home-screen-simple .home-mini-chip {
        min-height: 42px;
        padding: 0 12px;
        font-size: 12px;
    }

    .home-screen-simple .home-map-brand {
        justify-self: end;
    }

    .home-screen-simple .home-map-brand .brand-logo {
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    .home-screen-simple .home-map-brand .brand-copy strong {
        font-size: 15px;
    }

    .home-screen-simple .home-map-brand .brand-copy span {
        display: none;
    }

    .home-screen-simple .home-map-statusbar {
        gap: 8px;
    }

    .home-screen-simple .home-map-status-pill {
        min-height: 34px;
        padding: 0 12px;
        font-size: 11px;
    }

    .home-screen-simple .home-content-panel {
        margin: 8px 0 0;
        padding: 14px;
        border-radius: 26px;
    }

    .home-panel-heading h2 {
        font-size: 30px;
    }

    .home-panel-heading p {
        font-size: 14px;
    }

    .home-screen-simple .home-search-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-filter-grid {
        display: flex;
        flex-wrap: nowrap;
    }

    .action-grid-classic {
        grid-auto-columns: minmax(156px, 48%);
        margin-inline: -2px;
        gap: 10px;
    }

    .action-grid-classic .action-chip {
        min-height: 78px;
        padding: 10px 8px;
    }

    .action-grid-classic .action-chip i {
        width: 34px;
        height: 34px;
    }

    .action-grid-classic .action-chip strong {
        font-size: 13px;
    }

    .home-availability-shell-classic {
        padding: 14px;
        margin-top: calc(var(--lg-bottom-nav-clearance) + env(safe-area-inset-bottom));
    }

    .home-section-header-simple {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        text-align: start;
    }

    .home-section-header-simple p {
        display: none;
    }

    .home-section-header-simple .detail-chip {
        min-height: 34px;
        padding: 0 12px;
        margin-inline: 0;
        font-size: 12px;
        flex: 0 0 auto;
    }

    .home-trip-top-classic {
        display: grid;
        gap: 10px;
    }

    .home-trip-time {
        text-align: right;
    }

    .home-screen-simple .trip-footer-row {
        align-items: stretch;
    }

    .home-empty-state .stack-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home-empty-state .button,
    .home-empty-state .button-secondary {
        min-height: 56px;
        padding: 6px 7px 6px 10px;
        font-size: 12px;
    }

    .home-empty-state .button i,
    .home-empty-state .button-secondary i {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 18px;
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .home-empty-state .stack-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.liquid-body.subscriptions-page .page-hero {
        padding: 16px;
        gap: 10px;
    }

    body.liquid-body.subscriptions-page .page-hero .hero-side {
        display: none;
    }

    body.liquid-body.subscriptions-page .page-hero h2 {
        margin: 10px 0 0;
        font-size: clamp(22px, 6.2vw, 28px);
        line-height: 1.18;
    }

    body.liquid-body.subscriptions-page .page-hero .trust-badges {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }

    body.liquid-body.subscriptions-page .page-hero .trust-badge {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 0 10px;
        font-size: 11px;
    }

    body.liquid-body.subscriptions-page .pricing-grid {
        margin-top: calc(var(--lg-bottom-nav-clearance) + 48px + env(safe-area-inset-bottom));
    }
}

/* Home booking console */
.booking-console {
    gap: 14px;
    padding: 20px;
    background:
        radial-gradient(circle at var(--liquid-x) var(--liquid-y), rgba(215, 249, 91, 0.08), transparent 26%),
        linear-gradient(155deg, rgba(34, 30, 43, 0.97), rgba(20, 18, 28, 0.98));
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 26px 70px rgba(4, 3, 10, 0.44);
}

.booking-console-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.booking-console-mark {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #12100c;
    background: var(--lg-accent);
    box-shadow: 0 12px 28px rgba(215, 249, 91, 0.16);
    transform: rotate(-7deg);
}

.booking-console-mark i {
    font-size: 20px;
}

.booking-console-kicker {
    display: block;
    color: var(--lg-accent);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.55;
    letter-spacing: 0.04em;
}

.booking-console .home-panel-heading {
    gap: 5px;
}

.booking-console .home-panel-heading h2 {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.22;
}

.booking-console .home-panel-heading p {
    line-height: 1.7;
}

.booking-console-search .home-search-field {
    min-height: 56px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(5, 5, 10, 0.34);
}

.booking-console-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    color: var(--lg-text);
}

/* A long university chip must never widen the whole booking console. */
.booking-console > *,
.home-choice-row,
.quick-services-shell {
    min-inline-size: 0;
    max-inline-size: 100%;
}

.booking-console-label span {
    font-size: 13px;
    font-weight: 800;
}

.booking-console-label small {
    color: var(--lg-text-soft);
    font-size: 10px;
}

.booking-console-services-label {
    margin-top: 2px;
}

.booking-console .home-choice-pills,
.booking-console .home-filter-grid {
    min-inline-size: 0;
    max-inline-size: 100%;
    gap: 8px;
    padding: 0 0 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
}

.booking-console .home-choice-pills::-webkit-scrollbar,
.booking-console .home-filter-grid::-webkit-scrollbar,
.booking-console .quick-services::-webkit-scrollbar {
    display: none;
}

.booking-console .filter-chip {
    min-height: 42px;
    padding: 0 15px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.055);
}

.booking-console .filter-chip.is-active {
    color: #17120d;
    border-color: var(--lg-accent);
    background: var(--lg-accent);
}

.quick-services-shell {
    position: relative;
}

.quick-services.action-grid-classic {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
    gap: 11px;
    padding: 2px;
    overflow: visible;
    scroll-snap-type: none;
    scrollbar-width: none;
}

.quick-services .action-chip {
    position: relative;
    min-inline-size: 0;
    min-height: 102px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 21px;
    color: var(--lg-text);
    text-align: start;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(2, 1, 7, 0.16);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quick-services .action-chip::before {
    position: absolute;
    inset: auto -12% -75% auto;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: rgba(215, 249, 91, 0.12);
    content: "";
    filter: blur(2px);
}

.quick-services .action-chip:hover,
.quick-services .action-chip:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(215, 249, 91, 0.48);
    color: var(--lg-text);
    background: linear-gradient(135deg, rgba(215, 249, 91, 0.16), rgba(158, 55, 244, 0.15));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 34px rgba(5, 2, 12, 0.28);
}

.quick-service-icon {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(215, 249, 91, 0.26);
    border-radius: 15px;
    color: var(--lg-accent);
    background: rgba(215, 249, 91, 0.11);
    font-size: 18px;
}

.quick-services.action-grid-classic .action-chip span.quick-service-icon {
    display: grid;
}

.quick-services.action-grid-classic .action-chip .quick-service-icon i {
    width: auto;
    height: auto;
    display: block;
    border-radius: 0;
    color: inherit;
    background: transparent;
}

.quick-service-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: grid;
    gap: 4px;
}

.quick-services.action-grid-classic .action-chip span.quick-service-copy {
    display: grid;
}

.quick-services .action-chip strong {
    font-size: 14px;
    line-height: 1.35;
}

.quick-services .action-chip small {
    color: var(--lg-text-soft);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}

.quick-service-arrow {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    transition: transform 180ms ease, color 180ms ease;
}

.quick-services.action-grid-classic .action-chip i.quick-service-arrow {
    width: auto;
    height: auto;
    display: block;
    border-radius: 0;
    background: transparent;
}

.quick-services .action-chip:hover .quick-service-arrow,
.quick-services .action-chip:focus-visible .quick-service-arrow {
    color: var(--lg-accent);
    transform: translateX(-3px);
}

.quick-services .action-chip-primary {
    border-color: rgba(215, 249, 91, 0.64);
    background: linear-gradient(135deg, rgba(215, 249, 91, 0.29), rgba(158, 55, 244, 0.45));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 16px 30px rgba(148, 44, 242, 0.24);
}

.quick-services .action-chip-primary .quick-service-icon {
    color: #21152d;
    background: var(--lg-accent);
}

.quick-services .action-chip-primary small,
.quick-services .action-chip-primary .quick-service-arrow {
    color: rgba(255, 255, 255, 0.8);
}

.quick-services-swipe-hint,
.quick-services-pagination {
    display: none;
}

.category-carousel,
.category-carousel-viewport {
    min-inline-size: 0;
}

.category-carousel-page {
    display: contents;
}

.category-carousel-controls {
    display: none;
}

.availability-panel {
    margin-top: 2px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(7, 7, 13, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.availability-panel .home-section-header-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: start;
}

.availability-panel .home-section-header-simple .detail-chip {
    margin: 0;
    flex: 0 0 auto;
}

.availability-empty {
    min-height: 0;
    padding: 22px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    text-align: start;
    animation: none !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045));
}

.availability-panel > .availability-empty {
    padding-bottom: 22px;
}

.availability-empty .empty-illustration i {
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 0;
    background: transparent;
    font-size: 22px;
}

.availability-empty .empty-illustration {
    width: 64px;
    height: 64px;
    margin: 0;
    border-radius: 20px;
    color: var(--lg-accent);
    background: rgba(215, 249, 91, 0.1);
    box-shadow: none;
}

.availability-empty-copy h3,
.availability-empty-copy p {
    margin: 0;
}

.availability-empty-copy h3 {
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.45;
}

.availability-empty-copy p {
    margin-top: 5px;
    color: var(--lg-text-soft);
    font-size: 13px;
    line-height: 1.75;
}

.availability-empty .stack-actions {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin: 2px 0 0;
    gap: 8px;
}

.availability-empty .button,
.availability-empty .button-secondary {
    min-height: 52px;
    border-radius: 16px;
    font-size: 13px;
}

.availability-empty .button i,
.availability-empty .button-secondary i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: 12px;
    line-height: 1;
    font-size: 15px;
}

.liquid-body.is-ready .booking-console {
    animation: bookingConsoleIn 520ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.home-journey-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 4px 2px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-journey-kicker,
.booking-state,
.booking-closed-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 800;
}

.home-journey-kicker {
    color: var(--lg-accent);
}

.home-journey-banner h1 {
    margin: 5px 0 3px;
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1.35;
}

.home-journey-banner p {
    margin: 0;
    color: var(--lg-text-soft);
    font-size: 13px;
    line-height: 1.75;
}

.home-journey-stats {
    display: grid;
    justify-items: end;
    gap: 8px;
    flex: 0 0 auto;
    color: var(--lg-text-soft);
    font-size: 12px;
    font-weight: 700;
}

.home-journey-stats strong {
    margin-inline-end: 4px;
    color: var(--lg-text);
    font-size: 18px;
}

.home-journey-stats .is-open,
.booking-state.is-open {
    color: var(--lg-success);
}

.home-journey-stats .is-closed,
.booking-state.is-closed,
.booking-closed-note {
    color: var(--lg-warning);
}

.home-trip-meta {
    display: grid;
    justify-items: end;
    gap: 7px;
    text-align: end;
}

.booking-state {
    padding: 5px 9px;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    white-space: nowrap;
}

.booking-closed-note {
    min-height: 46px;
    justify-content: center;
    padding: 9px 12px;
    border: 1px solid rgba(246, 198, 104, 0.25);
    border-radius: 14px;
    background: rgba(246, 198, 104, 0.09);
    text-align: center;
    line-height: 1.55;
}

.action-chip-primary {
    border-color: rgba(215, 249, 91, 0.36);
    background: linear-gradient(135deg, rgba(215, 249, 91, 0.2), rgba(123, 47, 247, 0.18));
}

.action-chip small {
    display: block;
    margin-top: 2px;
    color: var(--lg-text-soft);
    font-size: 10px;
    font-weight: 700;
}

@keyframes bookingConsoleIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes quickServiceSwipeHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-7px); }
}

@media (max-width: 768px) {
    .home-journey-banner {
        display: grid;
        gap: 12px;
    }

    .home-journey-stats {
        grid-template-columns: repeat(2, max-content);
        justify-content: start;
        justify-items: start;
    }

    .home-trip-top {
        align-items: flex-start;
    }

    .booking-state {
        font-size: 10px;
    }

    .booking-console {
        padding: 14px;
        gap: 10px;
        border-radius: 24px;
    }

    .home-screen-simple .home-map-stage {
        min-height: 168px;
    }

    .booking-console-services-label {
        display: none;
    }

    .booking-console-header {
        gap: 11px;
    }

    .booking-console-mark {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 15px;
    }

    .booking-console .home-panel-heading h2 {
        font-size: 27px;
    }

    .booking-console .home-panel-heading p {
        display: block;
        font-size: 12px;
    }

    .booking-console-search .home-search-field {
        min-height: 50px;
    }

    .quick-services.action-grid-classic {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: inline mandatory;
        scroll-behavior: smooth;
        overscroll-behavior-inline: contain;
        margin-inline: 0;
        padding: 0 0 8px;
        scroll-padding-inline: 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;
    }

    .quick-services.action-grid-classic .action-chip {
        flex: 0 0 100%;
        min-height: 94px;
        padding: 14px;
        scroll-snap-align: start;
        touch-action: pan-x pan-y;
    }

    .quick-services-shell::after {
        display: none;
    }

    .quick-services-shell {
        margin-top: -6px;
    }

    .booking-console .home-choice-pills,
    .booking-console .home-filter-grid {
        display: flex;
        flex-wrap: wrap;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .booking-console .home-choice-pills .filter-chip,
    .booking-console .home-filter-grid .filter-chip {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Passenger trip-type filters are short labels, so three per row keeps
       the quick-service card clear of the persistent bottom navigation. */
    .booking-console .home-filter-grid .filter-chip {
        flex: 0 0 calc((100% - 16px) / 3);
        min-height: 40px;
        padding-inline: 7px;
        font-size: 12px;
    }

    .category-carousel {
        display: grid;
        gap: 8px;
    }

    .category-carousel-viewport {
        overflow: hidden;
        border-radius: 16px;
    }

    .booking-console .category-carousel-track.home-choice-pills {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0;
        scroll-snap-type: inline mandatory;
        scroll-behavior: smooth;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;
    }

    .category-carousel-track::-webkit-scrollbar {
        display: none;
    }

    .category-carousel-page {
        display: grid;
        flex: 0 0 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        scroll-snap-align: start;
    }

    .booking-console .category-carousel-page .filter-chip {
        width: 100%;
        min-width: 0;
        min-height: 42px;
        padding-inline: 10px;
    }

    .category-carousel-controls {
        display: none;
    }

    .category-carousel-arrow {
        width: 34px;
        height: 30px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 10px;
        color: var(--lg-text);
        background: rgba(255, 255, 255, 0.07);
        cursor: pointer;
    }

    .category-carousel-arrow:active {
        transform: scale(0.96);
    }

    .category-carousel-position {
        min-width: 52px;
        color: var(--lg-text-soft);
        font-size: 11px;
        font-weight: 800;
        text-align: center;
    }

    .quick-services-swipe-hint {
        display: none;
    }

    .quick-services-swipe-hint i {
        color: var(--lg-accent);
        animation: quickServiceSwipeHint 1.7s ease-in-out infinite;
    }

    .quick-services-pagination {
        display: flex;
        justify-content: center;
        gap: 5px;
        padding-top: 1px;
    }

    .quick-services-pagination span {
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.26);
        transition: width 180ms ease, background 180ms ease;
    }

    .quick-services-pagination span.is-active {
        width: 22px;
        background: var(--lg-accent);
    }

    .availability-panel {
        margin-top: 0;
        padding: 12px;
    }

    .availability-panel .home-section-header-simple h2 {
        font-size: 19px;
    }

    .availability-empty {
        padding: 12px;
        gap: 10px;
    }

    .availability-panel > .availability-empty {
        padding-bottom: 12px;
    }

    .availability-empty .empty-illustration {
        width: 52px;
        height: 52px;
        border-radius: 17px;
    }

    .availability-empty-copy h3 {
        font-size: 17px;
    }

    .availability-empty-copy p {
        font-size: 12px;
    }

    .availability-empty .button,
    .availability-empty .button-secondary {
        min-height: 48px;
    }
}

@media (max-width: 360px) {
    .availability-empty .stack-actions {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .liquid-body.is-ready .booking-console {
        animation: none;
    }
}

/* Brand wordmark and advertisement dialog */
.brand-logo-wordmark,
.app-topbar .brand-logo-wordmark,
.home-screen-simple .home-map-brand .brand-logo-wordmark {
    width: 146px;
    height: 64px;
    flex: 0 0 146px;
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.brand-logo-wordmark img {
    filter: drop-shadow(0 9px 18px rgba(3, 2, 8, 0.28));
}

.advert-popup[hidden] {
    display: none;
}

.advert-popup {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    padding: 20px;
    direction: rtl;
    opacity: 0;
    visibility: hidden;
    transition: opacity 240ms ease, visibility 240ms ease;
}

.advert-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.advert-popup-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(4, 3, 10, 0.76);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    cursor: default;
}

.advert-popup-card {
    position: relative;
    width: min(560px, 100%);
    max-height: calc(100dvh - 40px);
    display: grid;
    gap: 14px;
    padding: 18px;
    overflow: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    color: var(--lg-text);
    background:
        radial-gradient(circle at 82% 8%, rgba(215, 249, 91, 0.12), transparent 26%),
        linear-gradient(155deg, rgba(38, 31, 53, 0.98), rgba(15, 13, 24, 0.99));
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(24px) scale(0.97);
    transition: transform 340ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.advert-popup.is-open .advert-popup-card {
    transform: translateY(0) scale(1);
}

.advert-popup-header,
.advert-popup-caption,
.advert-popup-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.advert-popup-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
    color: var(--lg-accent);
    font-size: 11px;
    font-weight: 800;
}

.advert-popup-header h2 {
    margin: 0;
    font-size: clamp(21px, 4vw, 28px);
    line-height: 1.35;
    font-weight: 800;
}

.advert-popup-close,
.advert-popup-arrow {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--lg-text);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    transition: transform 180ms ease, background 180ms ease;
}

.advert-popup-close {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 18px;
}

.advert-popup-close:hover,
.advert-popup-arrow:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
}

.advert-popup-slide {
    display: none;
    gap: 12px;
}

.advert-popup-slide.is-active {
    display: grid;
    animation: advertSlideIn 280ms ease both;
}

.advert-popup-media {
    min-height: 190px;
    max-height: min(52dvh, 470px);
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: rgba(4, 4, 9, 0.54);
}

.advert-popup-media img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: min(52dvh, 470px);
    object-fit: contain;
}

.advert-popup-caption > div {
    min-width: 0;
}

.advert-popup-caption span {
    display: block;
    color: var(--lg-text-soft);
    font-size: 10px;
    line-height: 1.5;
}

.advert-popup-caption h3 {
    margin: 2px 0 0;
    overflow: hidden;
    color: var(--lg-text);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.advert-popup-action {
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border-radius: 14px;
    color: #17120d;
    background: var(--lg-accent);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(215, 249, 91, 0.14);
}

.advert-popup-controls {
    justify-content: center;
    flex-wrap: wrap;
}

.advert-popup-inline-nav {
    display: none;
}

.advert-popup-arrow {
    min-width: 98px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 13px;
    border-radius: 13px;
    font-size: 12px;
    font-family: inherit;
    font-weight: 800;
}

.advert-popup-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.advert-popup-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    transition: width 180ms ease, background 180ms ease;
}

.advert-popup-dot.is-active {
    width: 24px;
    background: var(--lg-accent);
}

.advert-popup-position {
    min-width: 54px;
    color: var(--lg-text-soft);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

body.advert-popup-open {
    overflow: hidden;
}

body.advert-popup-open .app-bottom-nav {
    visibility: hidden;
    pointer-events: none;
}

.liquid-body .empty-state .empty-icon {
    width: 56px !important;
    height: 56px !important;
    display: inline-grid !important;
    place-items: center !important;
    margin: 0 auto 14px !important;
    border: 1px solid rgba(215, 249, 91, 0.14) !important;
    border-radius: 18px !important;
    color: var(--lg-accent) !important;
    background: rgba(215, 249, 91, 0.09) !important;
    box-shadow: none !important;
    font-size: 0 !important;
}

.liquid-body .empty-state .empty-icon > i {
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 22px !important;
    line-height: 1 !important;
}

@keyframes advertSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .brand-logo-wordmark,
    .app-topbar .brand-logo-wordmark,
    .home-screen-simple .home-map-brand .brand-logo-wordmark {
        width: 114px;
        height: 50px;
        flex-basis: 114px;
    }

    .booking-console .home-panel-heading {
        gap: 4px;
    }
}

@media (max-width: 600px) {
    .advert-popup {
        align-items: end;
        padding: 0;
    }

    .advert-popup-card {
        width: 100%;
        max-height: min(88dvh, 760px);
        padding: 16px 14px calc(16px + env(safe-area-inset-bottom));
        gap: 12px;
        border-width: 1px 0 0;
        border-radius: 28px 28px 0 0;
        transform: translateY(100%);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .advert-popup.is-open .advert-popup-card {
        transform: translateY(0);
    }

    .advert-popup-media {
        min-height: 160px;
        max-height: min(38dvh, 320px);
        border-radius: 19px;
    }

    .advert-popup-media img {
        max-height: min(38dvh, 320px);
    }

    .advert-popup-caption {
        align-items: flex-end;
    }

    .advert-popup-action {
        min-height: 42px;
        padding: 0 13px;
    }

    .advert-popup-inline-nav {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 8px;
        padding: 7px;
        border: 1px solid rgba(215, 249, 91, 0.48);
        border-radius: 16px;
        background: rgba(7, 6, 16, 0.94);
    }

    .advert-popup-inline-nav button {
        min-height: 43px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 0 10px;
        border: 1px solid rgba(255, 255, 255, 0.34);
        border-radius: 12px;
        color: #fff;
        background: linear-gradient(135deg, #a529f3, #db1ed4);
        box-shadow: 0 7px 16px rgba(161, 40, 242, 0.3);
        font: inherit;
        font-size: 12px;
        font-weight: 800;
    }

    .advert-popup-inline-nav > span {
        min-width: 42px;
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        text-align: center;
    }

    .advert-popup-controls {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .advert-popup,
    .advert-popup-card,
    .advert-popup-slide.is-active {
        animation: none;
        transition: none;
    }
}

/* Form reservation wizard */
.form-reservation-page .app-main {
    width: 100%;
}

.form-reservation-page .app-bottom-nav,
body.form-reservation-page::after {
    display: none;
}

.reservation-wizard {
    width: min(100%, 980px);
    display: grid;
    gap: 16px;
    margin-inline: auto;
    padding-bottom: 24px;
}

.wizard-intro,
.wizard-progress-shell,
.wizard-form-card {
    border-color: rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at var(--liquid-x, 78%) var(--liquid-y, 18%), rgba(215, 249, 91, 0.07), transparent 24%),
        linear-gradient(155deg, rgba(34, 29, 45, 0.97), rgba(17, 15, 25, 0.98));
    box-shadow: 0 22px 58px rgba(3, 2, 9, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wizard-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border-radius: 26px;
}

.wizard-intro-copy {
    min-width: 0;
}

.wizard-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
    color: var(--lg-accent);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 800;
}

.wizard-intro h2 {
    margin: 0;
    color: var(--lg-text);
    font-size: clamp(21px, 3vw, 30px);
    line-height: 1.45;
    font-weight: 800;
}

.wizard-intro p {
    max-width: 620px;
    margin: 5px 0 0;
    color: rgba(241, 237, 249, 0.72);
    font-size: 13px;
    line-height: 1.8;
}

.wizard-price-pills {
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
}

.wizard-price-pills > span {
    min-width: 110px;
    display: grid;
    gap: 2px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.055);
}

.wizard-price-pills small {
    color: var(--lg-text-soft);
    font-size: 10px;
    line-height: 1.5;
}

.wizard-price-pills strong {
    color: var(--lg-accent);
    font-size: 16px;
    line-height: 1.45;
}

.wizard-progress-shell {
    position: sticky;
    top: 8px;
    z-index: 30;
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 22px;
    backdrop-filter: blur(28px) saturate(135%);
    -webkit-backdrop-filter: blur(28px) saturate(135%);
}

.wizard-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wizard-progress-meta span {
    color: var(--lg-text-soft);
    font-size: 11px;
    font-weight: 700;
}

.wizard-progress-meta strong {
    color: var(--lg-text);
    font-size: 13px;
    line-height: 1.5;
}

.wizard-progress-track {
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
}

.wizard-progress-track span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--lg-primary-1), var(--lg-primary-2), var(--lg-accent));
    box-shadow: 0 0 18px rgba(215, 249, 91, 0.2);
    transition: width 320ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.wizard-stepper {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
}

.wizard-stepper::-webkit-scrollbar {
    display: none;
}

.wizard-step-tab {
    min-width: 92px;
    min-height: 42px;
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    color: rgba(241, 237, 249, 0.56);
    background: rgba(255, 255, 255, 0.035);
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.wizard-step-tab span {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: inherit;
    background: rgba(255, 255, 255, 0.08);
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
}

.wizard-step-tab strong {
    font-size: 11px;
    line-height: 1.4;
    white-space: nowrap;
}

.wizard-step-tab.is-active {
    color: #fff;
    border-color: rgba(168, 67, 241, 0.6);
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.4), rgba(192, 38, 211, 0.24));
}

.wizard-step-tab.is-active span {
    color: #17120d;
    background: var(--lg-accent);
}

.wizard-step-tab.is-complete:not(.is-active) {
    color: var(--lg-accent);
    border-color: rgba(215, 249, 91, 0.16);
}

.wizard-step-tab.is-complete:not(.is-active) span {
    font-size: 0;
}

.wizard-step-tab.is-complete:not(.is-active) span::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;
}

.wizard-form-card {
    position: relative;
    min-height: 480px;
    padding: 22px;
    border-radius: 28px;
}

.wizard-step[hidden],
.wizard-step-tab[hidden],
#arrivalTimeField[hidden],
#backTimeField[hidden] {
    display: none !important;
}

.wizard-step.is-active {
    display: grid;
    gap: 22px;
    animation: wizardStepIn 300ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.wizard-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.wizard-step-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(215, 249, 91, 0.18);
    border-radius: 17px;
    color: var(--lg-accent);
    background: rgba(215, 249, 91, 0.09);
    font-size: 19px;
}

.wizard-step-header > div {
    min-width: 0;
}

.wizard-step-header > div > span {
    display: block;
    margin-bottom: 2px;
    color: var(--lg-accent);
    font-size: 10px;
    line-height: 1.5;
    font-weight: 800;
}

.wizard-step-header h3 {
    margin: 0;
    color: var(--lg-text);
    font-size: clamp(21px, 3vw, 28px);
    line-height: 1.4;
    font-weight: 800;
}

.wizard-step-header p {
    margin: 3px 0 0;
    color: rgba(241, 237, 249, 0.68);
    font-size: 12px;
    line-height: 1.75;
}

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

.reservation-wizard .field-shell {
    align-content: start;
    gap: 8px;
    min-width: 0;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.1);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.reservation-wizard .field-shell:focus-within {
    border-color: rgba(168, 67, 241, 0.54);
    background: rgba(123, 47, 247, 0.07);
    box-shadow: 0 0 0 3px rgba(123, 47, 247, 0.08);
}

.reservation-wizard .field-shell.has-error {
    border-color: rgba(255, 119, 151, 0.58);
    background: rgba(255, 95, 132, 0.06);
}

.reservation-wizard .field-shell label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 800;
}

.reservation-wizard .field-shell label i {
    width: 16px;
    color: var(--lg-accent);
    text-align: center;
}

.reservation-wizard .field-shell input,
.reservation-wizard .field-shell select,
.reservation-wizard .field-shell .form-control,
.reservation-wizard .field-shell .form-select {
    width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    outline: 0;
    color: #fff;
    background: rgba(5, 5, 10, 0.54);
    box-shadow: none;
    font-family: "Cairo", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color-scheme: dark;
}

.reservation-wizard .field-shell select,
.reservation-wizard .field-shell .form-select {
    padding-inline: 14px 42px;
}

.reservation-wizard .field-shell input:focus,
.reservation-wizard .field-shell select:focus {
    border-color: rgba(215, 249, 91, 0.4);
    background: rgba(5, 5, 10, 0.72);
}

.reservation-wizard .field-shell input::placeholder {
    color: rgba(241, 237, 249, 0.42);
}

.reservation-wizard .field-shell select:disabled {
    color: rgba(241, 237, 249, 0.52);
    cursor: wait;
    opacity: 1;
}

.reservation-wizard .field-shell option {
    color: #15121d;
    background: #fff;
}

.reservation-wizard .field-caption {
    color: rgba(241, 237, 249, 0.58);
    font-size: 10px;
    line-height: 1.7;
}

.reservation-wizard .field-caption.is-warning {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #ffe2a8;
}

.wizard-field-error {
    display: block;
    color: #ffb5c7;
    font-size: 11px;
    line-height: 1.65;
    font-weight: 700;
}

.wizard-server-errors {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 119, 151, 0.3);
    border-radius: 17px;
    color: #ffdce5;
    background: rgba(255, 95, 132, 0.09);
}

.wizard-server-errors > i {
    margin-top: 3px;
    color: #ff8da8;
}

.wizard-server-errors strong,
.wizard-server-errors p {
    display: block;
    margin: 0;
    font-size: 12px;
    line-height: 1.75;
}

.wizard-trip-types {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.wizard-trip-types.has-error {
    padding: 8px;
    border: 1px solid rgba(255, 119, 151, 0.48);
    border-radius: 20px;
    background: rgba(255, 95, 132, 0.05);
}

.wizard-trip-types > .wizard-field-error {
    grid-column: 1 / -1;
    padding-inline: 4px;
}

.reservation-wizard .trip-type-card {
    position: relative;
    min-height: 118px;
    align-content: center;
    justify-items: center;
    gap: 5px;
    padding: 14px 12px;
    color: var(--lg-text);
    border-radius: 18px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.045);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.reservation-wizard .trip-type-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.reservation-wizard .trip-type-card > i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 2px;
    border-radius: 13px;
    color: var(--lg-accent);
    background: rgba(215, 249, 91, 0.08);
    font-size: 15px;
}

.reservation-wizard .trip-type-card strong {
    color: #fff;
    font-size: 14px;
}

.reservation-wizard .trip-type-card span {
    color: rgba(241, 237, 249, 0.56);
    font-size: 10px;
}

.reservation-wizard .trip-type-card b {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: transparent;
    background: rgba(255, 255, 255, 0.04);
    font-size: 9px;
}

.reservation-wizard .trip-type-card.is-active {
    border-color: rgba(215, 249, 91, 0.38);
    background: linear-gradient(145deg, rgba(123, 47, 247, 0.24), rgba(215, 249, 91, 0.09));
    box-shadow: 0 16px 32px rgba(9, 6, 18, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.reservation-wizard .trip-type-card.is-active b {
    color: #17120d;
    border-color: var(--lg-accent);
    background: var(--lg-accent);
}

.wizard-privacy-note,
.wizard-secure-label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(241, 237, 249, 0.7);
}

.wizard-privacy-note {
    padding: 14px 16px;
    border: 1px solid rgba(108, 242, 183, 0.16);
    border-radius: 17px;
    background: rgba(108, 242, 183, 0.06);
    font-size: 11px;
    line-height: 1.7;
}

.wizard-privacy-note > i,
.wizard-secure-label i {
    color: #7cf1bb;
}

.wizard-review-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 12px;
}

.wizard-review-card {
    min-width: 0;
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.04);
}

.wizard-review-title {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 14px;
}

.wizard-review-title i {
    color: var(--lg-accent);
}

.wizard-review-card .summary-list,
.wizard-review-card .price-breakdown {
    gap: 7px;
}

.wizard-review-card .detail-row,
.wizard-review-card .price-row {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
}

.wizard-review-card .detail-row span,
.wizard-review-card .price-row span {
    flex: 0 0 auto;
    color: var(--lg-text-soft);
    font-size: 10px;
    line-height: 1.65;
}

.wizard-review-card .detail-row strong,
.wizard-review-card .price-row strong {
    min-width: 0;
    color: #fff;
    font-size: 11px;
    line-height: 1.65;
    text-align: end;
    overflow-wrap: anywhere;
}

.wizard-review-card .price-row.is-total {
    align-items: center;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.34), rgba(192, 38, 211, 0.2));
}

.wizard-review-card .price-row.is-total strong {
    font-size: 15px;
}

.wizard-secure-label {
    justify-content: center;
    font-size: 10px;
}

.wizard-payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px;
}

.reservation-wizard .payment-option {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px 12px;
    padding: 14px;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: none;
}

.reservation-wizard .payment-option.is-highlight {
    background: linear-gradient(145deg, rgba(123, 47, 247, 0.16), rgba(215, 249, 91, 0.06));
}

.payment-option-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--lg-accent);
    background: rgba(215, 249, 91, 0.09);
}

.reservation-wizard .payment-option > div {
    min-width: 0;
}

.reservation-wizard .payment-option strong {
    font-size: 14px;
}

.reservation-wizard .payment-option p {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.65;
}

.reservation-wizard .payment-option button {
    grid-column: 1 / -1;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    font-family: "Cairo", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.reservation-wizard .button-accent {
    color: #17120d;
    border: 0;
    background: var(--lg-accent);
    box-shadow: 0 14px 28px rgba(215, 249, 91, 0.14);
}

.reservation-wizard button.is-loading {
    pointer-events: none;
    opacity: 0.72;
}

.reservation-wizard button.is-loading::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: wizardSpinner 700ms linear infinite;
}

.wizard-actions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(19, 16, 27, 0.92);
    box-shadow: 0 18px 42px rgba(2, 2, 7, 0.38);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.wizard-back-button,
.wizard-next-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border-radius: 14px;
    font-family: "Cairo", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.wizard-back-button {
    color: var(--lg-text);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.wizard-next-button {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, var(--lg-primary-1), var(--lg-primary-2));
    box-shadow: 0 12px 24px rgba(123, 47, 247, 0.24);
}

.wizard-actions-hint {
    color: var(--lg-text-soft);
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.wizard-actions:has(.wizard-back-button[hidden]) .wizard-next-button,
.wizard-actions:has(.wizard-next-button[hidden]) .wizard-back-button {
    grid-column: 1 / -1;
    width: 100%;
}

.reservation-success-layer {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(5, 4, 11, 0.82);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    animation: reservationSuccessFade 260ms ease both;
}

.reservation-success-layer.is-closing {
    animation: reservationSuccessFade 240ms ease reverse both;
}

.reservation-success-card {
    width: min(100%, 480px);
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(108, 242, 183, 0.22);
    border-radius: 30px;
    color: var(--lg-text);
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(108, 242, 183, 0.14), transparent 34%),
        linear-gradient(155deg, rgba(36, 31, 49, 0.99), rgba(15, 13, 23, 0.99));
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.6);
    animation: reservationSuccessIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reservation-success-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin-bottom: 4px;
    border: 1px solid rgba(108, 242, 183, 0.35);
    border-radius: 25px;
    color: #10281d;
    background: #7cf1bb;
    box-shadow: 0 18px 38px rgba(108, 242, 183, 0.18);
    font-size: 28px;
}

.reservation-success-kicker {
    color: #7cf1bb;
    font-size: 11px;
    font-weight: 800;
}

.reservation-success-card h2 {
    margin: 0;
    font-size: clamp(24px, 6vw, 34px);
    line-height: 1.4;
}

.reservation-success-card > p {
    max-width: 390px;
    margin: 0;
    color: var(--lg-text-soft);
    font-size: 13px;
    line-height: 1.85;
}

.reservation-success-meta {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.reservation-success-meta span {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px;
    border-radius: 13px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.055);
    font-size: 10px;
    font-weight: 700;
}

.reservation-success-meta i {
    color: #7cf1bb;
}

.reservation-success-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 8px;
}

.reservation-success-actions .button,
.reservation-success-actions .button-secondary {
    width: 100%;
    min-height: 50px;
    border-radius: 15px;
    font-family: "Cairo", sans-serif;
    font-size: 11px;
}

.reservation-success-actions .button {
    color: #17120d !important;
    border: 0;
    background: var(--lg-accent) !important;
    box-shadow: 0 14px 28px rgba(215, 249, 91, 0.18);
}

.reservation-success-actions .button-secondary {
    color: var(--lg-text);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
}

body.reservation-success-open {
    overflow: hidden;
}

body.reservation-success-open .app-bottom-nav {
    visibility: hidden;
}

@keyframes wizardStepIn {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes wizardSpinner {
    to { transform: rotate(360deg); }
}

@keyframes reservationSuccessFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes reservationSuccessIn {
    from { opacity: 0; transform: translateY(28px) scale(0.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
    .form-reservation-page .app-topbar {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .form-reservation-page .app-topbar .topbar-actions {
        display: none;
    }

    .reservation-wizard {
        gap: 10px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }

    .wizard-intro {
        display: grid;
        gap: 12px;
        padding: 15px;
        border-radius: 22px;
    }

    .wizard-intro h2 {
        font-size: 19px;
        line-height: 1.5;
    }

    .wizard-intro p {
        font-size: 11px;
        line-height: 1.7;
    }

    .wizard-price-pills {
        width: 100%;
    }

    .wizard-price-pills > span {
        min-width: 0;
        flex: 1;
        padding: 8px 10px;
    }

    .wizard-price-pills strong {
        font-size: 14px;
    }

    .wizard-progress-shell {
        top: 6px;
        gap: 8px;
        padding: 11px;
        border-radius: 19px;
    }

    .wizard-step-tab {
        min-width: 76px;
        min-height: 38px;
        padding: 4px 8px;
    }

    .wizard-step-tab strong {
        font-size: 10px;
    }

    .wizard-form-card {
        min-height: 450px;
        padding: 14px;
        border-radius: 22px;
    }

    .wizard-step.is-active {
        gap: 16px;
    }

    .wizard-step-header {
        align-items: flex-start;
        gap: 11px;
        padding-bottom: 14px;
    }

    .wizard-step-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 14px;
        font-size: 16px;
    }

    .wizard-step-header h3 {
        font-size: 19px;
    }

    .wizard-step-header p {
        font-size: 10px;
        line-height: 1.65;
    }

    .wizard-field-grid,
    .wizard-review-grid {
        grid-template-columns: 1fr;
    }

    .reservation-wizard .field-shell {
        padding: 12px;
        border-radius: 16px;
    }

    .reservation-wizard .field-shell input,
    .reservation-wizard .field-shell select,
    .reservation-wizard .field-shell .form-control,
    .reservation-wizard .field-shell .form-select {
        min-height: 52px;
        font-size: 13px;
    }

    .wizard-trip-types {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .reservation-wizard .trip-type-card {
        min-height: 92px;
        padding: 10px 6px;
        border-radius: 15px;
    }

    .reservation-wizard .trip-type-card > i {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 13px;
    }

    .reservation-wizard .trip-type-card strong {
        font-size: 11px;
    }

    .reservation-wizard .trip-type-card span {
        display: none;
    }

    .reservation-wizard .trip-type-card b {
        top: 6px;
        left: 6px;
        width: 18px;
        height: 18px;
        border-radius: 6px;
        font-size: 7px;
    }

    .wizard-review-card {
        padding: 13px;
    }

    .wizard-payment-options {
        grid-template-columns: 1fr;
    }

    .wizard-actions {
        grid-template-columns: auto 1fr;
        margin-top: 16px;
        padding: 8px;
        border-radius: 16px;
    }

    .wizard-actions-hint {
        display: none;
    }

    .wizard-back-button,
    .wizard-next-button {
        width: 100%;
        min-width: 112px;
        padding: 0 14px;
    }

    .wizard-next-button {
        grid-column: 2;
    }

    .reservation-success-layer {
        align-items: end;
        padding: 0;
    }

    .reservation-success-card {
        width: 100%;
        padding: 26px 16px calc(20px + env(safe-area-inset-bottom));
        border-width: 1px 0 0;
        border-radius: 28px 28px 0 0;
    }
}

@media (max-width: 360px) {
    .wizard-step-tab {
        min-width: 70px;
    }

    .reservation-success-actions {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wizard-step.is-active,
    .reservation-success-layer,
    .reservation-success-card {
        animation: none;
    }
}
