/* ═══════════════════════════════════════════════
   SISTEMA DE RESERVAS — DESIGN SYSTEM
   Paleta: Dark mode con acentos cyan/violeta
   Tipografía: Inter
   ═══════════════════════════════════════════════ */

/* ── RESET & VARIABLES ──────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores base */
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-card-hover: rgba(30, 41, 59, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-input: rgba(255, 255, 255, 0.05);
    
    /* Bordes */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-focus: rgba(99, 179, 237, 0.5);
    
    /* Texto */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Acentos */
    --accent-cyan: #fb923c;   /* Oro/Naranja */
    --accent-blue: #f472b6;   /* Rosa */
    --accent-violet: #d946ef; /* Fucsia */
    --accent-green: #10b981;
    --accent-amber: #f59e0b;
    --accent-red: #ef4444;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #fb923c, #f472b6, #d946ef);
    --gradient-hero: linear-gradient(135deg, #110515 0%, #2f1236 50%, #110515 100%);
    --gradient-card: linear-gradient(145deg, rgba(244, 114, 182, 0.08), rgba(217, 70, 239, 0.05));
    
    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow-cyan: 0 0 30px rgba(244, 114, 182, 0.25);
    --shadow-glow-violet: 0 0 30px rgba(217, 70, 239, 0.25);
    
    /* Radios */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--accent-violet);
}

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: background var(--transition-base), box-shadow var(--transition-base);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-subtle);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
}
.nav-logo strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-icon {
    font-size: 1.5rem;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}
.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}
.nav-links a:hover {
    color: var(--text-primary);
}
.nav-btn {
    padding: 0.5rem 1.2rem !important;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast) !important;
}
.nav-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan) !important;
}

/* ── HERO ───────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}
.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}
.shape-2 {
    width: 600px;
    height: 600px;
    background: var(--accent-violet);
    bottom: -250px;
    left: -150px;
    animation: float 10s ease-in-out infinite 2s;
}
.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: var(--space-3xl) 0;
}
.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease 0.1s both;
}
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto var(--space-xl);
    animation: fadeInUp 0.6s ease 0.2s both;
}

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

/* ── BUTTONS ────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    text-decoration: none;
}
.btn-primary {
    background: var(--gradient-primary);
    color: #0a0e1a;
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(34, 211, 238, 0.35);
    color: #0a0e1a;
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}
.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.35);
}
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--text-secondary);
}
.btn-danger {
    background: linear-gradient(135deg, var(--accent-red), #dc2626);
    color: white;
}
.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}
.btn-sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
}
.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* ── SECTIONS ───────────────────────────────── */
.section {
    padding: var(--space-3xl) 0;
}
.section-dark {
    background: var(--bg-secondary);
}
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}
.section-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--accent-violet);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}
.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--space-sm);
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ── SERVICE CARDS ──────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.2);
    box-shadow: var(--shadow-glow-cyan);
}
.service-card:hover::before {
    opacity: 1;
}
.service-card > * {
    position: relative;
    z-index: 1;
}
.service-card .service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    line-height: 1.5;
}
.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}
.service-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.service-price {
    font-weight: 700;
    color: var(--accent-cyan) !important;
    font-size: 1rem !important;
}

/* ── STEPPER ────────────────────────────────── */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-2xl);
    gap: 0;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0.35;
    transition: all var(--transition-base);
}
.step.active {
    opacity: 1;
}
.step.completed {
    opacity: 0.7;
}
.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}
.step.active .step-circle {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #0a0e1a;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}
.step.completed .step-circle {
    background: var(--accent-green);
    border-color: transparent;
    color: white;
}
.step span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}
.step-line {
    width: 60px;
    height: 2px;
    background: var(--border-light);
    margin: 0 var(--space-sm);
    margin-bottom: 20px;
    transition: background var(--transition-base);
}

/* ── FORM CARD ──────────────────────────────── */
.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}
.form-step.active {
    display: block;
}

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

.form-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    text-align: center;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.form-group.full-width {
    grid-column: 1 / -1;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: var(--bg-input);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-xl);
}

/* ── SERVICE SELECTOR (step 1) ──────────────── */
.service-selector {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}
.service-option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background: var(--bg-glass);
    cursor: pointer;
    transition: all var(--transition-base);
}
.service-option:hover {
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.05);
}
.service-option.selected {
    border-color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.08);
    box-shadow: var(--shadow-glow-cyan);
}
.service-option .opt-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}
.service-option.selected .opt-radio {
    border-color: var(--accent-cyan);
    background: var(--accent-cyan);
}
.service-option.selected .opt-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0a0e1a;
}
.service-option .opt-info h4 {
    font-size: 1rem;
    font-weight: 600;
}
.service-option .opt-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.service-option .opt-price {
    margin-left: auto;
    font-weight: 700;
    color: var(--accent-cyan);
    font-size: 1rem;
    white-space: nowrap;
}

/* ── TIME SLOTS ─────────────────────────────── */
.horarios-container {
    margin-top: var(--space-lg);
}
.horarios-container > label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: var(--space-sm);
}
.slot-btn {
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: var(--bg-glass);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-fast);
}
.slot-btn:hover {
    border-color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.1);
}
.slot-btn.selected {
    background: var(--gradient-primary);
    color: #0a0e1a;
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
}
.slots-empty {
    text-align: center;
    padding: var(--space-xl);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ── SUMMARY CARD ───────────────────────────── */
.summary-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-md);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-subtle);
}
.summary-row:last-child {
    border-bottom: none;
}
.summary-row .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.summary-row .value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-align: right;
}

/* ── SUCCESS ────────────────────────────────── */
.success-container {
    text-align: center;
    padding: var(--space-xl) 0;
}
.success-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-container h3 {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}
.success-msg {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}
.success-details {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    text-align: left;
}

/* ── TOAST ──────────────────────────────────── */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.toast {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 0.9rem;
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
    backdrop-filter: blur(20px);
}
.toast.error {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.1);
}
.toast.success {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}
.footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ── LOADING SPINNER ────────────────────────── */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* ══════════════════════════════════════════════
   ADMIN PANEL STYLES
   ══════════════════════════════════════════════ */

/* Login */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: var(--space-lg);
}
.login-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}
.login-card h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 1.5rem;
}
.login-card .form-group {
    margin-bottom: var(--space-md);
}
.login-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-md);
}

/* Admin Dashboard */
.admin-layout {
    display: none;
    min-height: 100vh;
    background: var(--bg-primary);
}
.admin-header {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-header h1 {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.admin-header .admin-user {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}
.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 800;
}
.stat-card.cyan .stat-value { color: var(--accent-cyan); }
.stat-card.violet .stat-value { color: var(--accent-violet); }
.stat-card.amber .stat-value { color: var(--accent-amber); }
.stat-card.green .stat-value { color: var(--accent-green); }

/* Filters */
.filters-bar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}
.filters-bar .form-group {
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
}
.filters-bar select,
.filters-bar input {
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: var(--bg-input);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
}
.filters-bar select:focus,
.filters-bar input:focus {
    border-color: var(--accent-cyan);
}

/* Reservations Table */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}
.reservas-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.reservas-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-md);
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-subtle);
    white-space: nowrap;
}
.reservas-table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
    vertical-align: middle;
}
.reservas-table tr:last-child td {
    border-bottom: none;
}
.reservas-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Status Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}
.badge-pendiente {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.badge-confirmada {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.badge-cancelada {
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Table Actions */
.table-actions {
    display: flex;
    gap: var(--space-xs);
}
.action-btn {
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.action-btn.confirm {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.action-btn.confirm:hover {
    background: rgba(16, 185, 129, 0.3);
}
.action-btn.cancel {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.action-btn.cancel:hover {
    background: rgba(245, 158, 11, 0.3);
}
.action-btn.delete {
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.action-btn.delete:hover {
    background: rgba(239, 68, 68, 0.3);
}

.no-data {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--text-muted);
}
.no-data .no-data-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
    .nav-links { gap: var(--space-md); }
    .form-grid { grid-template-columns: 1fr; }
    .stepper { gap: 0; }
    .step span { font-size: 0.65rem; }
    .step-line { width: 30px; }
    .form-card { padding: var(--space-lg); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .filters-bar { flex-direction: column; align-items: stretch; }
    .service-option { flex-wrap: wrap; }
    .service-option .opt-price { margin-left: 0; margin-top: var(--space-xs); }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .step span { display: none; }
    .step-line { width: 20px; }
}

/* ── VIP TICKET ─────────────────────────────── */
.ticket-wrapper {
    display: flex;
    justify-content: center;
    padding: var(--space-xl) 0;
}
.vip-ticket {
    background: linear-gradient(135deg, #2a112f, #1a0820);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 30px rgba(251, 191, 36, 0.2);
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.4);
}
.ticket-hole {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    left: -21px;
    z-index: 2;
    border-right: 1px solid rgba(251, 191, 36, 0.4);
}
.ticket-hole.top { top: 120px; }
.ticket-hole.bottom { bottom: 120px; }
.ticket-header {
    background: var(--gradient-primary);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    color: #110515;
}
.ticket-type {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.8;
}
.ticket-header h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 2px;
}
.ticket-body {
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.ticket-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.info-row {
    display: flex;
    justify-content: space-between;
}
.info-group {
    display: flex;
    flex-direction: column;
}
.info-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
}
.ticket-info strong {
    font-size: 1.05rem;
    color: var(--text-primary);
}
.t-id { font-family: monospace; font-size: 1.3rem; color: var(--accent-cyan); }
.ticket-qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: var(--space-md);
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}
.qr-box {
    background: #fff;
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}
.scan-me {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.ticket-footer {
    background: rgba(0,0,0,0.4);
    text-align: center;
    padding: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
}
