:root {
    --bg: #0a1128;
    --bg-deep: #050915;
    --panel: rgba(255, 255, 255, 0.075);
    --panel-strong: rgba(255, 255, 255, 0.115);
    --text: #ffffff;
    --muted: #aab4c8;
    --line: rgba(255, 255, 255, 0.13);
    --accent: #32cd32;
    --accent-dark: #1f9d1f;
    --accent-soft: rgba(50, 205, 50, 0.16);
    --warn: #ffb020;
    --bad: #ff5d5d;
    --live: #61d5ff;
    --radius: 8px;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
    --brand: "Syncopate", system-ui, sans-serif;
    --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(50, 205, 50, 0.08), transparent 26rem),
        linear-gradient(180deg, #0a1128 0%, #070d20 48%, #050915 100%);
    color: var(--text);
    font-family: var(--body);
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(50, 205, 50, 0.32);
    color: white;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #96ff96, var(--live));
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left center;
    box-shadow: 0 0 18px rgba(50, 205, 50, 0.5);
    pointer-events: none;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(18px, 5vw, 64px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(10, 17, 40, 0.84);
    backdrop-filter: blur(18px);
}

.site-header::after {
    content: "";
    position: absolute;
    left: clamp(18px, 5vw, 64px);
    right: clamp(18px, 5vw, 64px);
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(50, 205, 50, 0.42), rgba(97, 213, 255, 0.3), transparent);
    pointer-events: none;
}

.brand img {
    width: 104px;
    height: 104px;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0,0,0,0.55));
}

.main-nav,
.footer-actions,
.hero-actions,
.admin-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav a,
.admin-nav a,
.footer-actions a {
    color: rgba(255,255,255,0.82);
    font-family: var(--brand);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.main-nav a:hover,
.admin-nav a:hover,
.admin-nav a.active {
    color: var(--accent);
}

.nav-button,
.button,
.small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: var(--radius);
    padding: 0 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #031006;
    cursor: pointer;
    font-family: var(--brand);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(50, 205, 50, 0.24);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.button.secondary,
.nav-button.ghost {
    background: transparent;
    color: white;
    border: 1px solid var(--line);
    box-shadow: none;
}

.button.full {
    width: 100%;
}

.button.disabled {
    background: #303746;
    color: #8790a0;
    cursor: not-allowed;
    box-shadow: none;
}

.small-button {
    min-height: 36px;
    padding: 0 14px;
}

.button:hover,
.small-button:hover,
.nav-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(50, 205, 50, 0.3);
}

.button.secondary:hover,
.nav-button.ghost:hover {
    border-color: rgba(50, 205, 50, 0.44);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.mobile-nav-toggle,
.mobile-nav {
    display: none;
}

.mobile-nav-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
}

.mobile-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: white;
}

.mobile-nav {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    z-index: 49;
    padding: 24px;
    background: rgba(5, 9, 21, 0.97);
    border-bottom: 1px solid var(--line);
}

.mobile-nav a {
    display: block;
    padding: 14px;
    font-family: var(--brand);
    font-size: 12px;
    text-transform: uppercase;
}

.mobile-nav.open {
    display: block;
}

.flash {
    position: fixed;
    top: 112px;
    left: 50%;
    z-index: 80;
    transform: translateX(-50%);
    width: min(720px, calc(100vw - 32px));
    padding: 14px 18px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.flash.success { border-color: rgba(50, 205, 50, 0.55); }
.flash.error { border-color: rgba(255, 93, 93, 0.62); }
.flash.info { border-color: rgba(97, 213, 255, 0.5); }

.hero {
    position: relative;
    min-height: calc(86vh - 96px);
    display: flex;
    align-items: center;
    padding: clamp(34px, 5vw, 56px) clamp(18px, 6vw, 88px);
    overflow: hidden;
    isolation: isolate;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero h1,
.section-head h1,
.section-head h2,
.portal-panel h1,
.checkout-form-panel h2,
.booking-summary h1,
.admin-hero h1,
.admin-panel h1,
.admin-panel h2,
.empty-state h2 {
    margin: 0;
    font-family: var(--brand);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(42px, 5.4vw, 76px);
}

.hero p {
    max-width: 620px;
    margin: 24px 0 34px;
    color: var(--muted);
    font-size: clamp(16px, 1.8vw, 20px);
}

.hero-status-panel {
    position: absolute;
    z-index: 2;
    right: clamp(20px, 5vw, 74px);
    bottom: clamp(24px, 6vw, 78px);
    width: min(360px, calc(100vw - 36px));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
        rgba(5, 9, 21, 0.78);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(22px);
    padding: 18px;
}

.hero-status-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent, rgba(50, 205, 50, 0.16), transparent);
    opacity: 0.55;
    pointer-events: none;
}

.hero-panel-top,
.hero-panel-grid,
.hero-panel-footer {
    position: relative;
    z-index: 1;
}

.hero-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.hero-panel-top span,
.hero-panel-grid small {
    color: var(--muted);
    font-family: var(--brand);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-panel-top strong {
    color: var(--accent);
    font-family: var(--brand);
    font-size: 18px;
}

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

.hero-panel-grid > div {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.28);
    padding: 12px;
}

.hero-panel-grid strong {
    display: block;
    margin-top: 6px;
    font-family: var(--brand);
    font-size: 20px;
}

.hero-panel-footer {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 14px;
}

.hero-panel-footer span {
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(50, 205, 50, 0.8);
}

.hero-panel-footer p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,9,21,0.94) 0%, rgba(5,9,21,0.78) 42%, rgba(5,9,21,0.18) 100%);
    pointer-events: none;
}

.hero-media img {
    position: absolute;
    object-fit: cover;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.hero-media img:first-child {
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img:last-child {
    display: none;
}

.section {
    width: min(1240px, calc(100vw - 36px));
    margin: 0 auto;
    padding: clamp(56px, 7vw, 104px) 0;
}

.section.narrow {
    width: min(760px, calc(100vw - 36px));
}

.section-head {
    margin-bottom: 32px;
}

.section-head h1,
.section-head h2 {
    font-size: clamp(30px, 4vw, 56px);
}

.section-head p {
    max-width: 620px;
    color: var(--muted);
    margin: 12px 0 0;
}

.media-pair,
.process-grid,
.metric-grid,
.booking-grid,
.fleet-grid,
.content-grid,
.contact-grid,
.trust-strip,
.fleet-status-bar,
.portal-layout,
.checkout-layout {
    display: grid;
    gap: 24px;
}

.media-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 40px);
    margin-bottom: clamp(36px, 5vw, 72px);
}

.hero + .media-pair {
    padding-top: clamp(24px, 4vw, 48px);
}

section.media-pair {
    padding-bottom: clamp(34px, 5vw, 62px);
}

section.media-pair + .trust-strip {
    padding-top: 0;
}

.image-slot {
    min-height: 240px;
    aspect-ratio: 3 / 2;
    margin: 0;
    border-radius: var(--radius);
    border: 1px dashed rgba(50, 205, 50, 0.42);
    background:
        linear-gradient(135deg, rgba(50,205,50,0.12), transparent),
        rgba(255,255,255,0.045);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.image-slot span {
    color: rgba(255,255,255,0.62);
    font-family: var(--brand);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

.image-slot-filled {
    position: relative;
    border-style: solid;
    border-color: rgba(255,255,255,0.12);
    background: #070d20;
    box-shadow: 0 24px 70px rgba(0,0,0,0.24);
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.image-slot-filled:hover {
    --lift: -4px;
    border-color: rgba(50,205,50,0.36);
    box-shadow: 0 32px 90px rgba(0,0,0,0.34);
}

.fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 36px);
}

.trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 24px;
    padding-bottom: 24px;
}

.fleet-status-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: clamp(36px, 5vw, 72px);
}

.car-card,
.booking-card,
.portal-panel,
.checkout-form-panel,
.booking-summary,
.admin-panel,
.empty-state,
.content-grid > div,
.contact-grid > a,
.trust-strip > div,
.fleet-status-bar > div,
.process-grid > div,
.metric-grid > div {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(150deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.car-card,
.booking-card,
.image-slot-filled,
.content-grid > div,
.contact-grid > a,
.trust-strip > div,
.fleet-status-bar > div,
.process-grid > div,
.metric-grid > div {
    position: relative;
    transform: translateY(var(--lift, 0px));
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.trust-strip > div,
.fleet-status-bar > div {
    background: linear-gradient(140deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    padding: 20px;
}

.trust-strip small,
.fleet-status-bar small {
    display: block;
    color: var(--muted);
    font-family: var(--brand);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-strip strong,
.fleet-status-bar strong {
    display: block;
    margin-top: 8px;
    font-family: var(--brand);
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.1;
}

.booking-board-section {
    width: min(1320px, calc(100vw - 36px));
    padding-top: clamp(34px, 5vw, 68px);
}

.booking-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.03)),
        rgba(5, 9, 21, 0.74);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.booking-board-main {
    padding: clamp(24px, 4vw, 42px);
}

.booking-board h2 {
    margin: 0;
    font-family: var(--brand);
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.04;
}

.booking-board-main > p {
    max-width: 560px;
    margin: 14px 0 28px;
    color: var(--muted);
    font-size: 17px;
}

.booking-checklist {
    display: grid;
    border-top: 1px solid var(--line);
}

.booking-checklist > div {
    display: grid;
    grid-template-columns: 52px 160px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.booking-checklist span,
.booking-board-stats small {
    color: var(--muted);
    font-family: var(--brand);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.booking-checklist strong {
    font-family: var(--brand);
    font-size: 15px;
}

.booking-checklist small {
    color: var(--muted);
    font-size: 14px;
}

.booking-board-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--line);
    background: rgba(0,0,0,0.18);
}

.booking-board-stats > div {
    display: grid;
    align-content: center;
    min-height: 150px;
    padding: 22px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.booking-board-stats > div:nth-child(2n) {
    border-right: 0;
}

.booking-board-stats strong {
    display: block;
    margin-top: 10px;
    color: white;
    font-family: var(--brand);
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1;
}

.car-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.car-card:hover,
.booking-card:hover,
.content-grid > div:hover,
.contact-grid > a:hover,
.trust-strip > div:hover,
.fleet-status-bar > div:hover,
.process-grid > div:hover,
.metric-grid > div:hover {
    --lift: -5px;
    border-color: rgba(50, 205, 50, 0.34);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.car-card.is-unavailable {
    opacity: 0.64;
}

.car-image {
    position: relative;
    z-index: 1;
    height: 250px;
    overflow: hidden;
    background: #070d20;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
    transition: transform 260ms ease, filter 260ms ease;
}

.car-card:hover .car-image img {
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.02);
}

.car-image span,
.car-image strong {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    border-radius: 999px;
    padding: 7px 11px;
    background: var(--accent);
    color: #031006;
    font-family: var(--brand);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.car-image strong {
    inset: auto auto 16px 16px;
    right: auto;
    background: rgba(255, 93, 93, 0.9);
    color: #170202;
}

.car-body,
.booking-card > div {
    position: relative;
    z-index: 1;
    padding: 22px;
}

.car-body h3,
.booking-card h2 {
    margin: 0;
    font-family: var(--brand);
    font-size: 22px;
    line-height: 1.12;
}

.car-body > p,
.booking-card p {
    margin: 6px 0 18px;
    color: var(--accent);
    font-weight: 800;
}

.rate-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0;
}

.rate-row span,
.live-total > div,
.deposit-box {
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius);
    background: rgba(0,0,0,0.24);
    padding: 12px;
    font-weight: 900;
}

.rate-row small,
.live-total small,
.deposit-box small,
.metric-grid small,
dt,
table small {
    display: block;
    color: var(--muted);
    font-family: var(--brand);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.content-grid,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.content-grid > div,
.contact-grid > a,
.process-grid > div {
    padding: 24px;
}

.process-grid > div {
    overflow: hidden;
    padding: 0;
}

.process-photo {
    height: 156px;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: #070d20;
    overflow: hidden;
}

.process-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.02);
    transition: transform 260ms ease, filter 260ms ease;
}

.process-grid > div:hover .process-photo img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.02);
}

.process-copy {
    padding: 22px;
}

.content-grid h2,
.process-grid span {
    color: var(--accent);
    font-family: var(--brand);
    font-weight: 900;
}

.content-grid h2 {
    margin: 0 0 12px;
    color: white;
    font-size: 18px;
}

.process-grid h3 {
    margin: 18px 0 8px;
}

.process-grid p,
.content-grid p,
.faq-section p,
.empty-state p,
.muted {
    color: var(--muted);
}

.section-actions {
    display: flex;
    margin-top: 24px;
}

.contact-grid a {
    display: grid;
    gap: 8px;
}

.contact-grid small {
    color: var(--muted);
    font-family: var(--brand);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-grid strong {
    font-size: 20px;
}

.cinematic-section {
    width: min(1320px, calc(100vw - 36px));
}

.cinematic-swiper {
    overflow: visible;
    padding: 4px 0 62px;
}

.cinematic-slide {
    position: relative;
    width: min(820px, 78vw);
    height: clamp(360px, 44vw, 520px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    background: #050915;
    box-shadow: 0 30px 90px rgba(0,0,0,0.36);
}

.cinematic-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(5,9,21,0.86));
}

.cinematic-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 900ms ease;
}

.cinematic-slide.swiper-slide-active img {
    transform: scale(1.08);
}

.cinematic-slide > div {
    position: absolute;
    z-index: 2;
    left: clamp(20px, 4vw, 42px);
    right: clamp(20px, 4vw, 42px);
    bottom: clamp(20px, 4vw, 38px);
}

.cinematic-slide h3 {
    margin: 0;
    font-family: var(--brand);
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.05;
}

.cinematic-slide p {
    max-width: 540px;
    margin: 12px 0 0;
    color: rgba(255,255,255,0.78);
}

.cinematic-controls {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: grid;
    grid-template-columns: 44px minmax(110px, auto) 44px;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
}

.cinematic-controls button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    color: white;
    cursor: pointer;
}

.cinematic-controls button:hover {
    border-color: rgba(50,205,50,0.4);
    color: var(--accent);
}

.cinematic-controls svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cinematic-controls .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 8px;
    transform: none;
}

.cinematic-controls .swiper-pagination-bullet {
    width: 28px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.24);
    opacity: 1;
}

.cinematic-controls .swiper-pagination-bullet-active {
    background: var(--accent);
}

.faq-section details {
    border-top: 1px solid var(--line);
    padding: 20px 0;
}

.faq-section summary {
    cursor: pointer;
    font-weight: 900;
}

.floating-book {
    position: fixed;
    right: clamp(16px, 3vw, 30px);
    bottom: clamp(16px, 3vw, 30px);
    z-index: 70;
    display: grid;
    gap: 2px;
    min-width: 188px;
    border: 1px solid rgba(50, 205, 50, 0.35);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(50, 205, 50, 0.96), rgba(31, 157, 31, 0.94)),
        #32cd32;
    color: #031006;
    padding: 13px 22px;
    box-shadow: 0 18px 42px rgba(50, 205, 50, 0.25), 0 18px 60px rgba(0, 0, 0, 0.32);
    font-family: var(--brand);
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.floating-book span {
    font-size: 10px;
    font-weight: 900;
}

.floating-book strong {
    font-size: 9px;
    opacity: 0.75;
}

.floating-book.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-book.is-visible:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(50, 205, 50, 0.34), 0 20px 70px rgba(0, 0, 0, 0.36);
}

.checkout-page .floating-book,
.admin-page .floating-book,
.portal-page .floating-book,
.fleet-page .floating-book {
    display: none;
}

.site-footer {
    width: min(1240px, calc(100vw - 36px));
    margin: 40px auto 0;
    padding: 46px 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
}

.site-footer img {
    width: 96px;
}

.site-footer p {
    color: var(--muted);
    max-width: 520px;
}

form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    background: rgba(0,0,0,0.3);
    color: white;
    padding: 14px;
    outline: none;
    text-transform: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.16);
}

.portal-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
}

.portal-panel,
.checkout-form-panel,
.booking-summary,
.admin-panel,
.empty-state {
    padding: clamp(22px, 4vw, 36px);
}

.portal-panel h1 {
    font-size: clamp(34px, 4vw, 52px);
}

.portal-panel p {
    color: var(--muted);
}

.tab-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 24px 0;
}

.tab-buttons button {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    color: white;
    padding: 12px;
    cursor: pointer;
    font-family: var(--brand);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.tab-buttons button.active {
    background: var(--accent);
    color: #031006;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: grid;
}

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

.three-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.7fr;
    gap: 16px;
}

.slot-stack {
    display: grid;
    gap: 18px;
}

.checkout-layout {
    grid-template-columns: 420px minmax(0, 1fr);
    align-items: start;
}

.booking-summary {
    position: sticky;
    top: 120px;
}

.booking-summary > img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 22px;
}

.booking-summary h1 span {
    color: var(--accent);
}

.deposit-box strong {
    display: block;
    margin: 6px 0;
    color: var(--accent);
    font-family: var(--brand);
    font-size: 30px;
}

.deposit-box p {
    margin: 0;
    color: var(--muted);
}

.notice {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 93, 93, 0.42);
    border-radius: var(--radius);
    background: rgba(255, 93, 93, 0.1);
    padding: 14px;
}

.notice span {
    color: #ffd3d3;
}

.live-total,
.upload-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

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

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

.booking-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    overflow: hidden;
}

.booking-card > img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
}

.status-pill {
    display: inline-flex;
    margin-bottom: 12px;
    border-radius: 999px;
    padding: 7px 11px;
    font-family: var(--brand);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-warn { background: rgba(255,176,32,0.18); color: #ffd88e; }
.status-good { background: rgba(50,205,50,0.18); color: #96ff96; }
.status-live { background: rgba(97,213,255,0.18); color: #a4ebff; }
.status-bad { background: rgba(255,93,93,0.18); color: #ffb6b6; }
.status-muted { background: rgba(255,255,255,0.1); color: var(--muted); }

dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

dd {
    margin: 4px 0 0;
    font-weight: 900;
}

.admin-shell {
    width: min(1400px, calc(100vw - 32px));
}

.admin-nav {
    margin-bottom: 24px;
    overflow-x: auto;
}

.admin-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
}

.admin-hero h1 {
    font-size: clamp(36px, 5vw, 66px);
}

.admin-hero p {
    color: var(--muted);
}

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

.admin-page-slots,
.admin-insight-grid {
    margin-bottom: 24px;
}

.admin-slots .image-slot {
    min-height: 180px;
}

.admin-insight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 24px;
}

.metric-grid > div {
    padding: 22px;
}

.metric-grid strong {
    display: block;
    margin-top: 8px;
    font-family: var(--brand);
    font-size: 32px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.compact-table table {
    min-width: 680px;
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-family: var(--brand);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.inline-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inline-form select {
    min-width: 170px;
}

.fleet-admin-list,
.settings-form {
    display: grid;
    gap: 14px;
}

.fleet-admin-row {
    display: grid;
    grid-template-columns: 76px repeat(7, minmax(90px, 1fr)) 116px;
    gap: 8px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    overflow-x: auto;
}

.fleet-admin-row img {
    width: 76px;
    height: 52px;
    object-fit: cover;
    border-radius: var(--radius);
}

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

.toggle input {
    width: auto;
}

.empty-state {
    text-align: center;
}

@media (max-width: 1040px) {
    .hero,
    .booking-board,
    .portal-layout,
    .checkout-layout,
    .admin-hero,
    .admin-insight-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        display: grid;
    }

    .hero-media {
        min-height: 100%;
    }

    .hero-status-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(520px, 100%);
        margin-top: 28px;
    }

    .booking-summary {
        position: static;
    }

    .booking-board-stats {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .fleet-grid,
    .process-grid,
    .content-grid,
    .contact-grid,
    .trust-strip,
    .fleet-status-bar,
    .metric-grid,
    .booking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-header {
        height: 86px;
    }

    .brand img {
        width: 86px;
        height: 86px;
    }

    .main-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 30px;
        padding-bottom: 56px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 39px);
    }

    .hero p {
        margin: 20px 0 28px;
    }

    .hero-actions,
    .site-footer,
    .two-col,
    .three-col,
    .media-pair,
    .booking-checklist > div,
    .fleet-grid,
    .process-grid,
    .content-grid,
    .contact-grid,
    .trust-strip,
    .fleet-status-bar,
    .metric-grid,
    .booking-grid,
    .admin-insight-grid,
    .live-total,
    .upload-grid,
    .admin-slots {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-media::after {
        background: linear-gradient(90deg, rgba(5,9,21,0.96), rgba(5,9,21,0.76));
    }

    .hero-status-panel {
        margin-top: 24px;
        padding: 16px;
    }

    .booking-board-main {
        padding: 22px;
    }

    .booking-board-main > p {
        font-size: 15px;
    }

    .booking-checklist > div {
        gap: 6px;
        padding: 16px 0;
    }

    .booking-board-stats {
        grid-template-columns: 1fr;
    }

    .booking-board-stats > div {
        min-height: 118px;
        border-right: 0;
    }

    .floating-book {
        display: none;
    }

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

    .fleet-admin-row {
        grid-template-columns: 76px repeat(8, 130px);
    }

    .cinematic-slide {
        width: min(320px, 82vw);
        height: 420px;
    }

    .cinematic-controls {
        grid-template-columns: 40px minmax(96px, auto) 40px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

}
