/* ============================================
   EVENT SPACE BOOKING — Dark Underground Theme
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    /* Core palette */
    --bg-deep:        #050508;
    --bg-primary:     #0a0a12;
    --bg-secondary:   #12121e;
    --bg-card:        #16162a;
    --bg-elevated:    #1a1a32;
    --bg-input:       #12121e;
    --border-subtle:  #1e1e3a;
    --border-default: #2a2a4a;
    --border-focus:   #e94560;

    /* Accent colors */
    --accent:         #e94560;
    --accent-hover:   #ff5a75;
    --accent-glow:    rgba(233, 69, 96, 0.25);
    --accent-soft:    rgba(233, 69, 96, 0.08);
    --blue:           #0f3460;
    --blue-light:     #1a4a7a;
    --cyan:           #00d4aa;
    --cyan-glow:      rgba(0, 212, 170, 0.15);
    --purple:         #7c3aed;
    --amber:          #f59e0b;
    --amber-soft:     rgba(245, 158, 11, 0.1);

    /* Text */
    --text-primary:   #eeeef2;
    --text-secondary: #9999b0;
    --text-muted:     #666680;
    --text-accent:    #e94560;

    /* Status */
    --success:        #10b981;
    --success-bg:     rgba(16, 185, 129, 0.08);
    --warning:        #f59e0b;
    --warning-bg:     rgba(245, 158, 11, 0.08);
    --danger:         #ef4444;
    --danger-bg:      rgba(239, 68, 68, 0.08);
    --info:           #3b82f6;
    --info-bg:        rgba(59, 130, 246, 0.08);

    /* Spacing */
    --radius-sm:   6px;
    --radius-md:   10px;
    --radius-lg:   16px;
    --radius-xl:   24px;

    /* Shadows */
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.4);
    --shadow-md:   0 4px 16px rgba(0,0,0,0.5);
    --shadow-lg:   0 8px 32px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 30px rgba(233,69,96,0.15);

    /* Fonts */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'Outfit', sans-serif;
    --font-mono:    'JetBrains Mono', monospace;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-default); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ─── BACKGROUND TEXTURE ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 10%, rgba(233,69,96,0.04), transparent),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(15,52,96,0.06), transparent),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ─── NAVIGATION ─── */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,10,18,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 24px;
}
.navbar-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.navbar-brand {
    font-family: var(--font-display);
    font-size: 28px; letter-spacing: 2px;
    color: var(--text-primary);
    display: flex; align-items: center; gap: 10px;
}
.navbar-brand .accent { color: var(--accent); }
.navbar-links { display: flex; align-items: center; gap: 8px; }
.navbar-links a {
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 500; font-size: 14px;
    transition: all .2s;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--text-primary); background: var(--accent-soft); }
.lang-switch {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm); padding: 4px; display: flex; gap: 2px;
}
.lang-switch button {
    background: none; border: none; color: var(--text-muted);
    padding: 4px 10px; border-radius: 4px; cursor: pointer;
    font-size: 12px; font-weight: 600; transition: all .2s;
}
.lang-switch button.active { background: var(--accent); color: #fff; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 24px; cursor: pointer; padding: 8px; }

/* ─── HERO ─── */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent-soft); border: 1px solid rgba(233,69,96,0.15);
    color: var(--accent); font-size: 12px; font-weight: 600;
    padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
    letter-spacing: 1px; text-transform: uppercase;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    line-height: 0.95; letter-spacing: 3px;
    margin-bottom: 16px;
}
.hero h1 .accent { color: var(--accent); }
.hero p {
    color: var(--text-secondary);
    font-size: 18px; max-width: 520px; margin: 0 auto 32px;
    font-weight: 300;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius-md);
    font-weight: 600; font-size: 14px;
    border: none; cursor: pointer;
    transition: all .25s ease;
    text-decoration: none; white-space: nowrap;
}
.btn-primary {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 12px rgba(233,69,96,0.3);
}
.btn-primary:hover {
    background: var(--accent-hover); color: #fff;
    box-shadow: 0 6px 20px rgba(233,69,96,0.4);
    transform: translateY(-1px);
}
.btn-secondary {
    background: var(--bg-elevated); color: var(--text-primary);
    border: 1px solid var(--border-default);
}
.btn-secondary:hover {
    border-color: var(--accent); color: var(--accent);
    background: var(--accent-soft);
}
.btn-ghost {
    background: transparent; color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}
.btn-ghost:hover { border-color: var(--border-default); color: var(--text-primary); }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #059669; color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
.btn .spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin .6s linear infinite; }

/* ─── CARDS ─── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all .3s ease;
}
.card:hover {
    border-color: var(--border-default);
    box-shadow: var(--shadow-md);
}
.card-glow:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}
.card-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}
.card-title {
    font-family: var(--font-display);
    font-size: 22px; letter-spacing: 1px;
}

/* ─── SPACE CARDS ─── */
.spaces-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.space-card {
    position: relative; overflow: hidden;
    cursor: pointer;
}
.space-card.selected {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow), inset 0 0 0 1px var(--accent);
}
.space-card .check-badge {
    position: absolute; top: 12px; right: 12px;
    width: 28px; height: 28px;
    background: var(--accent); border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    color: #fff; font-size: 14px;
    box-shadow: 0 2px 8px rgba(233,69,96,0.4);
}
.space-card.selected .check-badge { display: flex; }
.space-image {
    height: 180px;
    background: linear-gradient(135deg, var(--blue), var(--bg-elevated));
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; overflow: hidden;
}
.space-image img { width: 100%; height: 100%; object-fit: cover; }
.space-meta { display: flex; gap: 12px; margin: 12px 0; flex-wrap: wrap; }
.space-meta span {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; color: var(--text-muted);
    background: var(--bg-primary); padding: 4px 10px;
    border-radius: var(--radius-sm);
}
.space-pricing {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-top: 16px; padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}
.space-price { font-size: 24px; font-weight: 700; color: var(--accent); }
.space-price small { font-size: 13px; color: var(--text-muted); font-weight: 400; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block; margin-bottom: 6px;
    font-size: 13px; font-weight: 600; color: var(--text-secondary);
    letter-spacing: 0.5px; text-transform: uppercase;
}
.form-control {
    width: 100%; padding: 12px 16px;
    background: var(--bg-input); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); color: var(--text-primary);
    font-size: 15px; transition: all .2s;
    outline: none;
}
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239999b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* Checkbox / Radio cards */
.option-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.option-card {
    background: var(--bg-input); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 14px;
    cursor: pointer; transition: all .2s;
    display: flex; align-items: center; gap: 12px;
}
.option-card:hover { border-color: var(--border-default); }
.option-card.selected { border-color: var(--accent); background: var(--accent-soft); }
.option-card input[type="checkbox"],
.option-card input[type="radio"] { display: none; }
.option-card .icon { font-size: 24px; }
.option-card .label { font-weight: 500; font-size: 14px; }
.option-card .price { color: var(--accent); font-weight: 600; font-size: 13px; }

/* ─── BOOKING TYPE TOGGLE ─── */
.booking-type-toggle {
    display: flex; background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 4px; gap: 4px;
}
.booking-type-toggle button {
    flex: 1; padding: 12px 20px;
    background: none; border: none;
    color: var(--text-muted); font-weight: 600;
    border-radius: var(--radius-sm); cursor: pointer;
    transition: all .2s; font-size: 14px;
}
.booking-type-toggle button.active {
    background: var(--accent); color: #fff;
    box-shadow: 0 2px 8px rgba(233,69,96,0.3);
}

/* ─── CALENDAR ─── */
.calendar-wrapper {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); padding: 20px;
}
.calendar-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.calendar-header h3 {
    font-family: var(--font-display);
    font-size: 20px; letter-spacing: 1px;
}
.calendar-nav {
    display: flex; gap: 8px;
}
.calendar-nav button {
    width: 36px; height: 36px;
    background: var(--bg-elevated); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm); color: var(--text-secondary);
    cursor: pointer; transition: all .2s;
    display: flex; align-items: center; justify-content: center;
}
.calendar-nav button:hover { border-color: var(--accent); color: var(--accent); }
.calendar-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.calendar-day-header {
    text-align: center; font-size: 11px; font-weight: 600;
    color: var(--text-muted); padding: 8px 0;
    text-transform: uppercase; letter-spacing: 1px;
}
.calendar-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
    cursor: pointer; transition: all .2s;
    border: 1px solid transparent;
}
.calendar-day:hover:not(.disabled):not(.empty) { background: var(--accent-soft); border-color: var(--accent); }
.calendar-day.selected { background: var(--accent); color: #fff; font-weight: 700; }
.calendar-day.today { border-color: var(--cyan); color: var(--cyan); }
.calendar-day.disabled { color: var(--text-muted); opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
.calendar-day.booked { color: var(--danger); opacity: 0.5; cursor: not-allowed; }
.calendar-day.empty { cursor: default; }

/* ─── TIME PICKER ─── */
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
.time-slot {
    padding: 10px; text-align: center;
    background: var(--bg-input); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm); cursor: pointer;
    font-size: 14px; font-weight: 500; transition: all .2s;
    font-family: var(--font-mono);
}
.time-slot:hover { border-color: var(--accent); color: var(--accent); }
.time-slot.selected { background: var(--accent); color: #fff; border-color: var(--accent); }
.time-slot.disabled { opacity: 0.3; cursor: not-allowed; }

/* ─── WIZARD STEPS ─── */
.wizard-steps {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-bottom: 40px; padding: 0 20px;
}
.wizard-step {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: 13px; font-weight: 500;
}
.wizard-step .step-num {
    width: 32px; height: 32px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--bg-elevated); border: 2px solid var(--border-subtle);
    font-weight: 700; font-size: 13px; transition: all .3s;
}
.wizard-step.active .step-num { border-color: var(--accent); background: var(--accent); color: #fff; }
.wizard-step.completed .step-num { border-color: var(--success); background: var(--success); color: #fff; }
.wizard-step.active { color: var(--text-primary); }
.wizard-connector {
    width: 40px; height: 2px;
    background: var(--border-subtle); margin: 0 8px;
}
.wizard-connector.completed { background: var(--success); }

/* ─── ADD-ONS ─── */
.addons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.addon-card {
    background: var(--bg-input); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 16px;
    cursor: pointer; transition: all .25s;
    position: relative;
}
.addon-card:hover { border-color: var(--border-default); transform: translateY(-2px); }
.addon-card.selected {
    border-color: var(--accent); background: var(--accent-soft);
    box-shadow: 0 0 20px rgba(233,69,96,0.1);
}
.addon-card .addon-icon { font-size: 28px; margin-bottom: 8px; }
.addon-card .addon-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.addon-card .addon-price { color: var(--accent); font-weight: 700; font-size: 16px; }
.addon-card .addon-type { color: var(--text-muted); font-size: 12px; }

/* ─── BOOKING SUMMARY ─── */
.summary-panel {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); padding: 24px;
    position: sticky; top: 84px;
}
.summary-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; font-size: 14px;
}
.summary-row + .summary-row { border-top: 1px solid var(--border-subtle); }
.summary-row .label { color: var(--text-secondary); }
.summary-row .value { font-weight: 600; }
.summary-total {
    display: flex; justify-content: space-between;
    padding: 16px 0; margin-top: 8px;
    border-top: 2px solid var(--accent);
    font-size: 18px; font-weight: 700;
}
.summary-total .amount { color: var(--accent); font-size: 24px; }

/* ─── SECTION HEADERS ─── */
.section { padding: 60px 0; }
.section-header { margin-bottom: 32px; }
.section-header .overline {
    font-size: 12px; font-weight: 600; color: var(--accent);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 42px);
    letter-spacing: 2px;
}
.section-header p { color: var(--text-secondary); margin-top: 8px; max-width: 500px; }

/* ─── EVENT TYPES ─── */
.event-types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.event-type-card {
    background: var(--bg-input); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 16px;
    text-align: center; cursor: pointer; transition: all .25s;
}
.event-type-card:hover { border-color: var(--border-default); transform: translateY(-2px); }
.event-type-card.selected { border-color: var(--accent); background: var(--accent-soft); }
.event-type-card .icon { font-size: 32px; margin-bottom: 8px; }
.event-type-card .name { font-size: 13px; font-weight: 500; }

/* ─── FAQ ACCORDION ─── */
.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); margin-bottom: 8px;
    overflow: hidden;
}
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px; cursor: pointer;
    font-weight: 600; font-size: 15px;
    background: var(--bg-card); transition: all .2s;
}
.faq-question:hover { background: var(--bg-elevated); }
.faq-question .arrow { transition: transform .3s; color: var(--accent); }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
    padding: 0 20px; max-height: 0;
    overflow: hidden; transition: all .3s ease;
    color: var(--text-secondary); font-size: 14px; line-height: 1.7;
}
.faq-item.open .faq-answer { padding: 0 20px 16px; max-height: 200px; }

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.review-card { padding: 20px; }
.review-stars { color: var(--amber); font-size: 14px; margin-bottom: 8px; letter-spacing: 2px; }
.review-text { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.review-author { font-size: 13px; color: var(--text-muted); }

/* ─── FOOTER ─── */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 48px 0 24px;
    margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer h4 {
    font-family: var(--font-display);
    font-size: 18px; letter-spacing: 1px; margin-bottom: 16px;
}
.footer p, .footer a { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px; text-align: center;
    font-size: 12px; color: var(--text-muted);
}

/* ─── ALERTS ─── */
.alert {
    padding: 14px 18px; border-radius: var(--radius-md);
    font-size: 14px; display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 16px; border: 1px solid;
}
.alert-success { background: var(--success-bg); border-color: rgba(16,185,129,0.2); color: var(--success); }
.alert-warning { background: var(--warning-bg); border-color: rgba(245,158,11,0.2); color: var(--warning); }
.alert-danger { background: var(--danger-bg); border-color: rgba(239,68,68,0.2); color: var(--danger); }
.alert-info { background: var(--info-bg); border-color: rgba(59,130,246,0.2); color: var(--info); }

/* ─── TABLES ─── */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead { background: var(--bg-elevated); }
th {
    padding: 12px 16px; text-align: left;
    font-weight: 600; font-size: 12px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-subtle);
}
td {
    padding: 12px 16px; border-bottom: 1px solid var(--border-subtle);
    vertical-align: middle;
}
tbody tr { transition: background .15s; }
tbody tr:hover { background: var(--accent-soft); }
tbody tr:last-child td { border-bottom: none; }

/* ─── BADGES / PILLS ─── */
.badge {
    display: inline-flex; align-items: center;
    padding: 4px 10px; border-radius: 20px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.3px;
}
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger { background: var(--danger-bg); color: var(--danger); }
.badge-info { background: var(--info-bg); color: var(--info); }
.badge-neutral { background: var(--bg-elevated); color: var(--text-muted); }

/* ─── STAT CARDS (Dashboard) ─── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); padding: 20px;
    display: flex; align-items: flex-start; gap: 16px;
}
.stat-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}
.stat-icon.red { background: var(--accent-soft); }
.stat-icon.blue { background: var(--info-bg); }
.stat-icon.green { background: var(--success-bg); }
.stat-icon.amber { background: var(--warning-bg); }
.stat-value { font-size: 28px; font-weight: 700; line-height: 1.2; }
.stat-label { font-size: 13px; color: var(--text-muted); }

/* ─── ADMIN LAYOUT ─── */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px; background: var(--bg-primary);
    border-right: 1px solid var(--border-subtle);
    display: flex; flex-direction: column;
    position: fixed; top: 0; bottom: 0; left: 0; z-index: 50;
}
.sidebar-header {
    padding: 20px; border-bottom: 1px solid var(--border-subtle);
}
.sidebar-header h2 {
    font-family: var(--font-display);
    font-size: 22px; letter-spacing: 2px;
}
.sidebar-header .role { font-size: 12px; color: var(--text-muted); }
.sidebar-nav { flex: 1; padding: 12px; overflow-y: auto; }
.sidebar-nav .nav-section {
    font-size: 11px; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px;
    padding: 16px 12px 8px; margin-top: 4px;
}
.sidebar-nav a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: var(--radius-sm);
    color: var(--text-secondary); font-size: 14px; font-weight: 500;
    transition: all .2s; margin-bottom: 2px;
}
.sidebar-nav a:hover { background: var(--accent-soft); color: var(--text-primary); }
.sidebar-nav a.active { background: var(--accent); color: #fff; }
.sidebar-nav a .icon { font-size: 18px; width: 24px; text-align: center; }
.sidebar-footer { padding: 16px; border-top: 1px solid var(--border-subtle); }
.admin-main { flex: 1; margin-left: 260px; }
.admin-topbar {
    position: sticky; top: 0; z-index: 40;
    background: rgba(10,10,18,0.92); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 32px;
    display: flex; align-items: center; justify-content: space-between;
}
.admin-content { padding: 32px; }
.admin-page-title {
    font-family: var(--font-display);
    font-size: 28px; letter-spacing: 1px;
    margin-bottom: 24px;
}

/* ─── LOGIN PAGE ─── */
.login-wrapper {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.login-card {
    width: 100%; max-width: 400px;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl); padding: 40px;
    box-shadow: var(--shadow-lg);
}
.login-card h1 {
    font-family: var(--font-display);
    font-size: 32px; letter-spacing: 2px;
    text-align: center; margin-bottom: 8px;
}
.login-card .subtitle {
    text-align: center; color: var(--text-muted);
    font-size: 14px; margin-bottom: 32px;
}

/* ─── MODAL ─── */
.modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; visibility: hidden;
    transition: all .3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl); padding: 32px;
    max-width: 540px; width: 100%;
    transform: scale(0.95); transition: transform .3s;
    max-height: 85vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
}
.modal-header h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; }
.modal-close {
    width: 32px; height: 32px;
    background: var(--bg-elevated); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm); color: var(--text-muted);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 18px; transition: all .2s;
}
.modal-close:hover { border-color: var(--danger); color: var(--danger); }

/* ─── TOAST ─── */
.toast-container {
    position: fixed; top: 80px; right: 20px; z-index: 2000;
    display: flex; flex-direction: column; gap: 8px;
}
.toast {
    background: var(--bg-elevated); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 14px 20px;
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; box-shadow: var(--shadow-lg);
    animation: slideIn .3s ease;
    min-width: 300px; max-width: 420px;
}
.toast.success { border-left: 3px solid var(--success); }
.toast.error { border-left: 3px solid var(--danger); }
.toast.warning { border-left: 3px solid var(--warning); }

/* ─── PAGINATION ─── */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 24px; }
.pagination button, .pagination a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm); color: var(--text-secondary);
    font-size: 14px; cursor: pointer; transition: all .2s;
}
.pagination .active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ─── LOADING ─── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.skeleton {
    background: linear-gradient(90deg, var(--bg-elevated) 25%, var(--bg-card) 50%, var(--bg-elevated) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.fade-in { animation: fadeIn .4s ease both; }

/* ─── WHATSAPP FAB ─── */
.whatsapp-fab {
    position: fixed; bottom: 24px; right: 24px; z-index: 100;
    width: 56px; height: 56px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform .2s; font-size: 28px; color: #fff;
    text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1); color: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero { padding: 50px 0 40px; }
    .hero h1 { font-size: 40px; }
    .navbar-links { display: none; }
    .nav-toggle { display: block; }
    .navbar-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 64px; left: 0; right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-subtle);
        padding: 16px;
    }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .wizard-steps { flex-wrap: wrap; }
    .wizard-step .step-text { display: none; }
    .spaces-grid { grid-template-columns: 1fr; }
    .admin-sidebar { transform: translateX(-100%); transition: transform .3s; }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-content { padding: 16px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .spaces-grid { grid-template-columns: 1fr; }
    .event-types-grid { grid-template-columns: repeat(2, 1fr); }
    .time-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── PRINT ─── */
@media print {
    body { background: #fff; color: #000; }
    .navbar, .admin-sidebar, .whatsapp-fab, .btn, .no-print { display: none !important; }
    .admin-main { margin-left: 0; }
    .card { border: 1px solid #ddd; box-shadow: none; }
}

/* ─── PWA ─── */
.pwa-install-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--bg-card); border-top: 1px solid var(--accent);
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
    transform: translateY(100%); transition: transform .3s;
}
.pwa-install-banner.show { transform: translateY(0); }
