/* ========================================
   MODERN DESIGN SYSTEM - LSB PLATFORM
   ======================================== */

/* Import Modern 2025 Font - Geist */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Import Fredoka Font for Headings */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');

/* Owl Carousel CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css');

/* ========================================
   CSS VARIABLES - LIGHT MODE (DEFAULT)
   ======================================== */
:root {
  /* -------------------------------------- */
  /* Typography                             */
  /* -------------------------------------- */
  --font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Fredoka', 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* -------------------------------------- */
  /* Primary Brand Colors (Modern Indigo)   */
  /* -------------------------------------- */
  --primary-color: #4F46E5;
  --primary-hover: #4338CA;
  --primary-light: #EEF2FF;
  --primary-dark: #3730A3;

  /* -------------------------------------- */
  /* Secondary Colors (Warm Coral)          */
  /* -------------------------------------- */
  --secondary-color: #F97316;
  --secondary-hover: #EA580C;
  --secondary-light: #FFF7ED;
  --secondary-dark: #C2410C;

  --button-color: #363636;

  /* -------------------------------------- */
  /* Neutral / Background Colors            */
  /* -------------------------------------- */
  --bg-primary: #F8FAFC;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F1F5F9;
  --bg-card: #FFFFFF;

  /* -------------------------------------- */
  /* Text Colors                            */
  /* -------------------------------------- */
  --text-primary: #0F172A;    /* Main dark text */
  --text-secondary: #475569;  /* Muted labels */
  --text-tertiary: #94A3B8;   /* Placeholders */
  --text-inverse: #FFFFFF;    /* Text on dark backgrounds */

  /* -------------------------------------- */
  /* Border Colors                          */
  /* -------------------------------------- */
  --border-color: #E2E8F0;
  --border-hover: #CBD5E1;
  --border-focus: #4F46E5;

  /* -------------------------------------- */
  /* Status / Semantic Colors               */
  /* -------------------------------------- */
  --success-color: #10B981;
  --success-light: #D1FAE5;

  --warning-color: #F59E0B;
  --warning-light: #FEF3C7;

  --error-color: #EF4444;
  --error-light: #FEE2E2;

  --info-color: #3B82F6;
  --info-light: #DBEAFE;
    
  /* Shadows - Soft and subtle */
  --shadow-sm: 0 1px 3px 0 rgba(42, 45, 50, 0.04);
  --shadow-md: 0 4px 12px 0 rgba(42, 45, 50, 0.08);
  --shadow-lg: 0 8px 24px 0 rgba(42, 45, 50, 0.12);
  --shadow-xl: 0 16px 48px 0 rgba(42, 45, 50, 0.16);
    
  /* Border Radius - Google-style rounded */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    
    /* Typography */
    --font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;
}

/* ========================================
   DARK MODE VARIABLES
   ======================================== */
[data-theme="dark"] {
    --primary-color: #FF7B7B;
    --primary-hover: #FF6262;
    --primary-light: #3D2828;
    --primary-dark: #FF9090;
    
    --secondary-color: #FFD157;
    --secondary-hover: #FFC03E;
    --secondary-light: #3D3520;
    
    --bg-primary: #1A1D29;
    --bg-secondary: #23273A;
    --bg-tertiary: #2C3142;
    --bg-card: #23273A;
    
    --text-primary: #F9FAFB;
    --text-secondary: #D1D5DB;
    --text-tertiary: #9CA3AF;
    --text-inverse: #1A1D29;
    
    --border-color: #374151;
    --border-hover: #4B5563;
    --border-focus: #FF7B7B;
    
    --success-color: #34D399;
    --success-light: #1F3D32;
    --warning-color: #FBBF24;
    --warning-light: #3D3520;
    --error-color: #F87171;
    --error-light: #3D2020;
    --info-color: #60A5FA;
    --info-light: #1E3A5F;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
}

/* ========================================
   BASE STYLES
   ======================================== */
body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color var(--transition-base), color var(--transition-base);
}

/* ========================================
   FREDOKA FONT FOR HEADINGS
   ======================================== */
h1, h2 {
    font-family: var(--font-heading);
}

/* Utility class for Fredoka font */
.fredoka-font {
    font-family: 'Fredoka', var(--font-family) !important;
}

input:focus,
.search-container:focus-within {
  outline: none !important;
  box-shadow: none !important;
}




        /* Clean Minimalist Design */
        .home-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f7;
            padding: 2rem 1rem;
            position: relative;
            
        }

        /* Animated Bubbles Background */
        .bubble-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .bubble {
            position: absolute;
            border-radius: 50%;
            filter: blur(50px);
            opacity: 0.25;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
            animation-direction: alternate;
        }

        .bubble-primary {
            background: radial-gradient(circle at 30% 30%, rgba(9, 47, 184, 0.55), rgba(9, 47, 184, 0.1));
            width: 400px;
            height: 400px;
            top: 10%;
            left: 5%;
            animation: float-bubble-1 25s infinite;
        }

        .bubble-secondary {
            background: radial-gradient(circle at 30% 30%, rgba(239, 4, 4, 0.55), rgba(239, 4, 4, 0.1));
            width: 400px;
            height: 550px;
            bottom: 15%;
            right: 10%;
            animation: float-bubble-2 30s infinite;
        }

        @keyframes float-bubble-1 {
            0% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(100px, -80px) scale(1.1);
            }
            50% {
                transform: translate(200px, 50px) scale(0.95);
            }
            75% {
                transform: translate(80px, 120px) scale(1.05);
            }
            100% {
                transform: translate(-50px, -30px) scale(1);
            }
        }

        @keyframes float-bubble-2 {
            0% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(-120px, 70px) scale(1.08);
            }
            50% {
                transform: translate(-200px, -60px) scale(0.92);
            }
            75% {
                transform: translate(-90px, -130px) scale(1.03);
            }
            100% {
                transform: translate(40px, 20px) scale(1);
            }
        }

        /* Ensure content is above bubbles */
        .clean-hero {
            position: relative;
            z-index: 1;
        }

        .clean-hero-container {
            width: 100%;
            max-width: 680px;
            text-align: center;
        }

        /* Brand */
        .clean-brand {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 28px;
        }

        .clean-brand-icon svg {
            filter: drop-shadow(0 2px 8px rgba(42, 45, 50, 0.08));
        }

        .clean-brand-name {
            font-size: 2rem;
            font-weight: 600;
            color: #2a2d32;
            margin: 0;
            letter-spacing: -0.02em;
        }

        /* Search Container */
        .clean-search-wrapper {
            position: relative;
            margin-bottom: 24px;
        }

        .clean-search-container {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 28px;
            padding: 14px 20px;
            box-shadow: 0 2px 16px rgba(42, 45, 50, 0.08);
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }

        .clean-search-container:hover {
            box-shadow: 0 4px 24px rgba(42, 45, 50, 0.12);
        }

        .clean-search-container:focus-within {
            box-shadow: 0 4px 24px rgba(42, 45, 50, 0.16);
            border-color: #e0e0e3;
        }

        .clean-search-icon {
            display: flex;
            align-items: center;
            margin-right: 12px;
        }

        .clean-search-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1rem;
            color: #2a2d32;
            background: transparent;
            font-family: 'Geist', sans-serif;
        }

        .clean-search-input::placeholder {
            color: #8a8d92;
        }

        .clean-voice-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: none;
            background: transparent;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .clean-voice-btn:hover {
            background: #f5f5f7;
        }

        /* Search Dropdown */
        .clean-search-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(42, 45, 50, 0.12);
            max-height: 400px;
            overflow-y: auto;
            z-index: 1000;
        }

        .clean-search-dropdown-content {
            padding: 8px;
        }

        /* Quick Actions */
        .clean-quick-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .clean-action-btn {
            padding: 10px 24px;
            background: white;
            border: 1px solid #e0e0e3;
            border-radius: 20px;
            font-size: 0.9375rem;
            font-weight: 500;
            color: #2a2d32;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 1px 3px rgba(42, 45, 50, 0.04);
        }

        .clean-action-btn:hover {
            background: #f5f5f7;
            border-color: #c0c0c3;
            box-shadow: 0 2px 8px rgba(42, 45, 50, 0.08);
        }

        .clean-action-btn-secondary {
            background: #2a2d32;
            color: white;
            border-color: #2a2d32;
        }

        .clean-action-btn-secondary:hover {
            background: #3a3d42;
            border-color: #3a3d42;
        }

        /* Results Section */
        .clean-results-section {
            padding: 3rem 1rem;
            background: white;
            min-height: 60vh;
        }

        .clean-results-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .clean-results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .clean-results-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2a2d32;
            margin: 0;
        }

        .clean-results-count {
            font-size: 0.875rem;
            color: #5a5d62;
        }

        .clean-results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        /* Loading */
        .clean-loading {
            display: flex;
            justify-content: center;
            padding: 3rem;
        }

        .clean-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid #e8e8ea;
            border-top-color: #2a2d32;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

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

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .clean-brand-name {
                font-size: 1.5rem;
            }

            .clean-search-container {
                padding: 12px 16px;
            }

            .clean-action-btn {
                font-size: 0.875rem;
                padding: 8px 20px;
            }

            .clean-results-grid {
                grid-template-columns: 1fr;
            }
        }

/* ========================================
   MODERN BUTTONS
   ======================================== */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 10px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-modern:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-primary-modern {
    background: var(--button-color);
    color: var(--text-inverse);
    box-shadow: var(--shadow-sm);
}

.btn-primary-modern:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--text-inverse);
}

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

.btn-secondary-modern:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--border-hover);
}

.btn-outline-modern {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-modern:hover {
    background-color: var(--primary-light);
}

.btn-ghost-modern {
    background-color: transparent;
    color: var(--text-primary);
}

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

.btn-sm-modern {
    padding: 8px 16px;
    font-size: var(--font-size-sm);
}

.btn-lg-modern {
    padding: 16px 32px;
    font-size: var(--font-size-lg);
}

.btn-icon-modern {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ========================================
   MODERN CARDS
   ======================================== */
.card-modern {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.card-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-modern-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.card-modern-body {
    padding: var(--spacing-lg);
}

.card-modern-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.card-modern-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.card-modern-subtitle {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: var(--spacing-xs) 0 0;
}

.card-modern-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ========================================
   MODERN ALERTS
   ======================================== */
.alert-modern {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid;
    margin-bottom: var(--spacing-md);
}

.alert-modern-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.alert-modern-content {
    flex: 1;
}

.alert-modern-title {
    font-weight: 600;
    margin: 0 0 var(--spacing-xs);
}

.alert-modern-message {
    margin: 0;
    font-size: var(--font-size-sm);
}

.alert-success-modern {
    background-color: var(--success-light);
    border-left-color: var(--success-color);
    color: var(--success-color);
}

.alert-warning-modern {
    background-color: var(--warning-light);
    border-left-color: var(--warning-color);
    color: var(--warning-color);
}

.alert-error-modern {
    background-color: var(--error-light);
    border-left-color: var(--error-color);
    color: var(--error-color);
}

.alert-info-modern {
    background-color: var(--info-light);
    border-left-color: var(--info-color);
    color: var(--info-color);
}

/* ========================================
   MODERN BADGES
   ======================================== */
.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 4px 12px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary-modern {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.badge-success-modern {
    background-color: var(--success-light);
    color: var(--success-color);
}

.badge-warning-modern {
    background-color: var(--warning-light);
    color: var(--warning-color);
}

.badge-error-modern {
    background-color: var(--error-light);
    color: var(--error-color);
}

.badge-info-modern {
    background-color: var(--info-light);
    color: var(--info-color);
}

/* ========================================
   MODERN FORMS
   ======================================== */
.form-control-modern {
    width: 100%;
    padding: 12px 16px;
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--primary-light);
    background-color: var(--bg-card);
}

.form-control-modern::placeholder {
    color: var(--text-tertiary);
}

.form-label-modern {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

/* ========================================
   MODERN MODALS
   ======================================== */
.modal-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(4px);
}

.modal-modern-content {
    background-color: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-modern-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-modern-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0;
}

.modal-modern-close {
    background: none;
    border: none;
    font-size: var(--font-size-2xl);
    cursor: pointer;
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.modal-modern-close:hover {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-modern-body {
    padding: var(--spacing-lg);
}

.modal-modern-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-end;
}

/* ========================================
   MODERN TABLES
   ======================================== */
.table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-modern thead {
    background-color: var(--bg-secondary);
}

.table-modern th {
    padding: var(--spacing-md);
    text-align: left;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.table-modern td {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.table-modern tbody tr {
    transition: background-color var(--transition-fast);
}

.table-modern tbody tr:hover {
    background-color: var(--bg-secondary);
}

.table-modern-container {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ========================================
   MODERN LIST GROUPS
   ======================================== */
.list-group-modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.list-group-item-modern {
    padding: var(--spacing-md);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.list-group-item-modern:hover {
    background-color: var(--bg-secondary);
    transform: translateX(4px);
}

.list-group-item-modern.active {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ========================================
   MODERN PAGINATION
   ======================================== */
.pagination-modern {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.pagination-modern-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-base);
    font-weight: 600;
    color: var(--text-primary);
}

.pagination-modern-item:hover {
    background-color: var(--bg-secondary);
    border-color: var(--border-hover);
}

.pagination-modern-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-inverse);
}

/* ========================================
   MODERN BREADCRUMBS
   ======================================== */
.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.breadcrumb-modern-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.breadcrumb-modern-item:hover {
    color: var(--primary-color);
}

.breadcrumb-modern-item.active {
    color: var(--text-primary);
    font-weight: 600;
}

.breadcrumb-modern-separator {
    color: var(--text-tertiary);
}

/* ========================================
   MODERN PROGRESS BARS
   ======================================== */
.progress-modern {
    width: 100%;
    height: 8px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-modern-bar {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

.progress-modern-bar.success {
    background-color: var(--success-color);
}

.progress-modern-bar.warning {
    background-color: var(--warning-color);
}

.progress-modern-bar.error {
    background-color: var(--error-color);
}

/* ========================================
   MODERN SPINNERS
   ======================================== */
.spinner-modern {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin-modern 0.8s linear infinite;
}

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

.spinner-sm-modern {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

.spinner-lg-modern {
    width: 60px;
    height: 60px;
    border-width: 6px;
}

/* ========================================
   MODERN DROPDOWNS
   ======================================== */
.dropdown-modern {
    position: relative;
    display: inline-block;
}

.dropdown-modern-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: var(--spacing-sm);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.dropdown-modern-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-modern-item {
    padding: var(--spacing-md);
    cursor: pointer;
    transition: background-color var(--transition-fast);
    color: var(--text-primary);
    text-decoration: none;
    display: block;
}

.dropdown-modern-item:hover {
    background-color: var(--bg-secondary);
}

.dropdown-modern-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: var(--spacing-sm) 0;
}

/* ========================================
   MODERN TOASTS
   ======================================== */
.toast-modern {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    min-width: 300px;
    z-index: 1100;
    animation: slide-in-modern 0.3s ease-out;
}

@keyframes slide-in-modern {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-modern-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.toast-modern-content {
    flex: 1;
}

.toast-modern-title {
    font-weight: 600;
    margin: 0 0 var(--spacing-xs);
}

.toast-modern-message {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   MODERN NAVBAR
   ======================================== */
.navbar-modern {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.navbar-modern-brand {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-modern-nav {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.navbar-modern-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.navbar-modern-link:hover {
    color: var(--primary-color);
}

.navbar-modern-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Transparent Navbar (for hero overlay) */
.navbar-modern.navbar-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
}

.navbar-modern.navbar-transparent .navbar-modern-brand {
    color: var(--text-primary);
    font-weight: 700;
}

.navbar-modern.navbar-transparent .navbar-modern-link {
    color: var(--text-primary);
    font-weight: 500;
}

.navbar-modern.navbar-transparent .navbar-modern-link:hover {
    color: var(--primary-color);
}

/* White Button Style */
.btn-white-modern {
    background-color: white;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-weight: 600;
}

.btn-white-modern:hover {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ========================================
   MODERN TABS
   ======================================== */
.tabs-modern {
    display: flex;
    gap: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
    margin-bottom: var(--spacing-lg);
}

.tab-modern {
    padding: var(--spacing-md) var(--spacing-lg);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.tab-modern:hover {
    color: var(--text-primary);
}

.tab-modern.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* ========================================
   MODERN ACCORDION
   ======================================== */
.accordion-modern {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-modern-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-modern-item:last-child {
    border-bottom: none;
}

.accordion-modern-header {
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--bg-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color var(--transition-fast);
}

.accordion-modern-header:hover {
    background-color: var(--bg-secondary);
}

.accordion-modern-title {
    font-weight: 600;
    margin: 0;
}

.accordion-modern-icon {
    transition: transform var(--transition-base);
}

.accordion-modern-item.active .accordion-modern-icon {
    transform: rotate(180deg);
}

.accordion-modern-body {
    padding: 0 var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.accordion-modern-item.active .accordion-modern-body {
    padding: var(--spacing-lg);
    max-height: 500px;
}

/* ========================================
   MODERN CAROUSEL
   ======================================== */
.carousel-modern {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-modern-inner {
    display: flex;
    transition: transform var(--transition-slow);
}

.carousel-modern-item {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-modern-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-card);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.carousel-modern-control:hover {
    background-color: var(--primary-color);
    color: var(--text-inverse);
}

.carousel-modern-control.prev {
    left: var(--spacing-md);
}

.carousel-modern-control.next {
    right: var(--spacing-md);
}

.carousel-modern-indicators {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
}

.carousel-modern-indicator {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-modern-indicator.active {
    background-color: var(--primary-color);
    width: 24px;
}

/* ========================================
   ADDITIONAL CARD TYPES
   ======================================== */

/* Profile Card */
.card-profile-modern {
    background-color: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    text-align: center;
}

.card-profile-modern:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.card-profile-modern-cover {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.card-profile-modern-avatar {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    border: 4px solid var(--bg-card);
    position: relative;
    margin: -50px auto 0;
    display: block;
    object-fit: cover;
    background-color: var(--bg-secondary);
    z-index: 10;
}

.card-profile-modern-body {
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
    position: relative;
}

.card-profile-modern-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 0 var(--spacing-xs);
    color: var(--text-primary);
}

.card-profile-modern-role {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-md);
}

.card-profile-modern-stats {
    display: flex;
    justify-content: space-around;
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: var(--spacing-md) 0;
}

.card-profile-modern-stat {
    text-align: center;
}

.card-profile-modern-stat-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.card-profile-modern-stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Review Card */
.card-review-modern {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.card-review-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-review-modern-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.card-review-modern-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    background-color: var(--bg-secondary);
}

.card-review-modern-info {
    flex: 1;
}

.card-review-modern-name {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.card-review-modern-date {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.card-review-modern-rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--spacing-sm);
}

.card-review-modern-star {
    color: var(--secondary-color);
    font-size: var(--font-size-lg);
}

.card-review-modern-text {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* Empty State Card */
.card-empty-modern {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    border: 2px dashed var(--border-color);
    transition: all var(--transition-base);
}

.card-empty-modern:hover {
    border-color: var(--border-hover);
    background-color: var(--bg-secondary);
}

.card-empty-modern-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}

.card-empty-modern-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-sm);
}

.card-empty-modern-text {
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-lg);
}

/* Pricing Card */
.card-pricing-modern {
    background-color: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
    text-align: center;
}

.card-pricing-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-pricing-modern.featured {
    border-color: var(--primary-color);
    position: relative;
}

.card-pricing-modern-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-inverse);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.card-pricing-modern-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-pricing-modern-price {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.card-pricing-modern-period {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    font-weight: 400;
}

.card-pricing-modern-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-xl) 0;
}

.card-pricing-modern-feature {
    padding: var(--spacing-sm) 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.card-pricing-modern-feature::before {
    content: '✓';
    color: var(--success-color);
    font-weight: 700;
}

/* Stat Card */
.card-stat-modern {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-base);
}

.card-stat-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.card-stat-modern-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
}

.card-stat-modern-title {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin: 0;
}

.card-stat-modern-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
}

.card-stat-modern-value {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs);
}

.card-stat-modern-change {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.card-stat-modern-change.positive {
    color: var(--success-color);
}

.card-stat-modern-change.negative {
    color: var(--error-color);
}

/* ========================================
   BUTTON GROUPS
   ======================================== */
.btn-group-modern {
    display: inline-flex;
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn-group-modern .btn-modern {
    border-radius: 0;
    border-right: 1px solid var(--border-color);
}

.btn-group-modern .btn-modern:first-child {
    border-top-left-radius: var(--radius-full);
    border-bottom-left-radius: var(--radius-full);
}

.btn-group-modern .btn-modern:last-child {
    border-top-right-radius: var(--radius-full);
    border-bottom-right-radius: var(--radius-full);
    border-right: none;
}

.btn-group-modern .btn-modern.active {
    background-color: var(--primary-color);
    color: var(--text-inverse);
}

/* Vertical Button Group */
.btn-group-modern-vertical {
    display: inline-flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn-group-modern-vertical .btn-modern {
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.btn-group-modern-vertical .btn-modern:first-child {
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
}

.btn-group-modern-vertical .btn-modern:last-child {
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    border-bottom: none;
}

/* ========================================
   ENHANCED COLLAPSE/ACCORDION
   ======================================== */
.collapse-modern {
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.collapse-modern:not(.show) {
    max-height: 0;
}

.collapse-modern.show {
    max-height: 1000px;
}

/* ========================================
   ENHANCED CAROUSEL
   ======================================== */
.carousel-modern-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.carousel-modern-caption {
    position: absolute;
    bottom: var(--spacing-xl);
    left: var(--spacing-xl);
    right: var(--spacing-xl);
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    color: white;
}

.carousel-modern-caption-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 0 var(--spacing-xs);
}

.carousel-modern-caption-text {
    font-size: var(--font-size-sm);
    margin: 0;
    opacity: 0.9;
}

/* ========================================
   ENHANCED DROPDOWN
   ======================================== */
.dropdown-modern-header {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-modern-item-icon {
    margin-right: var(--spacing-sm);
}

.dropdown-modern-item.danger {
    color: var(--error-color);
}

.dropdown-modern-item.danger:hover {
    background-color: var(--error-light);
}

/* ========================================
   TESTIMONIAL CARD
   ======================================== */
.card-testimonial-modern {
    background-color: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all var(--transition-base);
}

.card-testimonial-modern:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.card-testimonial-modern-quote {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
}

.card-testimonial-modern-text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-primary);
    margin: var(--spacing-xl) 0;
    font-style: italic;
}

.card-testimonial-modern-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.card-testimonial-modern-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.card-testimonial-modern-author-name {
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.card-testimonial-modern-author-title {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* ========================================
   NOTIFICATION CARD
   ======================================== */
.card-notification-modern {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    border-left: 4px solid var(--info-color);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.card-notification-modern:hover {
    background-color: var(--bg-secondary);
}

.card-notification-modern.unread {
    background-color: var(--info-light);
}

.card-notification-modern-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--info-color);
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-notification-modern-content {
    flex: 1;
}

.card-notification-modern-title {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs);
}

.card-notification-modern-text {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0;
}

.card-notification-modern-time {
    font-size: var(--font-size-xs);
    color: var(--text-tertiary);
    margin-top: var(--spacing-xs);
}

/* ========================================
   TUTOR/LISTING CARD (SUPERPROF STYLE)
   ======================================== */
.card-tutor-modern {
    background-color: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-tutor-modern:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-tutor-modern-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    position: relative;
}

.card-tutor-modern-favorite {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: var(--font-size-xl);
    z-index: 10;
}

.card-tutor-modern-favorite:hover {
    background-color: var(--primary-color);
    color: var(--text-inverse);
    transform: scale(1.1);
}

.card-tutor-modern-favorite.active {
    background-color: var(--primary-color);
    color: var(--text-inverse);
}

.card-tutor-modern-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
}

.card-tutor-modern-name {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 0 0 var(--spacing-xs);
    color: white;
}

.card-tutor-modern-location {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin: 0;
}

.card-tutor-modern-body {
    padding: var(--spacing-lg);
}

.card-tutor-modern-badges {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.card-tutor-modern-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.card-tutor-modern-rating-star {
    color: var(--secondary-color);
}

.card-tutor-modern-rating-count {
    color: var(--text-secondary);
    font-weight: 400;
}

.card-tutor-modern-subject {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs);
}

.card-tutor-modern-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-tutor-modern-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.card-tutor-modern-price {
    display: flex;
    flex-direction: column;
}

.card-tutor-modern-price-amount {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--text-primary);
}

.card-tutor-modern-price-period {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

.card-tutor-modern-offer {
    font-size: var(--font-size-xs);
    color: var(--primary-color);
    font-weight: 600;
}

/* Rating Display */
.card-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    background: rgba(255, 193, 7, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.rating-stars {
    font-weight: 600;
    color: #f59e0b;
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

/* Compact version for grid layouts */
.card-tutor-modern.compact {
    max-width: 420px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-tutor-modern.compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-tutor-modern.compact .card-tutor-modern-image {
    height: 240px;
}

/* Horizontal layout */
.card-tutor-modern-horizontal {
    display: flex;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.card-tutor-modern-horizontal:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-tutor-modern-horizontal .card-tutor-modern-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.card-tutor-modern-horizontal .card-tutor-modern-body {
    flex: 1;
}

/* ========================================
   HOMEPAGE SEARCH (ORIGINAL STYLES)
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    min-height: 500px;
    border-radius: 0 0 50% 50% / 0 0 10% 10%;
}

.search-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 20px;
}

.search-part {
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    padding: 12px 8px;
    font-size: 1rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.ghost-text {
    position: absolute;
    left: 8px;
    top: 12px;
    color: #ccc;
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    font-family: inherit;
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 12px;
    padding: 20px;
    display: none;
    z-index: 1000;
}

.category-dropdown.show {
    display: block;
}

.category-item {
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.category-item:hover {
    background: var(--bg-secondary);
}

.category-item input[type="radio"] {
    margin-right: 12px;
}

.category-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.category-pill {
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.category-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.category-pill.active {
    background: var(--primary-color);
    color: white;
}

.search-icon {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ========================================
   MODERN FORM ELEMENTS
   ======================================== */

/* Modern Checkbox */
.checkbox-modern {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    user-select: none;
}

.checkbox-modern input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-base);
    background-color: var(--bg-card);
}

.checkbox-modern input[type="checkbox"]:hover {
    border-color: var(--primary-color);
}

.checkbox-modern input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-modern input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.checkbox-modern input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.checkbox-modern-label {
    color: var(--text-primary);
    font-size: var(--font-size-base);
    cursor: pointer;
}

/* Modern Radio Button */
.radio-modern {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    user-select: none;
}

.radio-modern input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-base);
    background-color: var(--bg-card);
}

.radio-modern input[type="radio"]:hover {
    border-color: var(--primary-color);
}

.radio-modern input[type="radio"]:checked {
    border-color: var(--primary-color);
}

.radio-modern input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--primary-color);
}

.radio-modern input[type="radio"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.radio-modern-label {
    color: var(--text-primary);
    font-size: var(--font-size-base);
    cursor: pointer;
}

/* Modern Select Dropdown */
.select-modern {
    position: relative;
    width: 100%;
}

.select-modern select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 12px 40px 12px 16px;
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.select-modern select:hover {
    border-color: var(--border-hover);
}

.select-modern select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.select-modern::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-secondary);
    font-size: 12px;
}

/* Modern Toggle Switch */
.toggle-modern {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    cursor: pointer;
    user-select: none;
}

.toggle-modern input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 48px;
    height: 24px;
    background-color: var(--border-color);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: all var(--transition-base);
}

.toggle-modern input[type="checkbox"]:hover {
    background-color: var(--border-hover);
}

.toggle-modern input[type="checkbox"]:checked {
    background-color: var(--primary-color);
}

.toggle-modern input[type="checkbox"]::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-modern input[type="checkbox"]:checked::after {
    left: 26px;
}

.toggle-modern input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.toggle-modern-label {
    color: var(--text-primary);
    font-size: var(--font-size-base);
    cursor: pointer;
}

/* Radio/Checkbox Group */
.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group-modern-inline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

/* Custom File Input */
.file-input-modern {
    position: relative;
    display: inline-block;
}

.file-input-modern input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-input-modern-label {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 12px 24px;
    background-color: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--text-primary);
    font-weight: 600;
}

.file-input-modern-label:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.file-input-modern input[type="file"]:focus + .file-input-modern-label {
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Range Slider */
.range-modern {
    width: 100%;
}

.range-modern input[type="range"] {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    outline: none;
    cursor: pointer;
}

.range-modern input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.range-modern input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.range-modern input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.range-modern input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Multi-Select Pills */
.select-pills-modern {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.select-pill-modern {
    padding: 8px 16px;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-primary);
    user-select: none;
}

.select-pill-modern:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.select-pill-modern.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-inverse);
}

.select-pill-modern input[type="checkbox"],
.select-pill-modern input[type="radio"] {
    display: none;
}

/* ========================================
   MODERN MODAL STYLES
   ======================================== */

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    left: 0;
    right: 0;
}

/* Also prevent scroll on html element for iOS */
html.modal-open {
    overflow: hidden !important;
}

/* Modal Backdrop with Blur */
.modal-backdrop-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal Container */
.modal-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1055;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal Content */
.modal-content-modern {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUpFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

/* Modal Header */
.modal-header-modern {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

/* Modal Body */
.modal-body-modern {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

/* Modal Footer - Fixed at Bottom */
.modal-footer-modern {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    background: var(--bg-primary);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Modal Close Button */
.modal-close-modern {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close-modern:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

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

/* Modal Closing Animation */
.modal-modern.closing {
    animation: fadeOut 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.modal-modern.closing .modal-content-modern {
    animation: slideDownFadeOut 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.modal-backdrop-modern.closing {
    animation: fadeOut 0.2s cubic-bezier(0.4, 0, 1, 1);
}

/* ========================================
   FULL SCREEN GALLERY
   ======================================== */

.gallery-modal-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.gallery-modal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.gallery-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.gallery-close-btn {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.5rem;
}

.gallery-close-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.gallery-modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem;
    -webkit-overflow-scrolling: touch;
    background: #F9FAFB;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.gallery-masonry {
    column-count: 2;
    column-gap: 1.5rem;
}

.gallery-image-container {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image-container:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* Responsive masonry */
@media (max-width: 768px) {
    .gallery-masonry {
        column-count: 1;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (min-width: 1201px) {
    .gallery-masonry {
        column-count: 3;
    }
}

/* ========================================
   MODERN HOME PAGE STYLES - VIBRANT & CLEAN
   ======================================== */

/* Hero Section - Modern Gradient Background */


/* Animated gradient background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}





@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.home-hero.search-focused {
    min-height: auto;
    padding: 7.5rem 1rem 2rem; /* More top padding for navbar + breathing room */
    align-items: flex-start;
    background: #f5f5f7;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition */
}

.home-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}


.navbar-modern-brand-img{
    max-width: 160px;
}

.footer-modern-brand-img{
    max-width: 160px;
}

.home-hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out;
}

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

.home-hero.search-focused .home-hero-title {
    opacity: 0;
    transform: translateY(-20px);
    margin-bottom: 0;
    height: 0;
    overflow: hidden;
}

.home-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 1px 10px rgba(0,0,0,0.15);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.home-hero.search-focused .home-hero-subtitle {
    opacity: 0;
    transform: translateY(-20px);
    margin-bottom: 0;
    height: 0;
    overflow: hidden;
}

/* Google-Style Search Bar */
.home-search-wrapper {
    max-width: 700px;
    margin: 0 auto 2rem;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-hero.search-focused .home-search-wrapper {
    max-width: 900px;
    margin: 0 auto 2rem;
    animation: none; /* Remove animation on search page */
}

.home-search-container {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 24px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.home-search-container:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 12px 32px rgba(0, 0, 0, 0.08);
}

.home-search-container:focus-within {
    box-shadow: 0 4px 16px rgba(255, 77, 77, 0.15), 0 12px 40px rgba(255, 77, 77, 0.1);
    border-color: var(--primary-light);
}

.home-search-icon {
    color: var(--text-tertiary);
    margin-right: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.home-search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.home-search-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.125rem;
    color: var(--text-primary);
    padding: 16px 8px;
    position: relative;
    z-index: 2;
}

.home-search-input::placeholder {
    color: var(--text-tertiary);
}

.home-search-ghost {
    position: absolute;
    left: 8px;
    top: 16px;
    color: var(--text-tertiary);
    font-size: 1.125rem;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    opacity: 0.5;
}

.home-search-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.home-search-button:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

.home-search-button:active {
    transform: translateY(0);
}

/* Quick Search Suggestions */
.home-quick-searches {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.home-hero.search-focused .home-quick-searches {
    opacity: 0;
    transform: translateY(-10px);
    height: 0;
    overflow: hidden;
    margin-top: 0;
}

/* Search Filters */
.home-search-filters {
    margin-top: 0rem;
    opacity: 0;
    transform: translateY(-10px);
    height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.home-hero.search-focused .home-search-filters {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    overflow: visible;
    padding-left: 0px;
}

.home-filter-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.home-filter-pill {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.home-filter-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.home-filter-pill-content {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.home-filter-pill-content svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.home-filter-pill:hover .home-filter-pill-content {
    border-color: var(--primary-color);
    background: var(--bg-secondary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.home-filter-pill input:checked + .home-filter-pill-content {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

.home-filter-pill input:checked + .home-filter-pill-content svg {
    opacity: 1;
    stroke: white;
}

.home-quick-searches-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.home-quick-search-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.home-quick-search-link:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Results Section */
.home-results {
    padding: 3rem 0 4rem;
    background: #ffffff;
    min-height: 50vh;
}

.home-results-header {
    /* margin-bottom: 2.5rem; */
    padding: 0 1rem;
}

.home-results-stats {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.home-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

/* Loading State */
.home-loading {
    text-align: center;
    padding: 4rem 0;
}

.home-loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin-modern 0.8s linear infinite;
    margin: 0 auto 1rem;
}

.home-loading-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* No Results State */
.home-no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.home-no-results-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.home-no-results-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.home-no-results-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ========================================
   MODERN FOOTER COMPONENT
   ======================================== */

.footer-modern {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-modern-section {
    display: flex;
    flex-direction: column;
}

.footer-modern-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-modern-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-sm);
}

.footer-modern-heading {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: var(--font-size-sm);
}

.footer-modern-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-modern-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-modern-link:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-modern-social {
    display: flex;
    gap: 1rem;
}

.footer-modern-social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 1.25rem;
}

.footer-modern-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

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

.footer-modern-copyright {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

.footer-modern-badges {
    display: flex;
    gap: 1rem;
}

.footer-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-modern-badge i {
    color: var(--success-color);
}

/* ========================================
   SPLIT SEARCH BAR STYLES
   ======================================== */

/* Split Search Container */
.home-search-container-split {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    padding: 6px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
    gap: 0;
    margin-bottom: 20px;
}

.home-search-container-split:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 12px 32px rgba(0, 0, 0, 0.08);
}

.home-search-container-split:focus-within {
    box-shadow: 0 4px 16px rgba(255, 77, 77, 0.15), 0 12px 40px rgba(255, 77, 77, 0.1);
    border-color: var(--primary-light);
}

/* Search Field */
.home-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 16px;
    min-width: 0;
}

.home-search-field .home-search-icon {
    color: var(--text-tertiary);
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.home-search-input-field {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-primary);
    padding: 14px 0;
}

.home-search-input-field::placeholder {
    color: var(--text-tertiary);
}

/* Divider between fields */
.home-search-divider {
    width: 1px;
    height: 32px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* Clear Location Button */
.home-search-clear-btn {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

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

/* Search Button for Split Layout */
.home-search-button-split {
    background: var(--button-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    flex-shrink: 0;
}

.home-search-button-split:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

.home-search-button-split:active {
    transform: translateY(0);
}

/* Autocomplete Dropdown */
.home-search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
}

.home-search-dropdown-content {
    padding: 8px;
}

.home-search-dropdown-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-search-dropdown-header svg {
    opacity: 0.6;
}

.home-search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.home-search-dropdown-item:hover,
.home-search-dropdown-item.selected {
    background: var(--bg-secondary);
}

.home-search-dropdown-item svg {
    flex-shrink: 0;
    color: var(--text-tertiary);
}

.home-search-dropdown-item-text {
    flex: 1;
    min-width: 0;
}

.home-search-dropdown-item-title {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.home-search-dropdown-item-subtitle {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home-search-container-split {
        flex-direction: column;
        padding: 5px;
        gap: 0;
        border-radius: var(--radius-xl);
    }
    
    .home-search-field {
        width: 100%;
        padding: 16px 12px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .home-search-field:last-of-type {
        border-bottom: none;
    }
    
    .home-search-field .home-search-icon {
        margin-right: 16px;
    }
    
    .home-search-input-field {
        font-size: 1rem;
        padding: 0;
    }
    
    .home-search-divider {
        display: none;
    }
    
    .home-search-button-split {
        width: 100%;
        padding: 16px 24px;
        margin-top: 0px;
        font-size: 1.125rem;
    }
    
    .home-hero-title {
        font-size: 2rem;
    }
    
    .home-hero-subtitle {
        font-size: 1rem;
    }
    
    .home-search-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
}
/* ========================================
   MODERN LISTING DETAIL PAGE
   ======================================== */

.listing-detail-modern {
    background: var(--bg-primary);
    min-height: 100vh;
}

/* Hero Section with Floating Card */
.listing-hero {
    position: relative;
    margin-bottom: 4rem;
}

.listing-hero-gallery {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

.listing-hero-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 600px;
}

.listing-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.listing-hero-info-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.listing-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.listing-hero-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.listing-hero-breadcrumb i {
    font-size: 0.75rem;
}

.listing-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.listing-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.listing-hero-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.listing-hero-rating i {
    color: #FFC107;
    font-size: 1.25rem;
}

.rating-value {
    font-size: 1.125rem;
    color: var(--text-primary);
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.listing-hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.listing-hero-location i {
    color: var(--primary-color);
}

.listing-hero-badge {
    background: var(--button-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
}

.listing-provider-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.listing-provider-by {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.listing-provider-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.2;
}

.listing-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.listing-verified-badge i {
    font-size: 0.95rem;
}

.listing-hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-hero-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-action:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-share-wrapper {
    position: relative;
}

.share-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    min-width: 200px;
    z-index: 1000;
}

.share-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.share-item:hover {
    background: var(--surface-color);
}

.share-item i {
    font-size: 1.25rem;
}

.listing-hero-thumbnails {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.listing-hero-thumb {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 140px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.listing-hero-thumb:hover {
    transform: scale(1.05);
}

.listing-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Grid */
.listing-content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.listing-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.listing-content-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.opening-hours-row:last-child {
        border-bottom: none !important;
    }

/* Quick Info Cards */
.listing-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.quick-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quick-info-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.quick-info-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.quick-info-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.quick-info-link {
    text-decoration: none;
    cursor: pointer;
}

/* Sections */
.listing-section {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.listing-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.listing-section-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.listing-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Service Groups */
.service-groups-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.service-group-tab {
    /* padding: 0.75rem 1.5rem; */
    background: var(--surface-color);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 0.35rem 0.7rem;
}

.service-group-tab:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.service-group-tab.active {
    background: var(--button-color);
    color: white;
    border-color: transparent;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card-modern {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.service-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.service-card-price {
    text-align: right;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.price-unit {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.service-card-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card-meta {
    display: flex;
    gap: 1rem;
    /* margin-bottom: 1rem; */
}

.service-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.service-meta-item i {
    color: var(--primary-color);
}

.service-card-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-service-details {
    flex: 1;
    padding: 0.75rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-service-details:hover {
    border-color: var(--primary-color);
    background: var(--surface-color);
}

.btn-service-book {
    flex: 2;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-service-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Team Card */
.team-card-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: var(--radius-lg);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.team-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-title {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.team-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.team-rating i {
    color: #FFC107;
}

.team-rating-count {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Location Card */
.location-card-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    background: var(--surface-color);
    border-radius: var(--radius-lg);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-info i {
    font-size: 2rem;
    color: var(--primary-color);
}

.location-city {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.location-postcode {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.btn-location-directions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-location-directions:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-secondary);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-secondary);
}

/* Sticky Booking Card */
.listing-content-sidebar {
    position: relative;
}

.booking-card-sticky {
    position: sticky;
    top: 100px;
}

.booking-card-modern {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.booking-card-header {
    
    color: white;
    padding: 1rem;
}

.booking-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.booking-price-from {
    font-size: 0.875rem;
    opacity: 0.9;
}

.booking-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.booking-price-unit {
    font-size: 1rem;
    opacity: 0.9;
}

.booking-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.booking-rating i {
    color: #FFC107;
}

.booking-card-body {
    padding: 1.5rem;
}

.booking-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.booking-card-provider {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-booking-primary {
    width: 100%;
    padding: 1rem;
    background: var(--button-color);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.btn-booking-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 74, 74, 0.4);
}

.btn-booking-secondary {
    width: 100%;
    padding: 1rem;
    background: var(--surface-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-booking-secondary:hover {
    border-color: var(--primary-color);
    background: var(--bg-secondary);
}

.booking-card-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

.booking-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--surface-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

.booking-card-features {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.booking-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Mobile Bottom Bar */
.listing-mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-bottom-price {
    display: flex;
    flex-direction: column;
}

.mobile-price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.mobile-price-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.btn-mobile-book {
    padding: 0.875rem 2rem;
    background: var(--button-color);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .listing-content-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-card-sticky {
        position: relative;
        top: 0;
    }
    
    .listing-mobile-bottom-bar {
        display: flex;
    }
}

@media (max-width: 768px) {
    /* Hero Section - Compact */
    .listing-hero-gallery {
        grid-template-columns: 1fr;
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .listing-hero-main {
        height: 250px;
        border-radius: 12px;
    }
    
    .listing-hero-info-card {
        position: static;
        margin-top: 0.75rem;
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .listing-hero-breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .listing-hero-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .listing-hero-meta {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .listing-hero-location,
    .listing-hero-meta .rating-value {
        font-size: 0.8rem;
    }
    
    .listing-hero-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .listing-hero-actions {
        gap: 0.5rem;
    }
    
    .btn-hero-action {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .listing-hero-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .listing-hero-thumb {
        height: 60px;
        border-radius: 8px;
    }
    
    /* Content Wrapper - Compact */
    .listing-content-wrapper {
        padding: 0 0.75rem 3rem;
    }
    
    /* Sections - Compact */
    .listing-section {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        border-radius: 12px;
    }
    
    .listing-section-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        gap: 0.5rem;
    }
    
    .listing-section-title i {
        font-size: 1.125rem;
    }
    
    .listing-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* Service Cards - Compact */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .service-card-modern {
        padding: 0.875rem;
        border-radius: 12px;
    }
    
    .service-card-header {
        margin-bottom: 0.5rem;
    }
    
    .service-card-title {
        font-size: 0.95rem;
    }
    
    .price-amount {
        font-size: 1.125rem;
    }
    
    .price-unit {
        font-size: 0.75rem;
    }
    
    .service-card-description {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .service-card-meta {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .service-meta-item {
        font-size: 0.75rem;
        gap: 0.375rem;
    }
    
    .service-card-actions {
        gap: 0.5rem;
    }
    
    .btn-service-details,
    .btn-service-book {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
    
    /* Booking Card - Compact */
    .booking-card-sticky {
        position: relative;
        top: 0;
        margin-bottom: 1rem;
    }
    
    .booking-card-modern {
        border-radius: 12px;
    }
    
    .booking-card-body {
        padding: 0.875rem;
    }
    
    .booking-card-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .booking-card-provider {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .booking-rating {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .btn-booking-primary,
    .btn-booking-secondary {
        padding: 0.75rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Team Section - Compact */
    .team-card-modern {
        padding: 0.875rem;
    }
    
    .team-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .team-name {
        font-size: 0.95rem;
    }
    
    .team-role {
        font-size: 0.75rem;
    }
    
    .team-rating {
        font-size: 0.75rem;
    }
    
    /* Location Card - Compact */
    .location-card-modern {
        padding: 0.875rem;
    }
    
    .location-city {
        font-size: 0.95rem;
    }
    
    .location-postcode {
        font-size: 0.75rem;
    }
    
    .btn-location-directions {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
    
    /* Service Group Tabs - Compact */
    .service-group-tabs {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .service-group-tab {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }
}

/* ========================================
   CLEAN LISTING CARDS
   ======================================== */
.clean-listing-card {
    display: block;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    border: 1px solid #e8e8ea;
}

.clean-listing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42, 45, 50, 0.12);
    border-color: #d0d0d3;
    text-decoration: none;
    color: inherit;
}

.clean-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f7;
}

.clean-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.clean-listing-card:hover .clean-card-image {
    transform: scale(1.05);
}

.clean-card-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    padding: 4px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2a2d32;
    box-shadow: 0 2px 8px rgba(42, 45, 50, 0.12);
}

.clean-card-content {
    padding: 14px;
}

.clean-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.clean-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2a2d32;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.clean-card-category {
    font-size: 0.75rem;
    color: #5a5d62;
    background: #f5f5f7;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
}

.clean-card-provider {
    font-size: 0.8125rem;
    color: #5a5d62;
    margin: 0 0 2px 0;
    font-weight: 500;
}

.clean-card-location {
    font-size: 0.75rem;
    color: #8a8d92;
    margin: 0 0 6px 0;
}

.clean-card-distance {
    margin-bottom: 8px;
}

.clean-card-distance .badge-modern {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
}

.clean-card-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid #e8e8ea;
}

.clean-card-price {
    font-size: 1rem;
    font-weight: 600;
    color: #2a2d32;
}

@media (max-width: 768px) {
    .clean-card-title {
        font-size: 0.875rem;
    }
    
    .clean-card-price {
        font-size: 0.9375rem;
    }
    
    .clean-card-image-wrapper {
        height: 180px;
    }
}

/* ========================================
   PROVIDER DASHBOARD STYLES
   ======================================== */

.provider-dashboard {
    min-height: 100vh;
    padding: 46px 0 66px;
    background: radial-gradient(900px 420px at 50% 0%, rgba(79, 70, 229, 0.12) 0%, rgba(248, 250, 252, 0) 60%),
                rgba(248, 250, 252, 1);
}

/* STATE 1: Get Started */
.get-started-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.get-started-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.get-started-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.get-started-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Progress Bar */
.progress-section {
    margin-bottom: 2.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.progress-label {
    font-weight: 600;
    color: var(--text-primary);
}

.progress-percentage {
    font-weight: 700;
    color: var(--info-color);
    font-size: var(--font-size-lg);
}

.progress-bar-container {
    height: 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--info-color) 0%, #6B8FFF 100%);
    transition: width 0.5s ease;
}

/* Checklist */
.checklist {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2.5rem;
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: var(--font-size-base);
}

.checklist-item i {
    font-size: 1.5rem;
}

.checklist-item.completed {
    color: var(--success-color);
}

.checklist-item.completed i {
    color: var(--success-color);
}

.checklist-item.pending {
    color: var(--text-tertiary);
}

.checklist-item.pending i {
    color: var(--border-color);
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--info-color) 0%, #6B8FFF 100%);
    color: var(--text-inverse);
    font-size: var(--font-size-lg);
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    color: var(--text-inverse);
}

/* Tip Box */
.tip-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: var(--warning-light);
    border-radius: var(--radius-md);
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tip-box i {
    font-size: 1.5rem;
    color: var(--warning-color);
    flex-shrink: 0;
}

.tip-box span {
    font-size: 0.9375rem;
    color: #92400E;
}

/* Quick Links */
.quick-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.quick-link:hover {
    border-color: var(--info-color);
    color: var(--info-color);
    transform: translateY(-1px);
}

/* STATE 2: Business Overview */
/* Bank Alert Card */
.bank-alert-card {
    background: linear-gradient(135deg, var(--warning-light) 0%, #FDE68A 100%);
    border: 2px solid var(--warning-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    animation: slideDown 0.3s ease;
}

.bank-alert-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.bank-alert-icon i {
    font-size: 2rem;
    color: var(--warning-color);
}

.bank-alert-content {
    flex: 1;
}

.bank-alert-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #92400E;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bank-alert-title i {
    font-size: 1.5rem;
}

.bank-alert-text {
    color: #78350F;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bank-alert-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-warning-modern {
    background: linear-gradient(135deg, var(--warning-color) 0%, #D97706 100%);
    color: var(--text-inverse);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.btn-warning-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    color: var(--text-inverse);
}

.btn-ghost-modern {
    background: var(--bg-card);
    color: #92400E;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    border: 2px solid var(--primary-light);
}

.btn-ghost-modern:hover {
    background: var(--warning-light);
    color: #92400E;
}

.business-summary-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

 .provider-dashboard .business-summary-card {
     border-radius: 26px;
     padding: 22px;
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 30px 90px rgba(15, 23, 42, 0.08);
 }

.business-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

 .provider-dashboard .business-header {
     align-items: flex-start;
     gap: 14px;
 }

.business-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

 .provider-dashboard .business-info {
     display: block;
 }

.business-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.business-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--info-color) 0%, #6B8FFF 100%);
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.business-name {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

 .provider-dashboard .business-name {
     font-family: var(--font-heading);
     font-weight: 950;
     letter-spacing: -0.03em;
     font-size: clamp(1.5rem, 2.5vw, 2.1rem);
     margin: 0 0 10px 0;
 }

.business-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--success-light);
    color: #065F46;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.business-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

 .provider-dashboard .stats-grid {
     gap: 14px;
     margin-bottom: 18px;
 }

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

 .provider-dashboard .stat-card {
     border-radius: 20px;
     padding: 16px;
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
 }

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Actions Section */
.actions-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    color: var(--info-color);
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    position: relative;
}

.action-btn:hover {
    border-color: var(--info-color);
    color: var(--info-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.action-btn i {
    font-size: 1.25rem;
}

.action-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--error-color);
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    padding: 0.25rem 0.5rem;
    font-size: var(--font-size-xs);
    font-weight: 700;
    border: 2px solid var(--bg-card);
}

.action-badge-success {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--success-color);
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    padding: 0.25rem 0.5rem;
    font-size: var(--font-size-xs);
    font-weight: 700;
    border: 2px solid var(--bg-card);
}

.action-btn-team {
    border-color: #E0E7FF;
    background: linear-gradient(135deg, #F5F7FF 0%, #FFFFFF 100%);
}

.action-btn-team:hover {
    border-color: #6366F1;
    color: #6366F1;
    background: #F5F7FF;
}

.stat-card-team {
    border: 2px solid #E0E7FF;
    background: linear-gradient(135deg, #F5F7FF 0%, #FFFFFF 100%);
}

.stat-card-team:hover {
    border-color: #6366F1;
}

/* Recent Activity */
.recent-activity-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.activity-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.activity-row:hover {
    background: var(--bg-tertiary);
}

.activity-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--info-color) 0%, #6B8FFF 100%);
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
    text-transform: uppercase;
}

.activity-details {
    min-width: 0;
}

.activity-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.activity-meta {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.activity-status {
    white-space: nowrap;
}

.status-badge {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.status-confirmed {
    background: var(--success-light);
    color: #065F46;
}

.status-pending {
    background: var(--warning-light);
    color: #92400E;
}

.status-cancelled {
    background: var(--error-light);
    color: #991B1B;
}

.activity-amount {
    font-weight: 700;
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    white-space: nowrap;
}

/* Subscription Card */
.subscription-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid #4F46E5;
}

.subscription-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.subscription-badge {
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-inverse);
}

.subscription-badge.free {
    background: var(--warning-color);
}

.subscription-badge.pro {
    background: #4F46E5;
}

.subscription-badge.premium {
    background: linear-gradient(135deg, var(--warning-color) 0%, #D97706 100%);
}

.subscription-badge.enterprise {
    background: var(--primary-dark);
}

.subscription-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.subscription-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
}

.feature-content {
    flex: 1;
}

.feature-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.feature-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.subscription-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: var(--font-size-sm);
}

.subscription-alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.subscription-alert.warning {
    background: var(--warning-light);
    color: #92400E;
}

.subscription-alert.warning i {
    color: var(--warning-color);
}

.subscription-alert.info {
    background: var(--info-light);
    color: #1E40AF;
}

.subscription-alert.info i {
    color: var(--info-color);
}

.subscription-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.subscription-actions .btn {
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* Utility Classes for Dashboard */
.container-narrow {
    max-width: 800px;
    padding: 4rem 2rem;
}

.container-dashboard {
    padding: 2rem;
    min-height: 82vh;
}

.container-bottom {
    padding: 2rem;
}

.section-spacing {
    margin-top: 2.5rem;
}

.section-spacing-sm {
    margin-top: 1.5rem;
}

/* Stat Icon Color Variants */
.stat-icon-blue {
    background: var(--info-light);
    color: var(--info-color);
}

.stat-icon-green {
    background: var(--success-light);
    color: var(--success-color);
}

.stat-icon-yellow {
    background: var(--warning-light);
    color: var(--warning-color);
}

.stat-icon-red {
    background: var(--error-light);
    color: var(--error-color);
}

.stat-icon-purple {
    background: #E0E7FF;
    color: #6366F1;
}

/* Feature Icon Variants */
.feature-icon-purple {
    background: #EEF2FF;
}

.feature-icon-purple i {
    color: #4F46E5;
}

.feature-icon-yellow {
    background: var(--warning-light);
}

.feature-icon-yellow i {
    color: var(--warning-color);
}

.feature-icon-green {
    background: var(--success-light);
}

.feature-icon-green i {
    color: var(--success-color);
}

/* Badge Variants */
.badge-trial {
    background: #06B6D4;
    color: var(--text-inverse);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-guest {
    background: var(--warning-light);
    color: #92400E;
    font-size: 0.65rem;
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    margin-left: 0.25rem;
    display: inline-block;
}

/* ========================================
   PROVIDER BOOKINGS PAGE STYLES
   ======================================== */

.bookings-page {
    min-height: 100vh;
    background: var(--bg-primary);
    padding: 2rem 0;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title i {
    color: var(--info-color);
}

.page-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin: 0;
}

/* Controls Bar */
.controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* View Switcher */
.view-switcher {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.view-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

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

.view-btn.active {
    background: var(--info-color);
    color: var(--text-inverse);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: var(--bg-card);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-tab:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.filter-tab.active {
    background: var(--info-color);
    color: var(--text-inverse);
}

/* Bookings Grid */
.bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.booking-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--bg-tertiary);
}

.customer-info {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--info-color) 0%, #6B8FFF 100%);
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
    text-transform: uppercase;
    flex-shrink: 0;
}

.customer-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-base);
}

.customer-email {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.booking-badges {
    display: flex;
    gap: 0.5rem;
}

.status-completed {
    background: var(--info-light);
    color: #1E40AF;
}

/* Booking Details */
.booking-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.detail-row i {
    color: var(--info-color);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

/* Booking Footer */
.booking-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 2px solid var(--bg-tertiary);
    margin-bottom: 1rem;
}

.booking-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--text-primary);
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.payment-paid {
    background: var(--success-light);
    color: #065F46;
}

.payment-pending {
    background: var(--warning-light);
    color: #92400E;
}

.payment-failed {
    background: var(--error-light);
    color: #991B1B;
}

.payment-refunded {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

/* Booking Actions */
.booking-actions {
    display: flex;
    gap: 0.75rem;
}

.booking-actions .btn-modern {
    flex: 1;
    justify-content: center;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.empty-icon {
    font-size: 4rem;
    color: #CBD5E1;
    margin-bottom: 1.5rem;
}

.empty-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Spin Animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   HOMEPAGE SECTIONS - Modern Marketplace
   ======================================== */

/* Container */
.hp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Headers */
.hp-section-header {
    margin-bottom: 2rem;
}

.hp-section-header--center {
    text-align: center;
}

.hp-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.hp-section-subtitle {
    font-size: 1rem;
    color: var(--text-tertiary);
    margin: 0;
}

/* ========================================
   Categories Section
   ======================================== */
.hp-categories {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

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

.hp-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.hp-category-card:hover {
    background: white;
    border-color: var(--border-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hp-category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-primary);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.hp-category-icon i {
    font-size: 1.5rem;
    color: white;
}

.hp-category-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
}

/* ========================================
   App Preview Section
   ======================================== */
.hp-app-preview {
    position: relative;
    padding: 0;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 30%, #FEF3C7 70%, #FFF7ED 100%);
}

.hp-app-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hp-app-content {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hp-app-text {
    position: relative;
    z-index: 1;
    width: 40%;
    padding: 4rem 0 4rem 5%;
    flex-shrink: 0;
}

.hp-app-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--text-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.hp-app-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 1.25rem 0;
    line-height: 1.15;
}

.hp-app-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 2rem 0;
    max-width: 420px;
}

.hp-app-features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hp-app-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.hp-app-feature i {
    font-size: 1.375rem;
    color: var(--success-color);
}

.hp-app-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
}

.hp-app-image img {
    width: 100%;
    height: 90%;
    max-height: 550px;
    object-fit: contain;
    object-position: right center;
    filter: drop-shadow(-20px 20px 40px rgba(0,0,0,0.15));
}

/* ========================================
   How It Works Section
   ======================================== */
.hp-how-it-works {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.hp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.hp-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

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

.hp-step-content {
    flex: 1;
}

.hp-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.hp-step-description {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    margin: 0;
    line-height: 1.5;
}

.hp-step-connector {
    width: 80px;
    height: 2px;
    background: var(--border-color);
    margin-top: 28px;
    flex-shrink: 0;
}

/* ========================================
   Business CTA Section
   ======================================== */
.hp-business-cta {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.hp-business-card {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #A855F7 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: white;
}

.hp-business-content {
    max-width: 600px;
}

.hp-business-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.hp-business-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.hp-business-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.hp-business-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.hp-stat {
    display: flex;
    flex-direction: column;
}

.hp-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.hp-stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}

.hp-business-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: white;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
}

.hp-business-btn:hover {
    background: var(--bg-primary);
    transform: translateX(4px);
}

.hp-business-btn i {
    font-size: 1.125rem;
}

/* ========================================
   Trust Section
   ======================================== */
.hp-trust {
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

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

.hp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.hp-trust-item > i {
    font-size: 1.75rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.hp-trust-text {
    display: flex;
    flex-direction: column;
}

.hp-trust-text strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hp-trust-text span {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

/* ========================================
   AUTH PAGES - Modern Split Screen Design
   ======================================== */

/* Main Container */
.auth-split-container {
    display: flex;
    min-height: 100vh;
}

/* Left Panel - Info Side */
.auth-split-left {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 50%, #8b5cf6 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-split-left-customer {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #6366f1 100%);
}

/* Services Registration - Professional blue/indigo */
.auth-split-left-services {
    background: linear-gradient(135deg, #4F46E5 0%, #6366f1 50%, #7c3aed 100%);
}

/* Courses/Instructor Registration - Warm orange/pink */
.auth-split-left-courses {
    background-image: url('/images/course-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.auth-split-left-courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.4);
    pointer-events: none;
}

/* Decorative Elements */
.auth-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.auth-decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float-auth 20s ease-in-out infinite;
}

.auth-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float-auth 25s ease-in-out infinite reverse;
}

.auth-decoration-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    opacity: 0.5;
    animation: float-auth 30s ease-in-out infinite;
}

@keyframes float-auth {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

/* Left Panel Content */
.auth-split-content {
    max-width: 480px;
    color: white;
    position: relative;
    z-index: 10;
}

.auth-welcome-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.auth-welcome-icon svg {
    width: 40px;
    height: 40px;
}

.auth-split-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.auth-split-description {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.auth-info-box {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-info-box p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Social Proof */
.auth-social-proof {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-avatars {
    display: flex;
}

.auth-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-left: -10px;
}

.auth-avatar:first-child {
    margin-left: 0;
}

.auth-social-text {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin: 0;
}

/* Right Panel - Form Side */
.auth-split-right {
    flex: 1;
    background: var(--bg-primary);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.auth-form-container {
    width: 100%;
    max-width: 440px;
}

/* Brand */
.auth-brand {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.02em;
}

/* Form Titles */
.auth-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.auth-form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Form Groups */
.auth-form-group {
    margin-bottom: 1.25rem;
}

.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Submit Button */
.auth-submit-btn {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.auth-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.auth-submit-btn:hover::before {
    left: 100%;
}

/* Code Input */
.auth-code-input {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.5rem;
    font-weight: 700;
}

/* Timer */
.auth-timer {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-timer-display {
    font-size: 1.5rem;
    font-weight: 700;
}

.auth-timer-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Action Buttons */
.auth-action-buttons {
    display: flex;
    gap: 1rem;
}

.auth-action-buttons .btn-modern {
    flex: 1;
}

/* Footer Links */
.auth-footer-links {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1.5rem;
}

.auth-divider-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.auth-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.auth-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Register Options (Login Page) */
.auth-register-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-register-options-3col {
    grid-template-columns: repeat(3, 1fr);
}

.auth-option-icon-courses {
    background: linear-gradient(135deg, #fff7ed 0%, #fce7f3 100%);
}

.auth-option-icon-courses svg {
    color: #f97316;
}

.auth-option-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
}

.auth-option-card:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    transform: translateY(-2px);
}

.auth-option-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-option-icon svg {
    color: var(--primary-color);
}

.auth-option-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.auth-option-text strong {
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.auth-option-text span {
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

/* Alt Option Link (Customer Page) */
.auth-alt-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.auth-alt-option span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.auth-link-strong {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.auth-link-strong:hover {
    gap: 0.5rem;
    color: var(--primary-hover);
}

/* Animations */
.auth-fade-in {
    animation: authFadeIn 0.5s ease forwards;
}

.auth-slide-in {
    animation: authSlideIn 0.3s ease forwards;
}

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

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

/* ========================================
   AUTH DROPDOWN (Get Started Menu)
   ======================================== */
.auth-dropdown {
    position: relative;
}

.auth-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 280px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.auth-dropdown-menu[x-cloak] {
    display: none !important;
}

.auth-dropdown-header {
    padding: 0.75rem 1rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
}

.auth-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.auth-dropdown-item:hover {
    background: var(--bg-tertiary);
}

.auth-dropdown-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-dropdown-icon-services {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

.auth-dropdown-icon-services svg {
    color: #4F46E5;
}

.auth-dropdown-icon-courses {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

.auth-dropdown-icon-courses svg {
    color: #EA580C;
}

.auth-dropdown-icon-customer {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
}

.auth-dropdown-icon-customer svg {
    color: #059669;
}

.auth-dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.auth-dropdown-content strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.auth-dropdown-content span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.auth-dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.auth-dropdown-item-customer {
    margin-top: 0;
}

/* Backdrop for mobile dropdown */
.auth-dropdown-backdrop {
    display: none;
}

@media (max-width: 768px) {
    .auth-dropdown-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

/* ========================================
   CATEGORY PAGE - Modern Design
   ======================================== */
.catpage {
    min-height: 100vh;
    background: var(--bg-primary);
}

/* Hero Section */
.catpage-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.catpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    pointer-events: none;
}

.catpage-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.catpage-hero-content {
    color: white;
}

/* Breadcrumb */
.catpage-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.catpage-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.catpage-breadcrumb a:hover {
    color: white;
}

.catpage-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

.catpage-breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Badge */
.catpage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.25rem;
}

.catpage-badge i {
    font-size: 1rem;
}

/* Heading */
.catpage-h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.catpage-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem;
    max-width: 540px;
}

/* Search Box */
.catpage-search-box {
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    padding: 0.375rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 500px;
}

.catpage-search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
}

.catpage-search-input i {
    color: var(--text-tertiary);
    font-size: 1.25rem;
}

.catpage-search-input input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-primary);
    background: transparent;
}

.catpage-search-input input::placeholder {
    color: var(--text-tertiary);
}

.catpage-search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.catpage-search-btn:hover {
    background: var(--primary-hover);
}

/* Trust Indicators */
.catpage-trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.catpage-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.catpage-trust-item i {
    color: #10b981;
    font-size: 1rem;
}

/* Stats Card */
.catpage-hero-stats {
    display: flex;
    justify-content: flex-end;
}

.catpage-stats-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 380px;
}

.catpage-stats-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.catpage-stats-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.catpage-stats-icon-service {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #4F46E5;
}

.catpage-stats-icon-course {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    color: #EA580C;
}

.catpage-stats-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.catpage-stats-type {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.catpage-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.catpage-stat {
    text-align: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.catpage-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.catpage-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.catpage-stats-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.catpage-stats-btn:hover {
    background: var(--primary-hover);
    color: white;
}

/* Listings Section */
.catpage-listings {
    padding: 4rem 0;
}

.catpage-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.catpage-section-title h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.catpage-section-title h2 i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.catpage-section-title p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.catpage-view-all {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.2s;
}

.catpage-view-all:hover {
    gap: 0.625rem;
    color: var(--primary-hover);
}

.catpage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.catpage-mobile-cta {
    display: none;
    margin-top: 2rem;
}

/* Empty State */
.catpage-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px dashed var(--border-color);
}

.catpage-empty-icon {
    font-size: 4rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.catpage-empty h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.catpage-empty p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
}

/* Features Section */
.catpage-features {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.catpage-features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.catpage-features-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.catpage-features-header p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin: 0;
}

.catpage-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.catpage-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.catpage-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.catpage-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}

.catpage-feature-icon-1 {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #2563EB;
}

.catpage-feature-icon-2 {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #D97706;
}

.catpage-feature-icon-3 {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #059669;
}

.catpage-feature-icon-4 {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    color: #7C3AED;
}

.catpage-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.catpage-feature p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* SEO Content Section */
.catpage-seo {
    padding: 5rem 0;
    background: white;
}

.catpage-seo-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

.catpage-seo-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
}

.catpage-seo-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.catpage-seo-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 1rem;
}

.catpage-seo-content ul {
    margin: 0;
    padding: 0 0 0 1.5rem;
}

.catpage-seo-content ul li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* FAQ */
.catpage-faq {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.catpage-faq h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
}

.catpage-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.catpage-faq-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.catpage-faq-item.active {
    border-color: var(--primary-color);
}

.catpage-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.catpage-faq-question:hover {
    color: var(--primary-color);
}

.catpage-faq-question i {
    font-size: 1rem;
    color: var(--text-tertiary);
    transition: transform 0.2s;
}

.catpage-faq-item.active .catpage-faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.catpage-faq-answer {
    padding: 0 1.25rem 1rem;
}

.catpage-faq-answer p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.catpage-cta {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.catpage-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    border-radius: var(--radius-xl);
    color: white;
}

.catpage-cta-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.catpage-cta-content p {
    font-size: 1.0625rem;
    opacity: 0.9;
    margin: 0;
}

/* ========================================
   LANDING PAGES - Services & Courses
   ======================================== */
.landing-page {
    min-height: 100vh;
    background: var(--bg-primary);
}

/* Hero Section */
.landing-hero {
    position: relative;
    padding: 6rem 0;
    color: white;
    overflow: hidden;
}

.landing-hero-services {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.landing-hero-courses {
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 100%);
}

.landing-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="80" r="30" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.landing-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.landing-h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.landing-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0 0 2.5rem;
    max-width: 640px;
}

.landing-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-xl-modern {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
}

.btn-outline-light-modern {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-light-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.landing-hero-stats {
    display: flex;
    gap: 3rem;
}

.landing-hero-stat {
    display: flex;
    flex-direction: column;
}

.landing-hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
}

.landing-hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Intro Section */
.landing-intro {
    padding: 6rem 0;
    background: white;
}

.landing-intro-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.landing-intro-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
}

.landing-intro-lead {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.landing-intro-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.landing-intro-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.landing-intro-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.landing-intro-list li i {
    color: #10B981;
    font-size: 1.25rem;
}

/* Intro Card Visual */
.landing-intro-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.landing-intro-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.landing-intro-card-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.landing-intro-card-avatar-course {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
}

.landing-intro-card-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.landing-intro-card-rating {
    display: block;
    font-size: 0.875rem;
    color: #F59E0B;
}

.landing-intro-card-services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.landing-intro-card-service {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

.landing-intro-card-service span:first-child {
    color: var(--text-primary);
}

.landing-intro-card-service span:last-child {
    font-weight: 600;
    color: var(--primary-color);
}

.landing-intro-card-cta {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

.landing-intro-card-cta-course {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
}

/* Section Header */
.landing-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.landing-section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.landing-section-header p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Categories Section */
.landing-categories {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.landing-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.landing-category-group {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.landing-category-group:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.landing-category-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.landing-category-group-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.landing-category-group-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.landing-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.landing-category-list li a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.landing-category-list li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.landing-categories-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.landing-categories-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Benefits Section */
.landing-benefits {
    padding: 6rem 0;
    background: white;
}

.landing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.landing-benefit {
    text-align: center;
    padding: 2rem;
}

.landing-benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.landing-benefit h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.landing-benefit p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Steps Section */
.landing-steps {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.landing-steps-courses {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.landing-steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.landing-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

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

.landing-step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.landing-step p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.landing-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 3rem;
    color: var(--text-tertiary);
    font-size: 1.5rem;
}

.landing-steps-cta {
    text-align: center;
}

.landing-steps-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Testimonials */
.landing-testimonials {
    padding: 6rem 0;
    background: white;
}

.landing-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.landing-testimonial {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.landing-testimonial-stars {
    font-size: 1.25rem;
    color: #F59E0B;
    margin-bottom: 1rem;
}

.landing-testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-style: italic;
}

.landing-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.landing-testimonial-name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.landing-testimonial-role {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.landing-faq {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.landing-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.landing-faq-item {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.landing-faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
}

.landing-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.landing-faq-question:hover {
    color: var(--primary-color);
}

.landing-faq-question i {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    transition: transform 0.2s;
}

.landing-faq-item.active .landing-faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.landing-faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.landing-faq-answer p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Final CTA */
.landing-final-cta {
    padding: 6rem 0;
    background: white;
}

.landing-final-cta-courses {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.landing-final-cta-box {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366F1 100%);
    border-radius: var(--radius-2xl);
    color: white;
}

.landing-final-cta-box h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.landing-final-cta-box p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.landing-final-cta-buttons {
    margin-bottom: 1rem;
}

.landing-final-cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* ========================================
   COURSES LANDING - Friendly Version
   For everyday people, accessible design
   ======================================== */
.landing-courses-friendly {
    background: #FFFBF5;
}

/* Teach Hero */
.teach-hero {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFF8F0 0%, #FFFBF5 100%);
}

.teach-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
}

.teach-hero-eyebrow {
    display: inline-block;
    font-size: 0.9375rem;
    color: #059669;
    font-weight: 600;
    margin-bottom: 1rem;
}

.teach-hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1F2937;
    margin: 0 0 1.5rem;
}

.teach-hero-highlight {
    color: #7C3AED;
}

.teach-hero-text {
    font-size: 1.1875rem;
    line-height: 1.75;
    color: #4B5563;
    margin: 0 0 2rem;
}

.teach-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.teach-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    color: white;
}

.teach-hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: #6B7280;
}

.teach-hero-note i {
    color: #10B981;
}

/* Hero Card */
.teach-hero-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
}

.teach-hero-card-quote {
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.teach-hero-card-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.teach-hero-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C084FC 0%, #A855F7 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.teach-hero-card-author strong {
    display: block;
    font-size: 1rem;
    color: #1F2937;
}

.teach-hero-card-author span {
    display: block;
    font-size: 0.875rem;
    color: #6B7280;
}

/* Simple Steps Section */
.teach-simple {
    padding: 5rem 0;
    background: white;
}

.teach-simple-header {
    text-align: center;
    margin-bottom: 3rem;
}

.teach-simple-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 0.75rem;
}

.teach-simple-header p {
    font-size: 1.125rem;
    color: #6B7280;
    margin: 0;
}

.teach-simple-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.teach-simple-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #FAFAFA;
    border-radius: var(--radius-xl);
    border: 2px solid #F3F4F6;
    transition: all 0.2s;
}

.teach-simple-step:hover {
    border-color: #E9D5FF;
    background: #FDFBFF;
}

.teach-simple-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    color: #7C3AED;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.teach-simple-step-number {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #7C3AED;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.teach-simple-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 0.75rem;
}

.teach-simple-step p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.teach-simple-cta {
    text-align: center;
}

/* Ideas Section */
.teach-ideas {
    padding: 5rem 0;
    background: #FFFBF5;
}

.teach-ideas-header {
    text-align: center;
    margin-bottom: 3rem;
}

.teach-ideas-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 0.75rem;
}

.teach-ideas-header p {
    font-size: 1.125rem;
    color: #6B7280;
    margin: 0;
}

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

.teach-idea-group {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid #F3F4F6;
    transition: all 0.2s;
}

.teach-idea-group:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.teach-idea-group-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.teach-idea-group h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 0.5rem;
}

.teach-idea-group p {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.teach-ideas-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px dashed #E5E7EB;
}

.teach-ideas-note i {
    font-size: 1.5rem;
    color: #FBBF24;
}

.teach-ideas-note p {
    font-size: 1rem;
    color: #4B5563;
    margin: 0;
}

/* Benefits Section (Friendly) */
.teach-benefits {
    padding: 5rem 0;
    background: white;
}

.teach-benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.teach-benefits-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.teach-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.teach-benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #FAFAFA;
    border-radius: var(--radius-xl);
    border: 1px solid #F3F4F6;
}

.teach-benefit-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.teach-benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 0.5rem;
}

.teach-benefit-card p {
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Stories Section */
.teach-stories {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFFBF5 0%, #FFF8F0 100%);
}

.teach-stories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.teach-stories-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 0.5rem;
}

.teach-stories-header p {
    font-size: 1.0625rem;
    color: #6B7280;
    margin: 0;
}

.teach-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.teach-story {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #F3F4F6;
}

.teach-story-quote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.teach-story-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.teach-story-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C084FC 0%, #A855F7 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
}

.teach-story-author strong {
    display: block;
    font-size: 0.9375rem;
    color: #1F2937;
}

.teach-story-author span {
    display: block;
    font-size: 0.8125rem;
    color: #6B7280;
}

/* FAQ Section (Friendly) */
.teach-faq {
    padding: 5rem 0;
    background: white;
}

.teach-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.teach-faq-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 0.5rem;
}

.teach-faq-header p {
    font-size: 1.0625rem;
    color: #6B7280;
    margin: 0;
}

.teach-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.teach-faq-item {
    background: #FAFAFA;
    border-radius: var(--radius-lg);
    border: 1px solid #F3F4F6;
    overflow: hidden;
    transition: all 0.2s;
}

.teach-faq-item.active {
    border-color: #C4B5FD;
    background: #FDFBFF;
}

.teach-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1F2937;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.teach-faq-question:hover {
    color: #7C3AED;
}

.teach-faq-question i {
    font-size: 1.25rem;
    color: #9CA3AF;
    transition: transform 0.2s;
}

.teach-faq-item.active .teach-faq-question i {
    transform: rotate(180deg);
    color: #7C3AED;
}

.teach-faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.teach-faq-answer p {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.75;
    margin: 0;
}

/* Final CTA (Friendly) */
.teach-final-cta {
    padding: 5rem 0;
    background: #FFFBF5;
}

.teach-final-box {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    border-radius: var(--radius-2xl);
    color: white;
}

.teach-final-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.teach-final-box h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.teach-final-box > p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.teach-final-btn {
    display: inline-flex;
    align-items: center;
    padding: 1.125rem 2.5rem;
    background: white;
    color: #7C3AED;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.teach-final-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #7C3AED;
}

.teach-final-note {
    font-size: 0.9375rem;
    opacity: 0.85;
    margin: 1rem 0 0;
}

/* ========================================
   HOME PAGE - Provider CTA Section
   ======================================== */
.home-provider-cta {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.provider-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.provider-cta-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.provider-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.provider-cta-services::before {
    background: linear-gradient(180deg, #3B82F6 0%, #1D4ED8 100%);
}

.provider-cta-courses::before {
    background: linear-gradient(180deg, #8B5CF6 0%, #6D28D9 100%);
}

.provider-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.provider-cta-card:hover::before {
    width: 6px;
}

.provider-cta-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.provider-cta-services .provider-cta-icon {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #1D4ED8;
}

.provider-cta-courses .provider-cta-icon {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    color: #6D28D9;
}

.provider-cta-content {
    flex: 1;
}

.provider-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 0.75rem;
}

.provider-cta-content > p {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.provider-cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.provider-cta-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #475569;
}

.provider-cta-features li i {
    color: #10B981;
    font-size: 1.125rem;
}

.provider-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s ease;
}

.provider-cta-btn-services {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
}

.provider-cta-btn-services:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    color: white;
}

.provider-cta-btn-courses {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    color: white;
}

.provider-cta-btn-courses:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    color: white;
}

/* ========================================
   NOTIFICATION BADGES
   ======================================== */

.badge-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1;
    color: white;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border-radius: 9999px;
    margin-left: 6px;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    animation: badge-pulse 2s ease-in-out infinite;
}

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

.dropdown-item-modern .badge-count,
.mobile-menu-item .badge-count {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
}

.dropdown-item-modern.relative,
.mobile-menu-item.relative {
    position: relative;
    padding-right: 40px;
}

 .hp-modern {
     background: radial-gradient(1200px 600px at 50% 0%, rgba(79, 70, 229, 0.12) 0%, rgba(248, 250, 252, 0) 60%),
                 linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(248, 250, 252, 1) 100%);
     position: relative;
     overflow: hidden;
 }

 .hp-modern-feature-card[data-scroll-focus],
 .hp-modern-provider-card[data-scroll-focus],
 .pricing-modern-card[data-scroll-focus] {
     --focus: 0;
     transform: translateY(calc((1 - var(--focus)) * 6px)) scale(calc(0.985 + (var(--focus) * 0.02)));
     opacity: calc(0.72 + (var(--focus) * 0.28));
     filter: blur(calc((1 - var(--focus)) * 1.2px));
     box-shadow:
         0 30px 90px rgba(15, 23, 42, calc(0.06 + (var(--focus) * 0.08)));
     transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
                 opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
                 filter 220ms cubic-bezier(0.16, 1, 0.3, 1),
                 box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
     will-change: transform, opacity, filter;
 }

 .hp-modern-container {
     margin: 0 auto;
     padding: 0 24px;
     width: min(1200px, 100%);
 }

 .hp-modern-container[data-expand-container="widen"],
 [data-expand-container="widen"].hp-modern-container {
     --expand-progress: 0;
     width: min(1200px, calc(980px + (260px * var(--expand-progress))));
     transition: width 260ms cubic-bezier(0.16, 1, 0.3, 1);
 }

 .hp-reveal {
     opacity: 0;
     transform: translateY(18px);
     transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
     will-change: transform, opacity;
 }

 .hp-reveal.is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 .hp-modern-intro {
     padding: 72px 0 56px;
 }

 .hp-modern-intro-grid {
     display: grid;
     grid-template-columns: 1.05fr 0.95fr;
     gap: 40px;
     align-items: center;
 }

 .hp-modern-kicker {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-bottom: 16px;
 }

 .hp-modern-pill {
     display: inline-flex;
     align-items: center;
     padding: 8px 12px;
     border-radius: 9999px;
     font-size: 0.875rem;
     font-weight: 600;
     color: rgba(15, 23, 42, 0.86);
     background: rgba(255, 255, 255, 0.72);
     border: 1px solid rgba(226, 232, 240, 0.9);
     box-shadow: var(--shadow-sm);
     backdrop-filter: blur(10px);
 }

 .hp-modern-title {
     
     font-weight: 900;
     letter-spacing: -0.04em;
     font-size: clamp(2.1rem, 4.6vw, 3.4rem);
     line-height: 1.05;
     color: var(--text-primary);
     margin: 0 0 14px;
 }

 @media (max-width: 768px) {
     .hp-modern-feature-card[data-scroll-focus],
     .hp-modern-provider-card[data-scroll-focus],
     .pricing-modern-card[data-scroll-focus] {
         transform: translateY(calc((1 - var(--focus)) * 4px)) scale(calc(0.992 + (var(--focus) * 0.012)));
         filter: blur(calc((1 - var(--focus)) * 0.6px));
     }
 }

 .hp-modern-title-em {
     display: block;
     background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 45%, #10B981 100%);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hp-modern-subtitle {
     font-size: 1.125rem;
     line-height: 1.65;
     color: rgba(71, 85, 105, 0.95);
     margin: 0 0 18px;
 }

 .hp-modern-actions {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     margin-bottom: 18px;
 }

 .hp-modern-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 12px 16px;
     border-radius: 14px;
     text-decoration: none;
     font-weight: 700;
     font-size: 0.95rem;
     transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
 }

 .hp-modern-btn-primary {
     color: white;
     background: linear-gradient(135deg, #4F46E5 0%, #4338CA 35%, #0EA5E9 100%);
     box-shadow: 0 18px 50px rgba(79, 70, 229, 0.22);
 }

 .hp-modern-btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 22px 60px rgba(79, 70, 229, 0.28);
 }

 .hp-modern-btn-secondary {
     color: var(--text-primary);
     background: rgba(255, 255, 255, 0.85);
     border: 1px solid rgba(226, 232, 240, 1);
     box-shadow: var(--shadow-sm);
 }

 .hp-modern-btn-secondary:hover {
     transform: translateY(-2px);
     box-shadow: var(--shadow-md);
 }

 .hp-modern-proof {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 12px;
 }

 .hp-proof-item {
     border-radius: 16px;
     background: rgba(255, 255, 255, 0.72);
     border: 1px solid rgba(226, 232, 240, 0.9);
     padding: 14px 14px;
     box-shadow: var(--shadow-sm);
     backdrop-filter: blur(10px);
 }

 .hp-proof-value {
     font-size: 1.15rem;
     font-weight: 900;
     color: var(--text-primary);
     letter-spacing: -0.02em;
 }

 .hp-proof-label {
     font-size: 0.85rem;
     color: rgba(71, 85, 105, 0.95);
     margin-top: 4px;
 }

 .hp-modern-visual {
     position: relative;
     min-height: 420px;
 }

 .hp-modern-glass {
     border-radius: 22px;
     background: rgba(255, 255, 255, 0.55);
     border: 1px solid rgba(226, 232, 240, 0.9);
     box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
     overflow: hidden;
     backdrop-filter: blur(18px);
 }

 .hp-modern-glass-header {
     display: flex;
     gap: 8px;
     padding: 14px 16px;
     border-bottom: 1px solid rgba(226, 232, 240, 0.9);
     background: rgba(248, 250, 252, 0.75);
 }

 .hp-modern-glass-dot {
     width: 10px;
     height: 10px;
     border-radius: 9999px;
     background: rgba(148, 163, 184, 0.8);
 }

 .hp-modern-glass-body {
     padding: 18px 18px 20px;
 }

 .hp-modern-metric {
     padding: 14px 14px;
     border-radius: 16px;
     background: rgba(15, 23, 42, 0.04);
     border: 1px solid rgba(226, 232, 240, 0.9);
     margin-bottom: 14px;
 }

 .hp-modern-metric-label {
     font-size: 0.85rem;
     color: rgba(71, 85, 105, 0.95);
 }

 .hp-modern-metric-value {
     font-size: 1.15rem;
     font-weight: 900;
     letter-spacing: -0.02em;
     color: var(--text-primary);
     margin-top: 4px;
 }

 .hp-modern-mini-cards {
     display: grid;
     gap: 10px;
 }

 .hp-modern-mini-card {
     display: flex;
     gap: 12px;
     align-items: flex-start;
     padding: 14px 14px;
     border-radius: 16px;
     background: rgba(255, 255, 255, 0.8);
     border: 1px solid rgba(226, 232, 240, 0.9);
     box-shadow: var(--shadow-sm);
 }

 .hp-modern-mini-card i {
     font-size: 1.25rem;
     color: #4F46E5;
 }

 .hp-modern-mini-title {
     font-weight: 800;
     color: var(--text-primary);
     letter-spacing: -0.01em;
 }

 .hp-modern-mini-sub {
     font-size: 0.875rem;
     color: rgba(71, 85, 105, 0.95);
     margin-top: 2px;
 }

 .hp-modern-orb {
     position: absolute;
     width: 260px;
     height: 260px;
     border-radius: 9999px;
     filter: blur(30px);
     opacity: 0.9;
     pointer-events: none;
     will-change: transform;
 }

 .hp-modern-orb-1 {
     left: -60px;
     top: 40px;
     background: radial-gradient(circle at 30% 30%, rgba(79, 70, 229, 0.45), rgba(79, 70, 229, 0));
 }

 .hp-modern-orb-2 {
     right: -80px;
     bottom: 40px;
     background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.35), rgba(16, 185, 129, 0));
 }

 .hp-modern-section-header {
     text-align: center;
     max-width: 760px;
     margin: 0 auto 22px;
 }

 .hp-modern-h2 {
     font-weight: 900;
     letter-spacing: -0.03em;
     font-size: clamp(1.75rem, 3vw, 2.35rem);
     color: var(--text-primary);
     margin: 0 0 10px;
 }

 .hp-modern-h3 {
     font-weight: 900;
     letter-spacing: -0.02em;
     font-size: 1.35rem;
     margin: 0 0 10px;
     color: var(--text-primary);
 }

 .hp-modern-p {
     color: rgba(71, 85, 105, 0.95);
     margin: 0;
     line-height: 1.65;
 }

 .hp-modern-categories {
     padding: 56px 0;
 }

 .hp-modern-category-grid {
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: 14px;
 }

 .hp-modern-category {
     text-decoration: none;
     border-radius: 18px;
     background: rgba(255, 255, 255, 0.78);
     border: 1px solid rgba(226, 232, 240, 0.95);
     padding: 18px 16px;
     box-shadow: var(--shadow-sm);
     transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
 }

 .hp-modern-category:hover {
     transform: translateY(-4px);
     box-shadow: var(--shadow-lg);
     border-color: rgba(79, 70, 229, 0.25);
 }

 .hp-modern-category-icon {
     width: 42px;
     height: 42px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(14, 165, 233, 0.10));
     color: #4F46E5;
     margin-bottom: 12px;
 }

 .hp-modern-category-icon i {
     font-size: 1.25rem;
 }

 .hp-modern-category-title {
     font-weight: 900;
     color: var(--text-primary);
     letter-spacing: -0.02em;
 }

 .hp-modern-category-sub {
     margin-top: 6px;
     font-size: 0.9rem;
     color: rgba(71, 85, 105, 0.95);
 }

 .hp-modern-scrolly {
     padding: 56px 0 68px;
 }

 .hp-modern-feature-stack {
     display: grid;
     gap: 16px;
 }

 .hp-modern-feature-card {
     border-radius: 22px;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 100%);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 30px 90px rgba(15, 23, 42, 0.10);
     padding: 26px;
     display: grid;
     grid-template-columns: 1.05fr 0.95fr;
     gap: 18px;
     align-items: center;
     overflow: hidden;
 }

 .hp-modern-feature-badge {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 44px;
     height: 44px;
     border-radius: 9999px;
     background: rgba(79, 70, 229, 0.10);
     color: #4F46E5;
     font-weight: 900;
     letter-spacing: -0.02em;
     margin-bottom: 12px;
 }

 .hp-modern-checks {
     display: grid;
     gap: 10px;
     margin-top: 14px;
 }

 .hp-modern-check {
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 600;
     color: rgba(15, 23, 42, 0.86);
 }

 .hp-modern-check i {
     color: #10B981;
     font-size: 1.15rem;
 }

 .hp-modern-screenshot {
     border-radius: 18px;
     height: 260px;
     background: radial-gradient(900px 360px at 30% 20%, rgba(79, 70, 229, 0.18) 0%, rgba(79, 70, 229, 0) 55%),
                 radial-gradient(700px 320px at 70% 80%, rgba(16, 185, 129, 0.14) 0%, rgba(16, 185, 129, 0) 55%),
                 linear-gradient(135deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.02) 100%);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
 }

 .hp-modern-screenshot-2 {
     background: radial-gradient(900px 360px at 25% 30%, rgba(14, 165, 233, 0.16) 0%, rgba(14, 165, 233, 0) 55%),
                 radial-gradient(700px 320px at 75% 70%, rgba(79, 70, 229, 0.14) 0%, rgba(79, 70, 229, 0) 55%),
                 linear-gradient(135deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.02) 100%);
 }

 .hp-modern-screenshot-3 {
     background: radial-gradient(900px 360px at 25% 30%, rgba(16, 185, 129, 0.16) 0%, rgba(16, 185, 129, 0) 55%),
                 radial-gradient(700px 320px at 75% 70%, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0) 55%),
                 linear-gradient(135deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.02) 100%);
 }

 .hp-modern-cta {
     padding: 0 0 74px;
 }

 .hp-modern-cta-card {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     padding: 26px;
     border-radius: 22px;
     background: linear-gradient(135deg, rgba(79, 70, 229, 0.12) 0%, rgba(14, 165, 233, 0.10) 45%, rgba(16, 185, 129, 0.10) 100%),
                 rgba(255, 255, 255, 0.75);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 30px 90px rgba(15, 23, 42, 0.10);
     backdrop-filter: blur(18px);
 }

 .hp-modern-cta-actions {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     justify-content: flex-end;
 }

 .hp-modern-faq {
     padding: 56px 0 56px;
 }

 .hp-modern-faq-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 14px;
     margin-top: 18px;
 }

 .hp-modern-faq-item {
     border-radius: 18px;
     background: rgba(255, 255, 255, 0.78);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: var(--shadow-sm);
     overflow: hidden;
 }

 .hp-modern-faq-q {
     list-style: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     padding: 16px 16px;
     font-weight: 900;
     letter-spacing: -0.02em;
     color: var(--text-primary);
 }

 .hp-modern-faq-q::-webkit-details-marker {
     display: none;
 }

 .hp-modern-faq-q i {
     color: rgba(71, 85, 105, 0.9);
     transition: transform 220ms ease;
 }

 details[open] .hp-modern-faq-q i {
     transform: rotate(180deg);
 }

 .hp-modern-faq-a {
     padding: 0 16px 16px;
     color: rgba(71, 85, 105, 0.95);
     line-height: 1.7;
 }

 .hp-modern-faq-a p {
     margin: 0;
 }

 .hp-modern-provider {
     padding: 56px 0 66px;
 }

 .hp-modern-provider-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 16px;
 }

 .hp-modern-provider-card {
     border-radius: 22px;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 100%);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 30px 90px rgba(15, 23, 42, 0.10);
     padding: 24px;
     display: grid;
     grid-template-columns: 72px 1fr;
     gap: 16px;
     align-items: start;
 }

 .hp-modern-provider-icon {
     width: 64px;
     height: 64px;
     border-radius: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(14, 165, 233, 0.10));
     color: #4F46E5;
 }

 .hp-modern-provider-icon i {
     font-size: 1.5rem;
 }

 .hp-modern-provider-courses .hp-modern-provider-icon {
     background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(245, 158, 11, 0.10));
     color: #10B981;
 }

 .hp-modern-provider-content .hp-modern-h3 {
     margin-top: 2px;
 }

 .hp-modern-provider-actions {
     margin-top: 16px;
 }

 .pricing-modern {
     background: radial-gradient(1100px 520px at 50% 0%, rgba(79, 70, 229, 0.14) 0%, rgba(248, 250, 252, 0) 60%),
                 linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(248, 250, 252, 1) 100%);
     position: relative;
     overflow: hidden;
 }

 .pricing-modern-hero {
     padding: 72px 0 44px;
 }

 .pricing-modern-hero-inner {
     display: grid;
     grid-template-columns: 1.05fr 0.95fr;
     gap: 32px;
     align-items: start;
 }

 .pricing-modern-badge {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 8px 12px;
     border-radius: 9999px;
     font-size: 0.875rem;
     font-weight: 700;
     color: rgba(15, 23, 42, 0.86);
     background: rgba(255, 255, 255, 0.72);
     border: 1px solid rgba(226, 232, 240, 0.9);
     box-shadow: var(--shadow-sm);
     backdrop-filter: blur(10px);
     margin-bottom: 14px;
 }

 .pricing-modern-title {
     font-family: var(--font-family);
     font-weight: 950;
     letter-spacing: -0.04em;
     font-size: clamp(2.2rem, 4.4vw, 3.4rem);
     line-height: 1.05;
     color: var(--text-primary);
     margin: 0 0 14px;
 }

 .pricing-modern-title-em {
     display: block;
     background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 45%, #10B981 100%);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .pricing-modern-subtitle {
     font-size: 1.125rem;
     line-height: 1.65;
     color: rgba(71, 85, 105, 0.95);
     margin: 0 0 18px;
 }

 .pricing-modern-hero-actions {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     margin-bottom: 18px;
 }

 .pricing-modern-hero-proof {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 12px;
 }

 .pricing-modern-proof-item {
     border-radius: 16px;
     background: rgba(255, 255, 255, 0.72);
     border: 1px solid rgba(226, 232, 240, 0.9);
     padding: 14px;
     box-shadow: var(--shadow-sm);
     backdrop-filter: blur(10px);
 }

 .pricing-modern-proof-value {
     font-size: 1.05rem;
     font-weight: 900;
     color: var(--text-primary);
     letter-spacing: -0.02em;
 }

 .pricing-modern-proof-label {
     font-size: 0.85rem;
     color: rgba(71, 85, 105, 0.95);
     margin-top: 4px;
 }

 .pricing-modern-hero-panel {
     border-radius: 22px;
     background: rgba(255, 255, 255, 0.55);
     border: 1px solid rgba(226, 232, 240, 0.9);
     box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
     backdrop-filter: blur(18px);
 }

 .pricing-modern-hero-panel-inner {
     padding: 18px;
     display: grid;
     gap: 14px;
 }

 .pricing-modern-hero-panel-row {
     display: grid;
     grid-template-columns: 44px 1fr;
     gap: 14px;
     align-items: start;
     padding: 14px;
     border-radius: 18px;
     background: rgba(15, 23, 42, 0.04);
     border: 1px solid rgba(226, 232, 240, 0.9);
 }

 .pricing-modern-hero-panel-icon {
     width: 44px;
     height: 44px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(14, 165, 233, 0.10));
     color: #4F46E5;
 }

 .pricing-modern-hero-panel-icon i {
     font-size: 1.25rem;
 }

 .pricing-modern-hero-panel-title {
     font-weight: 900;
     color: var(--text-primary);
     letter-spacing: -0.01em;
 }

 .pricing-modern-hero-panel-sub {
     font-size: 0.9rem;
     margin-top: 2px;
     color: rgba(71, 85, 105, 0.95);
 }

 .pricing-modern-section {
     padding: 34px 0 44px;
 }

 .pricing-modern-header {
     text-align: center;
     margin-bottom: 18px;
 }

 .pricing-modern-toggle {
     display: inline-flex;
     gap: 8px;
     padding: 6px;
     border-radius: 9999px;
     background: rgba(255, 255, 255, 0.82);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: var(--shadow-sm);
     backdrop-filter: blur(10px);
 }

 .pricing-modern-toggle-btn {
     border: none;
     background: transparent;
     padding: 10px 14px;
     border-radius: 9999px;
     font-weight: 800;
     color: rgba(15, 23, 42, 0.76);
     transition: background 200ms ease, color 200ms ease;
 }

 .pricing-modern-toggle-btn.is-active {
     background: rgba(79, 70, 229, 0.12);
     color: rgba(15, 23, 42, 0.92);
 }

 .pricing-modern-grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 16px;
 }

 .pricing-modern-card {
     border-radius: 22px;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 100%);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 30px 90px rgba(15, 23, 42, 0.10);
     overflow: hidden;
     padding: 22px;
     display: flex;
     flex-direction: column;
     position: relative;
 }

 .pricing-modern-card.is-featured {
     border-color: rgba(79, 70, 229, 0.42);
 }

 .pricing-modern-card.is-enterprise {
     background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.86) 100%);
     border-color: rgba(148, 163, 184, 0.22);
 }

 .pricing-modern-card-pill {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 6px 10px;
     border-radius: 9999px;
     font-size: 0.75rem;
     font-weight: 900;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: white;
     background: linear-gradient(135deg, #4F46E5 0%, #0EA5E9 60%, #10B981 100%);
     width: fit-content;
     margin-bottom: 12px;
 }

 .pricing-modern-card-title {
     font-weight: 950;
     font-size: 1.25rem;
     color: var(--text-primary);
     margin: 0 0 4px;
 }

 .pricing-modern-card.is-enterprise .pricing-modern-card-title {
     color: rgba(255, 255, 255, 0.96);
 }

 .pricing-modern-card-desc {
     font-size: 0.95rem;
     line-height: 1.55;
     color: rgba(71, 85, 105, 0.95);
     margin: 0 0 14px;
 }

 .pricing-modern-card.is-enterprise .pricing-modern-card-desc {
     color: rgba(226, 232, 240, 0.82);
 }

 .pricing-modern-price {
     display: flex;
     align-items: baseline;
     gap: 6px;
     margin-bottom: 10px;
 }

 .pricing-modern-currency {
     font-weight: 900;
     color: rgba(15, 23, 42, 0.78);
 }

 .pricing-modern-amount {
     font-size: 2.4rem;
     font-weight: 950;
     letter-spacing: -0.03em;
     color: var(--text-primary);
     line-height: 1;
 }

 .pricing-modern-card.is-enterprise .pricing-modern-amount,
 .pricing-modern-card.is-enterprise .pricing-modern-currency {
     color: rgba(255, 255, 255, 0.96);
 }

 .pricing-modern-period {
     color: rgba(71, 85, 105, 0.85);
     font-weight: 700;
 }

 .pricing-modern-card.is-enterprise .pricing-modern-period {
     color: rgba(226, 232, 240, 0.8);
 }

 .pricing-modern-commission {
     display: inline-flex;
     align-items: center;
     padding: 7px 10px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 0.85rem;
     color: rgba(71, 85, 105, 0.95);
     background: rgba(15, 23, 42, 0.04);
     border: 1px solid rgba(226, 232, 240, 0.9);
     width: fit-content;
 }

 .pricing-modern-commission.is-zero {
     color: rgba(6, 95, 70, 1);
     background: rgba(16, 185, 129, 0.14);
     border-color: rgba(16, 185, 129, 0.22);
 }

 .pricing-modern-card.is-enterprise .pricing-modern-commission {
     color: rgba(226, 232, 240, 0.84);
     background: rgba(255, 255, 255, 0.06);
     border-color: rgba(148, 163, 184, 0.18);
 }

 .pricing-modern-trial {
     margin-top: 10px;
     font-weight: 800;
     font-size: 0.85rem;
     color: rgba(79, 70, 229, 0.95);
 }

 .pricing-modern-card-body {
     margin-top: 16px;
     padding-top: 16px;
     border-top: 1px solid rgba(226, 232, 240, 0.9);
     flex: 1;
 }

 .pricing-modern-card.is-enterprise .pricing-modern-card-body {
     border-top-color: rgba(148, 163, 184, 0.2);
 }

 .pricing-modern-features {
     margin: 0;
     padding: 0;
     list-style: none;
     display: grid;
     gap: 10px;
 }

 .pricing-modern-features li {
     position: relative;
     padding-left: 22px;
     color: rgba(15, 23, 42, 0.86);
     line-height: 1.5;
 }

 .pricing-modern-card.is-enterprise .pricing-modern-features li {
     color: rgba(226, 232, 240, 0.88);
 }

 .pricing-modern-features li::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0.52em;
     width: 10px;
     height: 10px;
     border-radius: 9999px;
     background: rgba(16, 185, 129, 0.9);
     box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
 }

 .pricing-modern-features li.is-muted {
     color: rgba(71, 85, 105, 0.8);
 }

 .pricing-modern-features li.is-muted::before {
     background: rgba(148, 163, 184, 0.9);
     box-shadow: none;
 }

 .pricing-modern-card-cta {
     margin-top: 16px;
 }

 .pricing-modern-compare {
     padding: 42px 0 54px;
 }

 .pricing-modern-table-wrap {
     border-radius: 22px;
     overflow: auto;
     border: 1px solid rgba(226, 232, 240, 0.95);
     background: rgba(255, 255, 255, 0.82);
     box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
 }

 .pricing-modern-table {
     width: 100%;
     border-collapse: collapse;
     min-width: 720px;
 }

 .pricing-modern-table th,
 .pricing-modern-table td {
     padding: 14px 16px;
     border-bottom: 1px solid rgba(226, 232, 240, 0.85);
     text-align: center;
     font-weight: 700;
     color: rgba(15, 23, 42, 0.82);
 }

 .pricing-modern-table th {
     background: rgba(248, 250, 252, 0.9);
 }

 .pricing-modern-col-feature {
     text-align: left;
     min-width: 220px;
 }

 .pricing-modern-table td:first-child {
     text-align: left;
     font-weight: 800;
 }

 .pricing-modern-table th.is-highlight {
     background: rgba(79, 70, 229, 0.10);
 }

 .pricing-modern-table .iconoir-check-circle {
     color: rgba(16, 185, 129, 1);
 }

 .pricing-modern-no {
     color: rgba(100, 116, 139, 0.9);
     font-weight: 900;
 }

 .pricing-modern-table td.is-good {
     color: rgba(6, 95, 70, 1);
 }

 .pricing-modern-faq {
     padding: 46px 0 54px;
 }

 .pricing-modern-faq-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 12px;
 }

 .pricing-modern-faq-item {
     border-radius: 18px;
     background: rgba(255, 255, 255, 0.78);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
     overflow: hidden;
 }

 .pricing-modern-faq-q {
     list-style: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 14px;
     padding: 14px 16px;
     font-weight: 900;
     color: rgba(15, 23, 42, 0.92);
 }

 .pricing-modern-faq-q::-webkit-details-marker {
     display: none;
 }

 .pricing-modern-faq-a {
     padding: 0 16px 16px;
     color: rgba(71, 85, 105, 0.95);
     line-height: 1.7;
 }

 .pricing-modern-final {
     padding: 34px 0 66px;
 }

 .pricing-modern-final-card {
     border-radius: 26px;
     padding: 26px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     background: linear-gradient(135deg, rgba(79, 70, 229, 0.18) 0%, rgba(14, 165, 233, 0.12) 45%, rgba(16, 185, 129, 0.12) 100%);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 30px 90px rgba(15, 23, 42, 0.10);
 }

 .pricing-modern-final-actions {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 .customer-profile-edit {
     padding: 46px 0 66px;
     background: radial-gradient(900px 420px at 50% 0%, rgba(79, 70, 229, 0.14) 0%, rgba(248, 250, 252, 0) 60%);
 }

 .customer-profile-edit-shell {
     max-width: 920px;
     margin: 0 auto;
 }

 .customer-profile-edit-top {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 16px;
     margin-bottom: 18px;
 }

 .customer-profile-edit-heading {
     flex: 1;
 }

 .customer-profile-edit-title {
     font-family: var(--font-heading);
     font-weight: 950;
     letter-spacing: -0.03em;
     font-size: clamp(1.75rem, 3vw, 2.25rem);
     margin: 0;
     color: var(--text-primary);
 }

 .customer-profile-edit-subtitle {
     margin: 6px 0 0;
     color: rgba(71, 85, 105, 0.95);
     line-height: 1.6;
 }

 .customer-profile-edit-back {
     gap: 10px;
 }

 .customer-profile-edit-form {
     display: grid;
     gap: 14px;
 }

 .customer-profile-edit-card {
     transform: none;
 }

 .customer-profile-edit-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 14px;
 }

 .customer-profile-edit-field-full {
     grid-column: 1 / -1;
 }

 .customer-profile-edit-required {
     color: rgba(220, 38, 38, 1);
     font-weight: 900;
 }

 .customer-profile-edit-field-error {
     margin-top: 6px;
     font-size: 0.875rem;
     font-weight: 700;
     color: rgba(220, 38, 38, 1);
 }

 .customer-profile-edit .form-control-modern.is-invalid {
     border-color: rgba(220, 38, 38, 0.9);
     box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
 }

 .customer-profile-edit-actions {
     display: flex;
     justify-content: flex-end;
     margin-top: 6px;
 }

 .customer-profile-edit-save {
     min-width: 220px;
 }

 .customer-dashboard {
     min-height: 100vh;
     padding: 46px 0 66px;
     background: radial-gradient(900px 420px at 50% 0%, rgba(79, 70, 229, 0.12) 0%, rgba(248, 250, 252, 0) 60%),
                 rgba(248, 250, 252, 1);
 }

 .customer-dashboard-header {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 16px;
     margin-bottom: 18px;
 }

 .customer-dashboard-title {
     
     font-weight: 950;
     letter-spacing: -0.03em;
     font-size: clamp(1.75rem, 3vw, 2.25rem);
     margin: 0;
     color: var(--text-primary);
 }

 .customer-dashboard-subtitle {
     margin: 6px 0 0;
     color: rgba(71, 85, 105, 0.95);
     line-height: 1.6;
 }

 .customer-dashboard-stats {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 14px;
     margin-bottom: 18px;
 }

 .customer-dashboard-stat {
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 16px;
     position: relative;
 }

 .customer-dashboard-stat-icon {
     width: 54px;
     height: 54px;
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
 }

 .customer-dashboard-stat-icon i {
     font-size: 1.4rem;
 }

 .customer-dashboard-stat-icon.is-bookings {
     background: linear-gradient(135deg, rgba(79, 70, 229, 1) 0%, rgba(14, 165, 233, 1) 100%);
 }

 .customer-dashboard-stat-icon.is-messages {
     background: linear-gradient(135deg, rgba(16, 185, 129, 1) 0%, rgba(5, 150, 105, 1) 100%);
 }

 .customer-dashboard-stat-icon.is-profile {
     background: linear-gradient(135deg, rgba(245, 158, 11, 1) 0%, rgba(234, 88, 12, 1) 100%);
 }

 .customer-dashboard-stat-label {
     font-size: 0.875rem;
     font-weight: 800;
     color: rgba(71, 85, 105, 0.95);
 }

 .customer-dashboard-stat-value {
     font-size: 1.6rem;
     font-weight: 950;
     letter-spacing: -0.02em;
     color: var(--text-primary);
     line-height: 1.1;
     margin-top: 2px;
 }

 .customer-dashboard-stat-value.is-link {
     font-size: 1.05rem;
     font-weight: 900;
 }

 .customer-dashboard-stat-badge {
     position: absolute;
     top: 12px;
     right: 12px;
     min-width: 22px;
     height: 22px;
     padding: 0 7px;
     border-radius: 9999px;
     background: rgba(239, 68, 68, 1);
     color: white;
     font-size: 0.75rem;
     font-weight: 900;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .customer-dashboard-main {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 14px;
 }

 .customer-dashboard-panel {
     padding: 0;
 }

 .customer-dashboard-panel-header {
     padding: 16px 16px 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
 }

 .customer-dashboard-panel-title {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-weight: 950;
     letter-spacing: -0.01em;
     font-size: 1.05rem;
     color: var(--text-primary);
     margin: 0;
 }

 .customer-dashboard-panel-link {
     font-weight: 800;
     font-size: 0.9rem;
     text-decoration: none;
     color: rgba(79, 70, 229, 0.95);
 }

 .customer-dashboard-list {
     padding: 14px 16px 16px;
     display: grid;
     gap: 12px;
 }

 .customer-dashboard-item {
     border-radius: 16px;
     border: 1px solid rgba(226, 232, 240, 0.95);
     background: rgba(255, 255, 255, 0.72);
     box-shadow: var(--shadow-sm);
     padding: 14px;
 }

 .customer-dashboard-item-top {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 10px;
     margin-bottom: 8px;
 }

 .customer-dashboard-item-title {
     font-weight: 950;
     letter-spacing: -0.01em;
     color: var(--text-primary);
 }

 .customer-dashboard-status {
     font-size: 0.75rem;
     font-weight: 900;
     padding: 6px 10px;
     border-radius: 9999px;
     background: rgba(79, 70, 229, 0.12);
     color: rgba(30, 64, 175, 1);
     white-space: nowrap;
 }

 .customer-dashboard-item-meta {
     display: grid;
     gap: 6px;
     color: rgba(71, 85, 105, 0.95);
     font-weight: 700;
     font-size: 0.9rem;
 }

 .customer-dashboard-meta-row {
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .customer-dashboard-message {
     width: 100%;
     border: 1px solid rgba(226, 232, 240, 0.95);
     background: rgba(255, 255, 255, 0.72);
     border-radius: 16px;
     padding: 14px;
     display: grid;
     grid-template-columns: 44px 1fr;
     gap: 12px;
     align-items: start;
     text-align: left;
 }

 .customer-dashboard-message:hover {
     border-color: rgba(16, 185, 129, 0.35);
 }

 .customer-dashboard-avatar {
     width: 44px;
     height: 44px;
     border-radius: 9999px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(16, 185, 129, 1) 0%, rgba(5, 150, 105, 1) 100%);
     color: white;
     font-weight: 950;
 }

 .customer-dashboard-message-body {
     display: grid;
     gap: 6px;
 }

 .customer-dashboard-message-top {
     display: flex;
     align-items: baseline;
     justify-content: space-between;
     gap: 10px;
 }

 .customer-dashboard-message-title {
     font-weight: 950;
     letter-spacing: -0.01em;
     color: var(--text-primary);
 }

 .customer-dashboard-message-time {
     font-size: 0.75rem;
     font-weight: 800;
     color: rgba(100, 116, 139, 0.95);
 }

 .customer-dashboard-message-sub {
     font-size: 0.85rem;
     font-weight: 800;
     color: rgba(100, 116, 139, 0.95);
 }

 .customer-dashboard-message-preview {
     font-size: 0.9rem;
     color: rgba(71, 85, 105, 0.95);
     line-height: 1.4;
 }

 .customer-dashboard-empty {
     padding: 26px 16px 18px;
     text-align: center;
 }

 .customer-dashboard-empty-icon {
     font-size: 2.25rem;
     color: rgba(148, 163, 184, 1);
     margin-bottom: 10px;
 }

 .customer-dashboard-empty-title {
     font-weight: 950;
     letter-spacing: -0.01em;
     color: var(--text-primary);
 }

 .customer-dashboard-empty-sub {
     margin-top: 4px;
     color: rgba(100, 116, 139, 0.95);
 }

 .customer-dashboard-empty-actions {
     margin-top: 14px;
 }

 .customer-dashboard-settings {
     margin-top: 18px;
 }

 .chat-modal-container {
     position: fixed;
     z-index: 10001;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     width: 90%;
     max-width: 860px;
     height: 90vh;
     max-height: 720px;
     background: white;
     border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
 }

 @media (max-width: 768px) {
     .chat-modal-container {
         width: 100%;
         height: 100vh;
         max-height: none;
         border-radius: 0;
         top: 0;
         left: 0;
         transform: none;
     }
 }

 .help-center {
     background: radial-gradient(1100px 600px at 50% 0%, rgba(79, 70, 229, 0.10) 0%, rgba(248, 250, 252, 0) 60%),
                 linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(248, 250, 252, 1) 100%);
     min-height: 70vh;
 }

 .help-center-hero {
     padding: 72px 0 40px;
 }

 .help-center-hero-inner {
     display: grid;
     grid-template-columns: 1.15fr 0.85fr;
     gap: 28px;
     align-items: center;
 }

 .help-center-hero-copy {
     padding-right: 10px;
 }

 .help-center-badge {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 10px 14px;
     border-radius: 9999px;
     font-size: 0.875rem;
     font-weight: 650;
     color: rgba(15, 23, 42, 0.86);
     background: rgba(255, 255, 255, 0.72);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
     backdrop-filter: blur(10px);
 }

 .help-center-title {
     margin: 12px 0 10px;
     font-weight: 950;
     letter-spacing: -0.04em;
     font-size: clamp(2.1rem, 4.2vw, 3.2rem);
     line-height: 1.06;
     color: var(--text-primary);
 }

 .help-center-subtitle {
     margin: 0 0 16px;
     font-size: 1.05rem;
     line-height: 1.6;
     color: rgba(71, 85, 105, 0.96);
 }

 .help-center-search {
     position: relative;
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 14px;
     border-radius: 16px;
     background: rgba(255, 255, 255, 0.92);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
 }

 .help-center-search-icon {
     width: 36px;
     height: 36px;
     border-radius: 12px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: rgba(79, 70, 229, 0.10);
     color: rgba(79, 70, 229, 1);
     flex-shrink: 0;
 }

 .help-center-search-input {
     width: 100%;
     border: none;
     outline: none;
     background: transparent;
     color: rgba(15, 23, 42, 0.92);
     font-weight: 600;
     font-size: 1rem;
 }

 .help-center-search-input::placeholder {
     color: rgba(100, 116, 139, 0.85);
     font-weight: 550;
 }

 .help-center-search-clear {
     border: none;
     background: rgba(241, 245, 249, 1);
     color: rgba(30, 41, 59, 0.9);
     border-radius: 12px;
     width: 36px;
     height: 36px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: transform 160ms ease, background 160ms ease;
 }

 .help-center-search-clear:hover {
     transform: translateY(-1px);
     background: rgba(226, 232, 240, 1);
 }

 .help-center-search-meta {
     margin-top: 10px;
     font-size: 0.92rem;
     color: rgba(100, 116, 139, 0.95);
     font-weight: 650;
 }

 .help-center-hero-panel {
     display: flex;
     justify-content: flex-end;
 }

 .help-center-hero-panel-card {
     width: 100%;
     border-radius: 22px;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.72) 100%);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 28px 90px rgba(15, 23, 42, 0.10);
     padding: 18px;
 }

 .help-center-hero-panel-title {
     font-weight: 900;
     color: rgba(15, 23, 42, 0.92);
     letter-spacing: -0.02em;
     margin-bottom: 10px;
 }

 .help-center-hero-panel-list {
     display: grid;
     gap: 10px;
 }

 .help-center-hero-panel-item {
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 650;
     color: rgba(30, 41, 59, 0.88);
 }

 .help-center-hero-panel-item .iconoir-check-circle {
     color: rgba(16, 185, 129, 1);
 }

 .help-center-section {
     padding: 8px 0 64px;
 }

 .help-center-no-results {
     border-radius: 22px;
     background: rgba(255, 255, 255, 0.88);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 22px 80px rgba(15, 23, 42, 0.08);
     padding: 18px;
     margin: 18px 0 22px;
 }

 .help-center-no-results-title {
     font-weight: 950;
     letter-spacing: -0.02em;
     color: rgba(15, 23, 42, 0.92);
 }

 .help-center-no-results-sub {
     margin-top: 6px;
     color: rgba(71, 85, 105, 0.95);
     font-weight: 600;
 }

 .help-center-mail {
     font-weight: 800;
     color: rgba(79, 70, 229, 1);
     text-decoration: none;
 }

 .help-center-mail:hover {
     text-decoration: underline;
 }

 .help-center-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 14px;
 }

 .help-center-topic {
     border-radius: 22px;
     background: rgba(255, 255, 255, 0.84);
     border: 1px solid rgba(226, 232, 240, 0.95);
     box-shadow: 0 18px 70px rgba(15, 23, 42, 0.08);
     padding: 18px;
     overflow: hidden;
 }

 .help-center-topic-header {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
 }

 .help-center-topic-icon {
     width: 46px;
     height: 46px;
     border-radius: 16px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: rgba(79, 70, 229, 0.10);
     color: rgba(79, 70, 229, 1);
     flex-shrink: 0;
 }

 .help-center-topic-title {
     margin: 0;
     font-weight: 950;
     letter-spacing: -0.02em;
     color: rgba(15, 23, 42, 0.92);
     font-size: 1.15rem;
 }

 .help-center-topic-count {
     margin-top: 2px;
     font-weight: 700;
     color: rgba(100, 116, 139, 0.95);
     font-size: 0.9rem;
 }

 .help-center-faq {
     display: grid;
     gap: 10px;
 }

 .help-center-faq-item {
     border-radius: 16px;
     background: rgba(248, 250, 252, 0.75);
     border: 1px solid rgba(226, 232, 240, 0.9);
     overflow: hidden;
 }

 .help-center-faq-q {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     border: none;
     background: transparent;
     padding: 12px 12px;
     text-align: left;
 }

 .help-center-faq-q-text {
     font-weight: 800;
     color: rgba(15, 23, 42, 0.92);
     line-height: 1.35;
 }

 .help-center-faq-chevron {
     width: 34px;
     height: 34px;
     border-radius: 12px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: rgba(226, 232, 240, 0.8);
     color: rgba(30, 41, 59, 0.9);
     transition: transform 180ms ease;
     flex-shrink: 0;
 }

 .help-center-faq-chevron.is-open {
     transform: rotate(180deg);
 }

 .help-center-faq-a {
     padding: 0 12px 12px;
 }

 .help-center-faq-a p {
     margin: 0;
     color: rgba(71, 85, 105, 0.96);
     font-weight: 600;
     line-height: 1.6;
 }

 @media (max-width: 920px) {
     .help-center-hero-inner {
         grid-template-columns: 1fr;
     }

     .help-center-hero-panel {
         justify-content: flex-start;
     }

     .help-center-grid {
         grid-template-columns: 1fr;
     }
 }

 @media (prefers-reduced-motion: reduce) {
     .hp-reveal {
         transition: none;
         transform: none;
         opacity: 1;
     }

     .hp-modern-feature-card[data-scroll-focus],
     .hp-modern-provider-card[data-scroll-focus],
     .pricing-modern-card[data-scroll-focus] {
         transform: none;
         opacity: 1;
         filter: none;
         transition: none;
     }
 }
