:root {
    --cyber-yellow: #FFB800;
    --cyber-amber: #FF9500;
    --deep-space: #050510;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--deep-space);
    color: white;
    overflow: hidden;
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* CRITICAL: Do not alter these properties */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) translateZ(0);
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.video-bg.active {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 16, 0.4) 0%, rgba(5, 5, 16, 0.2) 30%, rgba(5, 5, 16, 0.1) 50%, rgba(5, 5, 16, 0.3) 70%, rgba(5, 5, 16, 0.6) 100%);
    z-index: 1;
}

.color-wash {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.3;
    mix-blend-mode: overlay;
    background: radial-gradient(ellipse 80% 50% at 20% 30%, rgba(200, 132, 252, 0.4) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 70%, rgba(45, 212, 191, 0.3) 0%, transparent 50%);
    animation: colorShift 20s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

@keyframes colorShift {
    0% {
        transform: scale(1) translateX(0);
        opacity: 0.25;
    }

    100% {
        transform: scale(1.2) translateX(-5%);
        opacity: 0.4;
    }
}

.vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    box-shadow: inset 0 0 200px 50px rgba(5, 5, 16, 0.6);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    animation: heroReveal 1.5s ease-out;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    will-change: opacity, transform;
}

.hero-text.fading-out {
    opacity: 0;
    transform: translateY(-20px);
}

.hero-text.fading-in {
    opacity: 0;
    transform: translateY(20px);
}

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 100;
    font-size: clamp(3rem, 12vw, 8rem);
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 40px;
    line-height: 1.8;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* ============ CYBER-BEE MASCOT ============ */
.cyber-bee-container {
    position: fixed;
    bottom: 1.5rem;
    left: 2rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cyber-bee-container.chat-active {
    z-index: 600;
    bottom: auto;
    top: 50%;
    left: calc(50% - 580px);
    transform: translateY(-50%);
}

.cyber-bee {
    width: 280px;
    height: auto;
    cursor: pointer;
    filter: drop-shadow(0 10px 50px rgba(255, 184, 0, 0.5));
    animation: beeFloat 3s ease-in-out infinite;
    transition: transform 0.4s ease, filter 0.4s ease, width 0.4s ease;
}

.cyber-bee-container.chat-active .cyber-bee {
    width: 340px;
    filter: drop-shadow(0 25px 100px rgba(255, 184, 0, 0.9));
    animation: beeFloatChat 2.5s ease-in-out infinite;
}

@keyframes beeFloatChat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

.cyber-bee:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 15px 60px rgba(255, 184, 0, 0.7));
}

@keyframes beeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

.cyber-bee.buzzing {
    animation: beeBuzz 0.3s ease-in-out;
}

@keyframes beeBuzz {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(-5px) rotate(-2deg);
    }

    75% {
        transform: translateX(5px) rotate(2deg);
    }
}

/* Speech Bubble */
.speech-bubble {
    position: relative;
    background: rgba(5, 5, 16, 0.35);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    max-width: 220px;
    text-align: center;
    border: 1px solid rgba(255, 184, 0, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 184, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.speech-bubble.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(5, 5, 16, 0.35);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid rgba(255, 184, 0, 0.5);
    z-index: -1;
}

.speech-bubble-text {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, var(--cyber-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ CHAT WINDOW ============ */
.chat-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 16, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.chat-overlay.open {
    opacity: 1;
    visibility: visible;
}

.chat-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: calc(100% - 2rem);
    max-width: 650px;
    height: calc(100% - 4rem);
    max-height: 750px;
    background: rgba(10, 10, 20, 0.08);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 28px;
    z-index: 501;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 184, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 184, 0, 0.25);
    background: rgba(10, 10, 20, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.chat-header-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--cyber-yellow);
    margin-bottom: 0.2rem;
}

.chat-header-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.chat-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    background: rgba(255, 184, 0, 0.2);
    border-color: rgba(255, 184, 0, 0.4);
    color: var(--cyber-yellow);
}

.chat-messages-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.chat-messages {
    height: 100%;
    overflow-y: auto !important;
    max-height: 80vh;
    -webkit-overflow-scrolling: touch;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 85%;
    padding: 1rem 1.25rem;
    border-radius: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.bot {
    align-self: flex-start;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
}

.chat-message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--cyber-yellow), var(--cyber-amber));
    color: var(--deep-space);
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
}

.chat-message.bot.typing::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--cyber-yellow);
    margin-left: 4px;
    animation: cursorBlink 0.8s infinite;
    vertical-align: middle;
}

@keyframes cursorBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Scroll to bottom button */
.scroll-to-bottom {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cyber-yellow), var(--cyber-amber));
    border: none;
    border-radius: 50%;
    color: var(--deep-space);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-to-bottom.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-bottom:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 184, 0, 0.5);
}

.scroll-to-bottom svg {
    width: 20px;
    height: 20px;
}

.chat-input-area {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 184, 0, 0.15);
    background: rgba(10, 10, 20, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    gap: 0.75rem;
}

.chat-input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chat-input:focus {
    border-color: var(--cyber-yellow);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.15);
}

.chat-input:disabled {
    pointer-events: none;
    cursor: default;
}

.chat-send {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--cyber-yellow), var(--cyber-amber));
    border: none;
    border-radius: 50%;
    color: var(--deep-space);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
}

.chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.5);
}

.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chat-send .send-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.8));
    opacity: 1;
}

/* Cleanup old SVG styles */
.chat-send img {
    display: none;
}

/* ============ CLEAR CHAT BUTTON ============ */
.chat-clear {
    width: 40px;
    height: 40px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.chat-clear img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-clear:hover img {
    transform: rotate(-180deg);
    opacity: 1;
}

.chat-clear:hover {
    background: rgba(255, 184, 0, 0.2);
    border-color: rgba(255, 184, 0, 0.4);
    color: var(--cyber-yellow);
}

/* ============ ONBOARDING INTEREST CHIPS ============ */
.onboarding-interests {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
    padding: 1rem;
    animation: messageSlide 0.5s ease-out 0.2s both;
}

.interest-chip {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.interest-chip:hover {
    background: rgba(255, 184, 0, 0.15);
    border-color: var(--cyber-yellow);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.2);
}

.interest-chip.active {
    background: var(--cyber-yellow);
    color: var(--deep-space);
    font-weight: 600;
    border-color: var(--cyber-yellow);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
    transform: translateY(-2px);
}

.chat-header-chips {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

.header-chip {
    font-size: 0.7rem;
    padding: 3px 10px;
    background: rgba(255, 184, 0, 0.15);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 50px;
    color: var(--cyber-yellow);
    font-weight: 500;
    animation: fadeIn 0.3s ease-out;
}

/* ============ DYNAMIC PLAN BUTTON ============ */
.chat-input-area.plan-button-active {
    background: var(--cyber-yellow);
    padding: 0;
    height: 70px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(255, 184, 0, 0.2);
}

.chat-input-area.plan-button-active:hover {
    background: var(--cyber-amber);
    box-shadow: 0 -10px 50px rgba(255, 184, 0, 0.4);
}

.chat-input-area.plan-button-active .chat-input,
.chat-input-area.plan-button-active .chat-send {
    display: none;
}

.plan-button-text {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--deep-space);
    font-weight: bold;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1.5px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.chat-input-area.plan-button-active .plan-button-text {
    display: flex;
    animation: buttonTextReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes buttonTextReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============ TYPING BUZZ INDICATOR ============ */
.typing-indicator {
    display: none;
    align-self: flex-start;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--cyber-yellow);
    letter-spacing: 0.03em;
    animation: buzzPulse 1.4s ease-in-out infinite;
}

.typing-indicator.visible {
    display: block;
}

@keyframes buzzPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

/* ============ MESSAGE TIMESTAMPS ============ */
.message-timestamp {
    display: block;
    font-size: 0.7rem;
    opacity: 0.5;
    margin-top: 0.4rem;
    text-align: right;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.chat-message.user .message-timestamp {
    color: var(--deep-space);
    opacity: 0.45;
}

.chat-message.bot .message-timestamp {
    color: rgba(255, 255, 255, 0.6);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 600px) {
    .cyber-bee-container {
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .cyber-bee {
        width: 240px;
    }

    .speech-bubble {
        max-width: 220px;
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }

    .chat-window {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: translateY(20px);
    }

    .chat-window.open {
        transform: translateY(0);
    }

    .hero-subtitle {
        padding-bottom: 0;
    }

    .hero-content {
        padding-bottom: 320px;
    }

    .cyber-bee-container.chat-active {
        top: 15px;
        left: 8px;
        transform: none;
    }

    .cyber-bee-container.chat-active .cyber-bee {
        width: 150px;
    }

    .cyber-bee-container.chat-active .speech-bubble {
        display: none;
    }

    .chat-header {
        padding-left: 155px;
        min-height: 110px;
    }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {

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

    .video-bg {
        transition: none;
    }
}

/* ============ FLATPICKR GLASSMORPHISM OVERRIDES ============ */
.flatpickr-calendar {
    background: rgba(10, 10, 20, 0.8) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid var(--cyber-yellow) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 184, 0, 0.1) !important;
    color: #fff !important;
    z-index: 99999 !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekday {
    color: var(--cyber-yellow) !important;
    font-family: 'Space Grotesk', sans-serif !important;
}

.flatpickr-day {
    color: #fff !important;
    font-family: 'Outfit', sans-serif !important;
}

.flatpickr-day:hover {
    background: rgba(255, 184, 0, 0.2) !important;
}

.flatpickr-day.selected {
    background: var(--cyber-yellow) !important;
    color: #000 !important;
    border-color: var(--cyber-yellow) !important;
    font-weight: 600 !important;
}

.flatpickr-day.flatpickr-disabled {
    color: rgba(255, 255, 255, 0.15) !important;
}

.flatpickr-arrowUp,
.flatpickr-arrowDown {
    fill: var(--cyber-yellow) !important;
}

.flatpickr-calendar.static {
    top: auto !important;
    left: 0 !important;
    margin-top: 5px;
}

/* ============ BOOKING CONFIRMATION CARD ============ */
.booking-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: white;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: messageSlide 0.4s ease-out;
}

.booking-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cyber-yellow);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.confirmed-badge {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.booking-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.total-label {
    font-size: 1rem;
    opacity: 0.8;
}

.total-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyber-yellow);
}

/* ============ ADMIN DASHBOARD (STEALTH AUTH) ============ */
.admin-dashboard-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    animation: adminSlideIn 0.4s ease-out forwards;
}

@keyframes adminSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--cyber-yellow);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.admin-header h2 {
    color: var(--cyber-yellow);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.admin-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.admin-close:hover {
    color: #ff4444;
    transform: scale(1.1);
}

.admin-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-stats {
    display: flex;
    gap: 1rem;
}

.stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.stat-box.highlight {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--cyber-yellow);
}

.stat-box.highlight .stat-value {
    color: #ff4444;
}

.admin-alerts-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.admin-alert-item {
    background: rgba(255, 184, 0, 0.1);
    border-left: 4px solid var(--cyber-yellow);
    padding: 1rem;
    border-radius: 4px 8px 8px 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
}

.admin-alert-item.collision {
    border-left-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

/* ============ NATIVE CFO VISUAL REPORT ============ */
.native-cfo-card {
    margin-top: 15px;
    animation: messageSlide 0.4s ease;
    font-family: "Space Grotesk", sans-serif;
}

.cfo-report-container {
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid var(--cyber-yellow);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(255, 184, 0, 0.15);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cfo-header {
    color: var(--cyber-yellow);
    margin-bottom: 5px;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.cfo-subtitle {
    font-size: 0.8em;
    opacity: 0.7;
    margin-bottom: 20px;
    color: white;
}

.cfo-stats-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cfo-stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.cfo-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: white;
}

.cfo-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.glowing-yellow {
    color: var(--cyber-yellow);
    text-shadow: 0 0 15px rgba(255, 184, 0, 0.5);
}

.glowing-red {
    color: #ff4444;
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.cfo-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.cfo-progress-fill {
    height: 100%;
    background: var(--cyber-yellow);
    box-shadow: 0 0 10px var(--cyber-yellow);
    transition: width 1s ease-out;
}

.cfo-progress-fill.red {
    background: #ff4444;
    box-shadow: 0 0 10px #ff4444;
}

.cfo-revenue-box {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cfo-revenue {
    font-size: 2rem;
    font-weight: bold;
}

.cfo-download-btn {
    background: var(--cyber-yellow);
    color: #000;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    margin-top: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.cfo-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.4);
}