/* ==========================================
   RIDE ME - DESIGN SYSTEM & STYLESHEET
   Dark Glassmorphism Theme (Gold & Obsidian)
   ========================================== */

:root {
    --bg-dark: #090A0F;
    --bg-surface: #12131A;
    --card-glass: rgba(22, 24, 34, 0.72);
    --card-glass-hover: rgba(30, 33, 46, 0.85);
    --card-border: rgba(255, 184, 0, 0.18);
    --card-border-gold: rgba(255, 184, 0, 0.5);

    --gold-primary: #FFB800;
    --gold-hover: #E6A500;
    --gold-light: #FFCF4D;
    --gold-glow: rgba(255, 184, 0, 0.35);

    --whatsapp-green: #25D366;
    --whatsapp-hover: #1FAF54;
    --whatsapp-glow: rgba(37, 211, 102, 0.4);

    --accent-red: #FF3B30;
    --accent-blue: #0A84FF;
    --accent-green: #30D158;

    --text-main: #F4F5F8;
    --text-muted: #9BA1B0;
    --text-dark: #12131A;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 25px rgba(255, 184, 0, 0.2);
    --shadow-whatsapp: 0 0 20px rgba(37, 211, 102, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #232634;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.25;
}

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

.text-gold { color: var(--gold-primary) !important; }
.highlight-gold {
    background: linear-gradient(135deg, #FFB800 0%, #FFCF4D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-center { text-align: center; }
.margin-top-xl { margin-top: 2.5rem; }
.margin-bottom-lg { margin-bottom: 1.5rem; }

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    filter: drop-shadow(0 0 8px rgba(255, 184, 0, 0.4));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFF 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--gold-primary);
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.25);
    font-weight: 600;
}

.nav-admin-btn {
    position: relative;
}

.badge {
    background: var(--accent-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 4px;
}

.btn-whatsapp-header {
    background: var(--whatsapp-green);
    color: #FFF;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp-header:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--card-glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    border-color: var(--card-border-gold);
}

/* Main Container */
.main-content {
    flex: 1;
}

.tab-page {
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.tab-page.active {
    display: block;
    opacity: 1;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 184, 0, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Booking Layout Grid */
.booking-container {
    max-width: 1200px;
    margin: -1.5rem auto 3rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1.75rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-icon {
    font-size: 1.75rem;
    color: var(--gold-primary);
    background: rgba(255, 184, 0, 0.12);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 184, 0, 0.25);
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Forms & Inputs */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-group label i {
    color: var(--gold-primary);
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    background: rgba(12, 14, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.15);
}

/* Hourly Selector */
.hours-selector {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.hour-btn {
    background: rgba(15, 17, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem 0.4rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.25s ease;
}

.hour-btn .h-num {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hour-btn .h-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hour-btn:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: rgba(255, 184, 0, 0.4);
    color: var(--text-main);
}

.hour-btn.active {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 184, 0, 0.05) 100%);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.2);
}

/* Buttons */
.action-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-primary-whatsapp {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #1EBE5A 100%);
    color: #FFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1.1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-whatsapp);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-pulse {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-secondary-save {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-secondary-save:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-main);
}

.btn-primary-gold {
    background: linear-gradient(135deg, #FFB800 0%, #E6A500 100%);
    color: #12131A;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-outline-gold:hover {
    background: rgba(255, 184, 0, 0.15);
    color: #FFF;
}

.btn-block { width: 100%; }

/* Summary Box */
.summary-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.summary-header {
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.price-box {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.12) 0%, rgba(255, 184, 0, 0.03) 100%);
    border: 1px dashed var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    margin: 1.25rem 0;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1.1;
    margin: 0.4rem 0;
}

.price-detail {
    font-size: 0.85rem;
    color: var(--text-main);
}

.summary-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.d-icon {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.d-text {
    display: flex;
    flex-direction: column;
    font-size: 0.88rem;
}

.d-text strong {
    color: var(--text-main);
}

.d-text span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.quick-call-box {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-icon {
    font-size: 1.6rem;
    color: var(--gold-primary);
}

.call-title {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.call-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold-primary);
}

/* Driver Registration Page */
.page-title-box {
    margin-bottom: 2.5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 184, 0, 0.15);
    color: var(--gold-primary);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2rem;
}

.benefits-list {
    list-style: none;
    margin: 1.25rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.benefits-list i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.requirements-box {
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--gold-primary);
    padding: 1.25rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 0.88rem;
}

.requirements-box h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.file-dropzone {
    border: 2px dashed rgba(255, 184, 0, 0.3);
    background: rgba(12, 14, 22, 0.6);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.file-dropzone:hover {
    border-color: var(--gold-primary);
    background: rgba(255, 184, 0, 0.05);
}

.drop-icon {
    font-size: 2rem;
    color: var(--gold-primary);
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.25rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-checkbox-group input {
    margin-top: 3px;
}

/* Pricing Page Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.featured {
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.15);
}

.popular-tag {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--gold-primary);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.p-card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.p-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.p-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #FFF;
    margin: 0.5rem 0;
}

.p-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.p-features {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.9rem;
}

.p-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Stepper */
.how-it-works-box {
    padding: 2.5rem 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: rgba(12, 14, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--gold-primary);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Admin Dashboard */
.admin-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.admin-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.admin-top-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}
.btn-danger {
    background: rgba(255, 59, 48, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
}

.m-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-yellow { background: rgba(255, 184, 0, 0.15); color: var(--gold-primary); }
.icon-green { background: rgba(48, 209, 88, 0.15); color: var(--accent-green); }
.icon-blue { background: rgba(10, 132, 255, 0.15); color: var(--accent-blue); }
.icon-gold { background: rgba(255, 207, 77, 0.2); color: var(--gold-light); }

.m-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.m-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: #FFF;
}

.admin-tabs-bar {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.admin-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
}

.admin-tab-btn.active {
    background: var(--gold-primary);
    color: var(--text-dark);
    border-color: var(--gold-primary);
}

.admin-subpanel {
    display: none;
}

.admin-subpanel.active {
    display: block;
}

.table-toolbar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

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

.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.custom-table th {
    background: rgba(12, 14, 22, 0.9);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.custom-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* Status Badges */
.status-pill {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.status-pending { background: rgba(255, 184, 0, 0.2); color: var(--gold-primary); border: 1px solid var(--gold-primary); }
.status-approved { background: rgba(48, 209, 88, 0.2); color: var(--accent-green); border: 1px solid var(--accent-green); }
.status-rejected { background: rgba(255, 59, 48, 0.2); color: var(--accent-red); border: 1px solid var(--accent-red); }

/* Footer */
.footer {
    background: #06070A;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--gold-primary);
}

.footer-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: rgba(20, 22, 32, 0.95);
    border: 1px solid var(--gold-primary);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .booking-grid,
    .registration-grid,
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0D0E15;
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--card-border);
    }
    .nav-menu.open { display: flex; }
    .nav-link { width: 100%; }
    .hide-mobile { display: none; }
    .hero-title { font-size: 2rem; }
    .form-row { flex-direction: column; gap: 0; }
    .metrics-grid, .steps-grid { grid-template-columns: 1fr; }
    .admin-header-flex { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .hours-selector { grid-template-columns: repeat(3, 1fr); }
}
