/**
 * PRESTIGE THEME - Dark Glamour Edition
 * Premium dark design with elegant blur effects
 * The official GlamourSchedule design
 */

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

:root {
    /* Theme Variables - Dark Mode (Default) */
    --theme-bg: #000000;
    --theme-text: #FFFFFF;
    --theme-text-muted: #999999;
    --theme-border: #FFFFFF;

    /* Button Variables */
    --btn-bg: transparent;
    --btn-text: #FFFFFF;
    --btn-border: #FFFFFF;
    --btn-hover-bg: #FFFFFF;
    --btn-hover-text: #000000;

    /* Input Variables */
    --input-bg: #1a1a1a;
    --input-text: #FFFFFF;
    --input-border: #FFFFFF;
    --input-placeholder: #666666;

    /* Card Variables */
    --card-bg: #0a0a0a;
    --card-border: #333333;

    /* Semantic Colors */
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Legacy Variables (for backwards compatibility) */
    --black: #000000;
    --onyx: #0a0a0a;
    --charcoal-dark: #111111;
    --white: #ffffff;
    --snow: #f5f5f5;
    --cream: #e0e0e0;
    --silver: #b8b8b8;
    --gray: #8a8a8a;
    --charcoal: #1a1a1a;
    --graphite: #2a2a2a;
    --line: #444444;
    --line-dark: #2a2a2a;
    --accent: #ffffff;
    --accent-light: #f0f0f0;
    --bg-primary: var(--onyx);
    --bg-secondary: var(--charcoal-dark);
    --bg-dark: var(--black);
    --bg-card: #0f0f0f;
    --text-primary: var(--white);
    --text-secondary: var(--silver);
    --text-light: var(--gray);
    --primary: #ffffff;
    --primary-dark: #e0e0e0;
    --secondary: #1a1a1a;
    --border: #333333;
    --text: #ffffff;
    --text-muted: #999999;
}

/* Light Mode */
[data-theme="light"] {
    /* Theme Variables */
    --theme-bg: #FFFFFF;
    --theme-text: #000000;
    --theme-text-muted: #666666;
    --theme-border: #000000;

    /* Button Variables */
    --btn-bg: transparent;
    --btn-text: #000000;
    --btn-border: #000000;
    --btn-hover-bg: #000000;
    --btn-hover-text: #FFFFFF;

    /* Input Variables */
    --input-bg: #FFFFFF;
    --input-text: #000000;
    --input-border: #000000;
    --input-placeholder: #888888;

    /* Card Variables */
    --card-bg: #FFFFFF;
    --card-border: #e0e0e0;

    /* Semantic Colors */
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Legacy Variables (for backwards compatibility) */
    --black: #ffffff;
    --onyx: #f8f8f8;
    --charcoal-dark: #f0f0f0;
    --white: #000000;
    --snow: #1a1a1a;
    --cream: #333333;
    --silver: #555555;
    --gray: #666666;
    --charcoal: #e5e5e5;
    --graphite: #d5d5d5;
    --line: #e0e0e0;
    --line-dark: #d0d0d0;
    --accent: #000000;
    --accent-light: #333333;
    --bg-primary: #f8f8f8;
    --bg-secondary: #f0f0f0;
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #000000;
    --text-secondary: #555555;
    --text-light: #666666;
    --primary: #000000;
    --primary-dark: #333333;
    --secondary: #f5f5f5;
    --border: #e0e0e0;
    --text: #000000;
    --text-muted: #666666;
}

[data-theme="light"] body::before {
    background: none;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--btn-bg);
    border: 2px solid var(--btn-border);
    border-radius: 12px;
    color: var(--btn-text);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.75rem;
}
.theme-toggle:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-text);
}
/* Dark mode (default): show sun icon to switch to light */
.theme-toggle .theme-icon-light {
    display: inline-block;
    color: var(--theme-text);
}
.theme-toggle .theme-icon-dark {
    display: none !important;
}
/* Light mode: show moon icon to switch to dark */
[data-theme="light"] .theme-toggle .theme-icon-light {
    display: none !important;
}
[data-theme="light"] .theme-toggle .theme-icon-dark {
    display: inline-block !important;
    color: var(--theme-text);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--theme-bg);
    color: var(--theme-text);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}

/* Global Blur Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(60, 60, 70, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(50, 50, 60, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(40, 40, 50, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   CONTAINER
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
}

/* ========================================
   NAVIGATION - Premium Dark
======================================== */
.nav-prestige {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 4rem;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Add padding to main content to account for fixed navbar */
main {
    padding-top: 72px;
}

/* Hero section has its own padding, so remove main padding when hero is first child */
main:has(.hero-prestige:first-child) {
    padding-top: 0;
}

.logo-prestige {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-prestige .logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--white);
    color: var(--black);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-prestige .logo-icon {
    width: 36px;
    height: 36px;
}

.logo-prestige .logo-text {
    display: inline;
}

/* Desktop Theme Toggle in Nav */
.nav-theme-toggle.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--white) 20%, transparent);
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    margin: 0;
    margin-bottom: 0;
    font-size: 1rem;
}

.nav-theme-toggle.theme-toggle:hover {
    background: color-mix(in srgb, var(--white) 10%, transparent);
    border-color: color-mix(in srgb, var(--white) 40%, transparent);
}

/* Hide logo from sidebar since it's in the nav bar */
.sidebar-logo span {
    display: none;
}

.logo-prestige i {
    font-size: 1.25rem;
    opacity: 0.9;
}

.nav-links-prestige {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links-prestige a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links-prestige a:hover {
    color: var(--white);
}

.nav-links-prestige > li > a:not(.nav-search-btn) span {
    position: relative;
}

.nav-links-prestige > li > a:not(.nav-search-btn) span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-links-prestige > li > a:not(.nav-search-btn):hover span::after {
    width: 100%;
}

/* Search Button in Nav - Dark Mode (default) */
.nav-search-btn {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s !important;
    border: 1px solid #333;
}
.nav-search-btn:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #555;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

/* Search Button in Nav - Light Mode */
[data-theme="light"] .nav-search-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0;
}
[data-theme="light"] .nav-search-btn:hover {
    background: #f5f5f5 !important;
    color: #000000 !important;
    border-color: #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(10, 10, 10, 0.85);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--silver);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding-left: 1.5rem;
}

.nav-dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--silver);
}

.nav-dropdown-menu a:hover i {
    color: var(--white);
}

.nav-actions-prestige {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-search-mobile {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.nav-search-mobile:hover {
    opacity: 0.7;
}

/* ========================================
   GLOBAL SEARCH MODAL
======================================== */
.global-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    backdrop-filter: blur(4px);
}
.global-search-overlay.active {
    display: block;
}
.global-search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    background: #000000;
    border-radius: 0 0 20px 20px;
    z-index: 2001;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid #333;
    border-top: none;
}
.global-search-modal.active {
    display: block;
}
.global-search-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--black);
    color: var(--white);
}
.global-search-header > i {
    font-size: 1.25rem;
    opacity: 0.7;
}
.global-search-header input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    outline: none;
}
.global-search-header input::placeholder {
    color: rgba(255,255,255,0.5);
}
.global-search-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.global-search-close:hover {
    opacity: 1;
}
.global-search-results {
    padding: 1rem;
    max-height: calc(80vh - 60px);
    overflow-y: auto;
    background: #000000;
}
.search-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    padding: 0.75rem 0.5rem 0.5rem;
    margin-top: 0.5rem;
}

[data-theme="light"] .search-section-title {
    color: #666666;
}
.search-section-title:first-child {
    margin-top: 0;
    padding-top: 0;
}
/* Dark mode (default) - black background, white text */
.search-quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}
.search-quick-link:hover {
    background: #1a1a1a;
    border-color: #555;
}
.search-quick-link i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
}
.search-quick-link:hover i {
    background: #333;
    color: #ffffff;
}
.search-quick-link span {
    font-weight: 500;
    color: #ffffff;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s;
}
.search-result-item:hover {
    background: var(--secondary);
}
.search-result-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--secondary);
}
.search-result-info {
    flex: 1;
}
.search-result-name {
    font-weight: 600;
    color: var(--text);
    display: block;
}
.search-result-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}
.search-no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}
.search-no-results i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}
@media (max-width: 768px) {
    .global-search-modal {
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
    }
    .global-search-results {
        max-height: calc(100vh - 60px);
    }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--btn-border);
    background: var(--btn-bg);
    color: var(--btn-text);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-text);
}

.btn-primary {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-text);
    border: 2px solid var(--btn-border);
}

.btn-primary:hover {
    background: var(--btn-bg);
    color: var(--btn-text);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--btn-bg);
    color: var(--btn-text);
    border: 2px solid var(--btn-border);
}

.btn-secondary:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-text);
}

.btn-dark {
    background: var(--theme-bg);
    color: var(--theme-text);
    border: 2px solid var(--theme-border);
}

.btn-dark:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-text);
}

.btn-outline {
    background: var(--btn-bg);
    color: var(--btn-text);
    border: 2px solid var(--btn-border);
}

.btn-outline:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-text);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 0.8rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
}

/* ========================================
   HERO SECTION - Dark Premium with Background Image
======================================== */
.hero-prestige {
    background: var(--black);
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 10rem 4rem 6rem;
    text-align: center;
    position: relative;
}

/* Hero overlay for faded/blurred effect */
.hero-prestige::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 0;
}

/* Ensure hero content is above overlay */
.hero-prestige > * {
    position: relative;
    z-index: 1;
}

/* Search form integrated in hero */
.hero-search-form {
    margin-top: 2.5rem;
    width: 100%;
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--line-dark);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 2.5rem;
}

.hero-prestige h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-prestige h1 span {
    font-weight: 300;
    color: var(--silver);
}

.hero-divider {
    width: 50px;
    height: 1px;
    background: var(--silver);
    margin: 2rem auto;
}

.hero-prestige p {
    font-size: 1rem;
    color: var(--silver);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ========================================
   SEARCH SECTION - Transparent with White Underline
======================================== */
.search-section {
    background: var(--black);
    padding: 0 4rem 5rem;
}

.search-prestige {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    gap: 1rem;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0;
    gap: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s;
}

.search-input-group:focus-within {
    border-bottom-color: var(--white);
}

.search-input-group i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.search-input-group input {
    flex: 1;
    padding: 1rem 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.search-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-divider {
    display: none;
}

.search-prestige button {
    padding: 1rem 2.5rem;
    background: var(--white);
    border: none;
    color: var(--black);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    white-space: nowrap;
}

.search-prestige button:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* ========================================
   SECTIONS
======================================== */
.section {
    padding: 5rem 4rem;
    position: relative;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-light {
    background: rgba(20, 20, 22, 0.8);
    backdrop-filter: blur(20px);
}

.section-gray {
    background: rgba(25, 25, 28, 0.9);
    backdrop-filter: blur(15px);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-light .section-title,
.section-gray .section-title {
    color: var(--white);
}

.section-subtitle {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.95rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   CATEGORY GRID
======================================== */
.grid-prestige {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Generic Card */
.card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    color: var(--theme-text);
}

.card h1, .card h2, .card h3, .card h4 {
    color: var(--theme-text);
}

.card p {
    color: var(--theme-text-muted);
}

.card table {
    color: var(--theme-text);
}

.card-prestige {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid var(--card-border);
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 8px;
}

.card-prestige:hover {
    background: var(--card-bg);
    border-color: var(--theme-border);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-prestige:hover .card-icon {
    background: var(--white);
    color: var(--black);
}

.card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    transition: all 0.4s;
    border-radius: 50%;
}

.card-prestige h3 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.card-prestige p,
.card-count {
    font-size: 0.8rem;
    color: var(--silver);
}

/* ========================================
   STATS
======================================== */
.stats-prestige {
    display: flex;
    justify-content: center;
    gap: 6rem;
    padding: 4rem 4rem;
    background: rgba(20, 20, 24, 0.9);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 0.75rem;
}

/* ========================================
   BUSINESS CARDS
======================================== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.business-card {
    background: rgba(25, 25, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 8px;
}

.business-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.business-image {
    height: 180px;
    background: rgba(35, 35, 40, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.business-image i {
    font-size: 2.5rem;
    color: var(--gray);
}

.business-body {
    padding: 1.5rem;
}

.business-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.business-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--silver);
    margin-bottom: 0.75rem;
}

.business-location i {
    font-size: 0.75rem;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.business-rating .stars {
    color: var(--white);
    font-size: 0.75rem;
}

.business-rating .count {
    font-size: 0.8rem;
    color: var(--silver);
}

.business-btn {
    display: block;
    padding: 0.75rem;
    background: var(--white);
    color: var(--black);
    text-align: center;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 4px;
}

.business-btn:hover {
    background: var(--cream);
}

/* ========================================
   STEPS / HOW IT WORKS
======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: rgba(25, 25, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
}

.step-card:hover {
    background: rgba(30, 30, 35, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--silver);
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-prestige {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 20, 25, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 4rem auto;
    border-radius: 12px;
}

.cta-prestige h2 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cta-prestige p {
    color: var(--silver);
    font-size: 0.9rem;
}

.cta-prestige .btn-primary {
    background: var(--white);
    color: var(--black);
}

.cta-prestige .btn-primary:hover {
    background: var(--cream);
}

/* ========================================
   FOOTER
======================================== */
.footer-prestige {
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    color: var(--white);
    padding: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-prestige h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-prestige ul {
    list-style: none;
}

.footer-prestige ul li {
    margin-bottom: 0.75rem;
}

.footer-prestige ul a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-prestige ul a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--silver);
    letter-spacing: 1px;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
}

/* ========================================
   ALERTS
======================================== */
.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-left: 3px solid #10b981;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-left: 3px solid #ef4444;
}

.alert-warning {
    background: #fffbeb;
    color: #92400e;
    border-left: 3px solid #f59e0b;
}

/* ========================================
   FORMS - Transparent with White Underline
======================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--silver);
}

.form-input {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--input-border);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    color: var(--input-text);
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--input-border);
}

.form-input::placeholder {
    color: var(--input-placeholder);
}

/* Form input variant with background (for cards) */
.form-input-filled {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--input-bg);
    border: 2px solid var(--input-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--input-text);
    transition: border-color 0.3s;
}

.form-input-filled:focus {
    outline: none;
    border-color: var(--input-border);
}

.form-input-filled::placeholder {
    color: var(--input-placeholder);
}

/* ========================================
   UTILITIES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-6 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8 { padding-top: 4rem; padding-bottom: 4rem; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .nav-prestige {
        padding: 0 2rem;
    }

    .hero-prestige {
        padding: 8rem 2rem 4rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .cta-prestige {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin: 2rem 1rem;
        padding: 2rem 1.5rem;
    }

    .stats-prestige {
        gap: 3rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-prestige {
        padding: 0 1rem;
        height: 60px;
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .nav-actions-prestige {
        margin-left: auto;
    }

    main {
        padding-top: 60px;
    }

    main:has(.hero-prestige:first-child) {
        padding-top: 0;
    }

    .nav-links-prestige {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-top: 1px solid var(--line-dark);
    }

    .nav-links-prestige.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-prestige {
        padding: 7rem 1rem 3rem;
        min-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-prestige h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        letter-spacing: 3px;
    }

    .hero-tag {
        font-size: 0.6rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-divider {
        margin: 1.25rem auto;
    }

    .hero-prestige p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .search-section {
        padding: 0 1rem 2.5rem;
    }

    .search-prestige {
        flex-direction: column;
        gap: 1.5rem;
    }

    .search-input-group {
        padding-bottom: 0.5rem;
    }

    .search-input-group input {
        font-size: 1rem;
        padding: 0.75rem 0;
    }

    .search-prestige button {
        width: 100%;
        padding: 1rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .grid-prestige {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card-prestige {
        padding: 1.75rem 1.5rem;
    }

    .stats-prestige {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .stat-item {
        min-width: 120px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-card {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-prestige {
        padding: 2.5rem 1rem;
    }

    /* Improve touch targets */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
    }

    /* Better tap areas for links */
    .sidebar-link {
        padding: 1rem 1.5rem;
        min-height: 48px;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-prestige {
        padding: 6rem 0.75rem 2.5rem;
    }

    .hero-prestige h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .search-section {
        padding: 0 0.75rem 2rem;
    }

    .section {
        padding: 2rem 0.75rem;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

/* ========================================
   SALES PARTNER CTA
======================================== */
.sales-cta {
    background: linear-gradient(135deg, rgba(50, 50, 60, 0.4) 0%, rgba(25, 25, 30, 0.8) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.sales-cta h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.sales-cta h3 i {
    margin-right: 0.5rem;
    color: var(--white);
}

.sales-cta p {
    color: var(--silver);
    font-size: 0.9rem;
    margin: 0;
}

.sales-cta .btn {
    background: var(--white);
    color: var(--black);
    border: none;
}

.sales-cta .btn:hover {
    background: var(--cream);
}

/* ========================================
   BUSINESS CTA BANNER
======================================== */
.business-cta {
    background: linear-gradient(135deg, rgba(40, 40, 50, 0.5) 0%, rgba(20, 20, 25, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.business-cta h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.business-cta h2 i {
    margin-right: 0.5rem;
    color: var(--white);
}

.business-cta p {
    color: var(--silver);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.business-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.business-cta .btn-primary {
    background: var(--white);
    color: var(--black);
}

.business-cta .btn-primary:hover {
    background: var(--cream);
}

.business-cta .badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.business-cta .badge i {
    margin-right: 0.5rem;
    color: var(--white);
}

/* ========================================
   CONTAINER DARK
======================================== */
.container {
    position: relative;
    z-index: 1;
}

/* ========================================
   HERO BACKGROUND OVERLAY
======================================== */
.hero-prestige::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 70%, rgba(150, 150, 150, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* ========================================
   LIVE STATS ANIMATION
======================================== */
.stat-number.updating {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========================================
   RESPONSIVE SALES CTA
======================================== */
@media (max-width: 768px) {
    .sales-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .business-cta {
        padding: 2rem 1.5rem;
    }

    .business-cta-buttons {
        flex-direction: column;
    }
}

/* ========================================
   MOBILE SIDEBAR NAVIGATION
======================================== */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10004;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #000000;
    z-index: 10005;
    transition: left 0.3s ease;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-logo-icon {
    width: 32px;
    height: 32px;
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s;
}

.sidebar-close:hover {
    opacity: 0.7;
}

.sidebar-nav {
    padding: 1rem 0;
    flex: 1;
    overflow-y: auto;
}

.sidebar-section {
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
}

.sidebar-section-title {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    color: var(--silver);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-left-color: var(--white);
}

.sidebar-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-left-color: var(--white);
}

.sidebar-link i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1rem 1.5rem;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.sidebar-btn {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: var(--white);
    color: var(--black);
    text-align: center;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 0.75rem;
}

.sidebar-btn:hover {
    background: var(--cream);
}

.sidebar-btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sidebar-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hide desktop nav on mobile and tablet (iPad) */
@media (max-width: 1024px) {
    .nav-links-prestige {
        display: none !important;
    }

    .nav-actions-prestige .btn {
        display: none;
    }

    .nav-actions-prestige .nav-theme-toggle {
        display: none;
    }

    .nav-search-mobile {
        display: flex;
    }

    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
    }
}

/* Mobile and tablet (iPad) sidebar improvements */
@media (max-width: 1024px) {
    .sidebar {
        width: 100%;
        left: -100%;
        max-width: 100%;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar-header {
        padding: 1.25rem 1.5rem;
        position: sticky;
        top: 0;
        background: #000000;
        z-index: 10;
    }

    .sidebar-close {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
    }

    .sidebar-link {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
        min-height: 56px;
    }

    .sidebar-link i {
        font-size: 1.1rem;
        width: 24px;
    }

    .sidebar-section-title {
        font-size: 0.7rem;
        padding-top: 0.5rem;
    }

    .sidebar-divider {
        margin: 0.75rem 1.5rem;
    }

    .sidebar-footer {
        padding: 1.25rem 1.5rem;
        position: sticky;
        bottom: 0;
        background: #000000;
    }

    .sidebar-btn {
        padding: 1rem;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    .sidebar-btn + .sidebar-btn {
        margin-top: 0.75rem;
    }
}

/* Show nav on desktop (larger than tablet) */
@media (min-width: 1025px) {
    .sidebar,
    .sidebar-overlay {
        display: none !important;
    }

    .nav-toggle {
        display: none !important;
    }
}

/* ========================================
   LIGHT MODE OVERRIDES
======================================== */
[data-theme="light"] body {
    background: #ffffff;
    color: #000000;
}

[data-theme="light"] body::before {
    background: none;
}

[data-theme="light"] .nav-prestige {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .logo-prestige,
[data-theme="light"] .nav-toggle {
    color: #000000;
}

[data-theme="light"] .nav-links-prestige a {
    color: #555555;
}

[data-theme="light"] .nav-links-prestige a:hover {
    color: #000000;
}

[data-theme="light"] .nav-links-prestige > li > a:not(.nav-search-btn) span::after {
    background: #000000;
}

[data-theme="light"] .nav-dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .nav-dropdown-menu::before {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-dropdown-menu::after {
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .nav-dropdown-menu a {
    color: #555555;
}

[data-theme="light"] .nav-dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
}

[data-theme="light"] .nav-dropdown-menu a i {
    color: #555555;
}

[data-theme="light"] .nav-dropdown-menu a:hover i {
    color: #000000;
}

[data-theme="light"] .hero-prestige {
    background-color: #f5f5f5;
}

[data-theme="light"] .hero-prestige::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(245, 245, 245, 0.95) 100%
    );
}

[data-theme="light"] .hero-prestige h1,
[data-theme="light"] .hero-prestige p {
    color: #000000;
}

[data-theme="light"] .hero-tag {
    border-color: #e0e0e0;
    color: #555555;
}

[data-theme="light"] .hero-divider {
    background: #333333;
}

[data-theme="light"] .search-section {
    background: #f5f5f5;
}

[data-theme="light"] .search-input-group {
    border-bottom-color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .search-input-group:focus-within {
    border-bottom-color: #000000;
}

[data-theme="light"] .search-input-group i {
    color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .search-input-group input {
    color: #000000;
}

[data-theme="light"] .search-input-group input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .search-prestige button {
    background: #000000;
    color: #ffffff;
}

[data-theme="light"] .search-prestige button:hover {
    background: #333333;
}

[data-theme="light"] .section-dark {
    background: #f5f5f5;
}

[data-theme="light"] .section-light,
[data-theme="light"] .section-gray {
    background: #ffffff;
}

[data-theme="light"] .section-title,
[data-theme="light"] .section-tag {
    color: #000000;
}

[data-theme="light"] .section-subtitle {
    color: #555555;
}

[data-theme="light"] .card-prestige {
    background: #ffffff;
    border-color: #e0e0e0;
}

[data-theme="light"] .card-prestige:hover {
    background: #f5f5f5;
    border-color: #000000;
}

[data-theme="light"] .card-prestige h3 {
    color: #000000;
}

[data-theme="light"] .card-prestige p,
[data-theme="light"] .card-count {
    color: #555555;
}

[data-theme="light"] .card-icon {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

[data-theme="light"] .card-prestige:hover .card-icon {
    background: #000000;
    color: #ffffff;
}

[data-theme="light"] .stats-prestige {
    background: #f5f5f5;
    border-color: #e0e0e0;
}

[data-theme="light"] .stat-number {
    color: #000000;
}

[data-theme="light"] .stat-label {
    color: #555555;
}

[data-theme="light"] .business-card {
    background: #ffffff;
    border-color: #e0e0e0;
}

[data-theme="light"] .business-card:hover {
    border-color: #000000;
}

[data-theme="light"] .business-image {
    background: #f5f5f5;
}

[data-theme="light"] .business-name {
    color: #000000;
}

[data-theme="light"] .business-location,
[data-theme="light"] .business-rating .count {
    color: #555555;
}

[data-theme="light"] .business-rating .stars {
    color: #000000;
}

[data-theme="light"] .business-btn {
    background: #000000;
    color: #ffffff;
}

[data-theme="light"] .business-btn:hover {
    background: #333333;
}

[data-theme="light"] .step-card {
    background: #ffffff;
    border-color: #e0e0e0;
}

[data-theme="light"] .step-card:hover {
    border-color: #000000;
}

[data-theme="light"] .step-number {
    background: #000000;
    color: #ffffff;
}

[data-theme="light"] .step-title {
    color: #000000;
}

[data-theme="light"] .step-desc {
    color: #555555;
}

[data-theme="light"] .cta-prestige {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(245, 245, 245, 0.9) 100%);
    border-color: #e0e0e0;
}

[data-theme="light"] .cta-prestige h2 {
    color: #000000;
}

[data-theme="light"] .cta-prestige p {
    color: #555555;
}

[data-theme="light"] .footer-prestige {
    background: #f5f5f5;
    border-top-color: #e0e0e0;
}

[data-theme="light"] .footer-logo,
[data-theme="light"] .footer-prestige h4 {
    color: #000000;
}

[data-theme="light"] .footer-brand p,
[data-theme="light"] .footer-prestige ul a {
    color: #555555;
}

[data-theme="light"] .footer-prestige ul a:hover {
    color: #000000;
}

[data-theme="light"] .footer-bottom {
    border-top-color: #e0e0e0;
}

[data-theme="light"] .footer-bottom p {
    color: #555555;
}

[data-theme="light"] .footer-bottom a {
    color: #000000;
}

[data-theme="light"] .btn-primary {
    background: #000000;
    color: #ffffff;
}

[data-theme="light"] .btn-primary:hover {
    background: #333333;
}

[data-theme="light"] .btn-secondary {
    background: transparent;
    color: #000000;
    border-color: #e0e0e0;
}

[data-theme="light"] .btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

[data-theme="light"] .sidebar {
    background: #ffffff;
    border-right-color: #e0e0e0;
}

[data-theme="light"] .sidebar-header {
    border-bottom-color: #e0e0e0;
    background: #ffffff;
}

[data-theme="light"] .sidebar-logo {
    color: #000000;
}

[data-theme="light"] .sidebar-close {
    color: #000000;
}

[data-theme="light"] .sidebar-link {
    color: #555555;
}

[data-theme="light"] .sidebar-link:hover,
[data-theme="light"] .sidebar-link.active {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    border-left-color: #000000;
}

[data-theme="light"] .sidebar-section-title {
    color: #888888;
}

[data-theme="light"] .sidebar-divider {
    background: #e0e0e0;
}

[data-theme="light"] .sidebar-footer {
    border-top-color: #e0e0e0;
    background: #ffffff;
}

[data-theme="light"] .sidebar-btn {
    background: #000000;
    color: #ffffff;
}

[data-theme="light"] .sidebar-btn:hover {
    background: #333333;
}

[data-theme="light"] .sidebar-btn-outline {
    background: transparent;
    color: #000000;
    border-color: #e0e0e0;
}

[data-theme="light"] .sidebar-btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .global-search-modal {
    background: #ffffff;
    border-color: #e0e0e0;
}

[data-theme="light"] .global-search-results {
    background: #ffffff;
}

[data-theme="light"] .global-search-header {
    background: #f5f5f5;
    color: #000000;
}

[data-theme="light"] .global-search-header input {
    color: #000000;
}

[data-theme="light"] .global-search-header input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .global-search-close {
    color: #000000;
}

/* Light mode - white background, black text */
[data-theme="light"] .search-quick-link {
    background: #ffffff;
    color: #000000;
    border-color: #e0e0e0;
}

[data-theme="light"] .search-quick-link:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

[data-theme="light"] .search-quick-link i {
    background: #f5f5f5;
    color: #000000;
}

[data-theme="light"] .search-quick-link:hover i {
    background: #e0e0e0;
    color: #000000;
}

[data-theme="light"] .search-quick-link span {
    color: #000000;
}

[data-theme="light"] .sales-cta,
[data-theme="light"] .business-cta {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(245, 245, 245, 0.9) 100%);
    border-color: #e0e0e0;
}

[data-theme="light"] .sales-cta h3,
[data-theme="light"] .business-cta h2 {
    color: #000000;
}

[data-theme="light"] .sales-cta p,
[data-theme="light"] .business-cta p {
    color: #555555;
}

[data-theme="light"] .form-input {
    color: #000000;
    border-bottom-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .form-input:focus {
    border-bottom-color: #000000;
}

[data-theme="light"] .form-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .form-label {
    color: #555555;
}
