﻿:root {
    --bg-dark: #0b0e13;
    --bg-dark-2: #11151c;
    --card-bg: #0f131a;
    --accent: #f5b62e;
    --text-main: #ffffff;
    --text-muted: #a1a7b3;
    --border-soft: rgba(255,255,255,0.08);
    --transition: all 0.3s ease;
}

/* Light Mode Variables */
[data-theme="light"] {
    --bg-dark: #f5f7fa;
    --bg-dark-2: #ffffff;
    --card-bg: #ffffff;
    --accent: #f5b62e;
    --text-main: #1a1f29;
    --text-muted: #6b7280;
    --border-soft: rgba(0,0,0,0.08);
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
}

body {
    background: 
        linear-gradient(rgba(11, 14, 19, 0.85), rgba(11, 14, 19, 0.85)),
        url('/images/chess-background.jpg') center center/cover no-repeat fixed,
        radial-gradient(1200px 600px at top center, #1a1f29 0%, var(--bg-dark) 60%);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light mode background */
[data-theme="light"] body {
    background: 
        linear-gradient(rgba(245, 247, 250, 0.92), rgba(245, 247, 250, 0.92)),
        url('/images/chess-background.jpg') center center/cover no-repeat fixed,
        radial-gradient(1200px 600px at top center, #e5e7eb 0%, #f5f7fa 60%);
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================= NAVBAR ================= */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10,13,18,0.95), rgba(10,13,18,0.85));
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

[data-theme="light"] header {
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav {
    max-width: 1200px;
    margin: auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 20px;
    z-index: 101;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    color: var(--text-muted);
}

.nav-links a {
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-soft);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: rgba(245, 182, 46, 0.1);
    border-color: var(--accent);
    transform: rotate(20deg);
}

.theme-toggle i {
    transition: transform 0.3s ease;
}

.theme-toggle:active i {
    transform: scale(0.9);
}

/* Mobile theme toggle */
.mobile-theme-toggle {
    width: 100%;
    border-radius: 10px;
    height: auto;
    padding: 12px 16px;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.mobile-theme-toggle span {
    font-size: 14px;
    font-weight: 500;
}

.btn {
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-google,
.btn-facebook {
    width: 100%;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    transition: var(--transition);
}

.btn-google {
    background: #ffffff;
    color: #222;
    border: 1px solid #d8dce6;
}

.btn-google:hover {
    background: #f5f5f5;
    border-color: #b8c0cc;
}

.btn-facebook {
    background: #1877f2;
    color: #ffffff;
    border: 1px solid #1877f2;
}

.btn-facebook:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.btn-primary {
    background: var(--accent);
    color: #111;
}

.btn-outline {
    border-color: var(--border-soft);
    color: var(--text-main);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-soft);
    z-index: 99;
    padding: 80px 30px 40px;
    overflow-y: auto;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-soft);
}

.mobile-nav-links a.active {
    color: var(--accent);
    font-weight: 500;
}

.mobile-nav-links a:hover {
    color: var(--text-main);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-actions .btn {
    width: 100%;
    text-align: center;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
}

/* ================= ENHANCED HERO SECTION ================= */
.hero-enhanced {
    position: relative;
    padding: 80px 24px 100px;
    max-width: 1280px;
    width: min(100%, 1280px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-background {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, rgba(245, 182, 46, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: landing-float 8s ease-in-out infinite;
    z-index: 0;
}

.hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: slideInRight 0.8s ease-out;
    justify-self: end;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.landing-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes landing-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    position: relative;
    z-index: 1;
}

.landing-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 182, 46, 0.1);
    border: 1px solid rgba(245, 182, 46, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-hero-badge i {
    font-size: 14px;
}

.landing-hero-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-main);
    animation: slideInUp 0.8s ease-out;
    max-width: 680px;
}

.landing-title-line {
    display: block;
}

.landing-highlight {
    background: linear-gradient(135deg, #f5b62e 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.landing-hero-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    animation: slideInUp 1s ease-out 0.1s both;
}

.hero-actions-enhanced {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: slideInUp 1.2s ease-out 0.2s both;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-large i {
    font-size: 18px;
}

.btn-primary.btn-large {
    background: linear-gradient(135deg, #f5b62e 0%, #ff9800 100%);
    color: #111;
    box-shadow: 0 10px 30px rgba(245, 182, 46, 0.3);
}

.btn-primary.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245, 182, 46, 0.4);
}

.btn-outline.btn-large {
    border: 2px solid var(--border-soft);
    color: var(--text-main);
    background: transparent;
}

.btn-outline.btn-large:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    color: var(--accent);
}

.stats-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    animation: slideInUp 1.4s ease-out 0.3s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 182, 46, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(245, 182, 46, 0.1);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 182, 46, 0.2) 0%, rgba(255, 152, 0, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.landing-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.login-card-enhanced {
    background: linear-gradient(180deg, rgba(20, 25, 35, 0.95), rgba(15, 19, 26, 0.95));
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.login-card-enhanced:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.login-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.login-card-header i {
    color: var(--accent);
    font-size: 20px;
}

.login-card-enhanced h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.login-card-enhanced p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.btn-block {
    width: 100%;
    margin-bottom: 12px;
}

.login-card-enhanced small {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
}

.login-card-enhanced small i {
    color: var(--accent);
}

/* ================= FEATURES SECTION ================= */
.features-section {
    padding: 120px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(245, 182, 46, 0.03) 100%);
}

.landing-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.landing-section-header h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-main);
}

.landing-section-header h2 span {
    background: linear-gradient(135deg, #f5b62e 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-section-header .lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    background: rgba(15, 19, 26, 1);
    box-shadow: 0 20px 60px rgba(245, 182, 46, 0.1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 12px;
}

/* ================= HOW IT WORKS SECTION ================= */
.how-it-works {
    padding: 120px 24px;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    column-gap: 40px;
    row-gap: 40px;
    align-items: center;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--accent) 75%, transparent 100%);
    z-index: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    z-index: 1;
}

.step-arrow i {
    display: inline-block;
}

.step-card {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    background: rgba(15, 19, 26, 1);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f5b62e 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: #111;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-icon {
    font-size: 40px;
    color: var(--accent);
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .steps-grid::before,
    .step-arrow {
        display: none;
    }
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
    padding: 120px 24px;
    background: linear-gradient(180deg, rgba(245, 182, 46, 0.03) 0%, transparent 100%);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 36px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    background: rgba(15, 19, 26, 1);
    box-shadow: 0 20px 60px rgba(245, 182, 46, 0.1);
}

.testimonial-stars {
    font-size: 16px;
    color: #fbbf24;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    display: inline-block;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f5b62e 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #111;
    font-size: 14px;
}

.author-name {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}

.author-title {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
}

/* ================= FINAL CTA SECTION ================= */
.final-cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, rgba(245, 182, 46, 0.15) 0%, rgba(255, 152, 0, 0.08) 100%);
    border-top: 1px solid rgba(245, 182, 46, 0.2);
    border-bottom: 1px solid rgba(245, 182, 46, 0.2);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-main);
}

.final-cta p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================= MISSION SECTION ENHANCED ================= */
.mission-section-enhanced {
    padding: 120px 24px;
}

.mission-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    background: rgba(15, 19, 26, 1);
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent);
}

.mission-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* ================= HERO SECTIONS (OLD) ================= */
.hero {
    max-width: 1200px;
    margin: auto;
    padding: 80px 24px 100px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.stats {
    display: flex;
    gap: 48px;
    margin-top: 20px;
}

.stat h3 {
    color: var(--accent);
    font-size: 28px;
}

.stat span {
    font-size: 13px;
    color: var(--text-muted);
}

.login-card {
    background: linear-gradient(180deg, rgba(20, 25, 35, 0.9), rgba(15, 19, 26, 0.9));
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .login-card {
    background: var(--card-bg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.login-card h3 {
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
}

.login-card button {
    width: 100%;
    margin-bottom: 14px;
}

.login-card small {
    color: var(--text-muted);
    display: block;
    text-align: center;
    margin-top: 12px;
}

/* About Hero */
.about-hero {
    padding: 100px 24px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero h1 span {
    color: var(--accent);
}

.about-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ================= SECTIONS ================= */
.section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 24px;
}

.section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 12px;
}

.section h2 span {
    color: var(--accent);
}

.section p.lead {
    text-align: center;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 60px;
}

/* Mission Section */
.mission-section {
    padding: 100px 24px;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
}

.mission-text h2 span {
    color: var(--accent);
}

.mission-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-stat h3 {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 10px;
}

.mission-stat p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Values Section */
.values-section {
    padding: 100px 24px;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 12px;
}

.values-section h2 span {
    color: var(--accent);
}

.values-section p.lead {
    text-align: center;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #111;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 24px;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 12px;
}

.team-section h2 span {
    color: var(--accent);
}

.team-section p.lead {
    text-align: center;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.member-role {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    color: var(--text-muted);
    font-size: 18px;
    transition: var(--transition);
}

.member-social a:hover {
    color: var(--accent);
}

/* ================= GRIDS ================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 28px;
    min-height: 180px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .feature {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

[data-theme="light"] .feature:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.feature h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.feature p {
    color: var(--text-muted);
    font-size: 14px;
}

.feature img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 16px;
    object-fit: cover;
}

/* ================= COURSES ================= */
.courses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.course-card {
    background: linear-gradient(135deg, rgba(20, 25, 35, 0.95), rgba(15, 19, 26, 0.95));
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f5b62e, #ff9800);
}

.course-card:nth-child(2)::before {
    background: linear-gradient(90deg, #2196f3, #00bcd4);
}

.course-card:nth-child(3)::before {
    background: linear-gradient(90deg, #4caf50, #8bc34a);
}

[data-theme="light"] .course-card {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(245, 182, 46, 0.15);
}

[data-theme="light"] .course-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.course-image {
    height: 180px;
    background: #222;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-body {
    padding: 28px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-body h4 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
}

.course-body p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
}

.course-meta {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 0;
    display: flex;
    gap: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px 25px 25px;
    gap: 16px;
    border-top: 1px solid var(--border-soft);
    margin-top: auto;
    padding-top: 20px;
}

.price {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    flex: 1;
    text-transform: capitalize;
}

.course-footer .btn {
    flex: 1;
}

/* ================= AUTH PAGES ================= */
.auth-section {
    padding: 100px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    background: rgba(15, 19, 26, 0.9);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Social Login Primary Section */
.social-login-primary {
    margin-bottom: 30px;
}

.social-login-header h3 {
    text-align: center;
    color: var(--text-main);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-buttons-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-google-large,
.btn-facebook-large {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid transparent;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-google-large {
    background: #ffffff;
    color: #222;
    border-color: #d8dce6;
}

.btn-google-large:hover {
    background: #f5f5f5;
    border-color: #b8c0cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn-facebook-large {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
}

.btn-facebook-large:hover {
    background: #166fe5;
    border-color: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-google-large i,
.btn-facebook-large i {
    font-size: 20px;
}

/* Divider Section */
.divider-section {
    display: flex;
    align-items: center;
    margin: 30px 0;
    position: relative;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--border-soft);
}

.divider-text {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.divider-text span {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.show-traditional-btn {
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.show-traditional-btn:hover {
    background: rgba(245, 182, 46, 0.1);
    color: #d4941f;
}

.show-traditional-btn.active {
    background: rgba(245, 182, 46, 0.15);
    color: #d4941f;
}

.show-traditional-btn i {
    font-size: 12px;
}

/* Manual Registration Toggle */
.manual-registration-toggle {
    text-align: center;
    margin: 30px 0;
}

.show-manual-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.show-manual-btn:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-main);
}

.show-manual-btn i {
    font-size: 12px;
}

/* Registration Steps */
.registration-step {
    animation: slideDown 0.3s ease-out;
}

.step-header {
    text-align: center;
    margin-bottom: 30px;
}

.step-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.step-header p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: space-between;
}

.form-actions .btn {
    flex: 1;
    max-width: 140px;
}

.form-actions .btn-outline {
    background: rgba(255,255,255,0.05);
    border-color: var(--border-soft);
    color: var(--text-main);
}

.form-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.form-actions .btn-primary {
    background: var(--accent);
    color: #111;
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 182, 46, 0.3);
}

.onboarding-container4 {
    min-height: calc(100vh - 140px);
    padding: 60px 20px;
    background: var(--bg-main);
}

.onboarding-wrapper {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(9, 13, 22, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 46px 42px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.onboarding-header {
    text-align: center;
    margin-bottom: 40px;
}

.onboarding-header h1 {
    font-size: 34px;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.onboarding-header p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 18px;
}

.progress-bar {
    width: 240px;
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-bar .progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), rgba(245, 182, 46, 0.8));
    border-radius: 999px;
    transition: width 0.35s ease;
}

.step-indicator {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.pricing-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.rate-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.rate-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(245, 182, 46, 0.14);
    display: grid;
    place-items: center;
    color: var(--accent);
    margin-bottom: 18px;
}

.rate-icon i {
    font-size: 22px;
}

.rate-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.rate-card p {
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.7;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.input-wrapper .currency,
.input-wrapper .per-hour {
    color: var(--text-main);
    font-weight: 700;
}

.input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-main);
    font-size: 18px;
    min-width: 0;
}

.input-wrapper input:focus {
    outline: none;
}

.rate-card small {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 13px;
}

.rate-estimate {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rate-estimate p {
    margin: 0;
    color: var(--text-main);
    font-size: 15px;
}

.rate-estimate .estimate {
    color: #ffffff;
    font-weight: 700;
}

.earnings-projection {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
}

.earnings-projection h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--text-main);
}

.projection-details {
    display: grid;
    gap: 14px;
}

.projection-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 15px;
}

.projection-row.bold {
    color: var(--text-main);
    font-weight: 700;
}

.projection-row.highlight {
    color: var(--accent);
    font-weight: 700;
}

.form-actions {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    justify-content: space-between;
}

.form-actions .btn {
    flex: 1;
    max-width: 180px;
}

@media (max-width: 880px) {
    .pricing-section {
        grid-template-columns: 1fr;
    }

    .onboarding-wrapper {
        padding: 32px;
    }
}

@media (max-width: 560px) {
    .input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .input-wrapper .per-hour {
        margin-left: auto;
    }
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label,
.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.card,
.auth-card {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.card-header,
.auth-header {
    background: linear-gradient(180deg, rgba(17, 21, 28, 0.95), rgba(14, 18, 24, 0.95));
    border-bottom: 1px solid var(--border-soft);
    padding: 22px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.card-header h2,
.auth-header h1 {
    color: var(--text-main);
}

.card-body,
.auth-card-body {
    padding: 24px;
}

.form-control,
.form-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 14px;
    transition: var(--transition);
}

.form-control::placeholder,
.form-select option {
    color: var(--text-muted);
    opacity: 0.8;
}

textarea.form-control {
    width: 100%;
    display: block;
    min-height: 160px;
    resize: vertical;
}

.form-row .form-group.full-width textarea.form-control {
    width: 100%;
    max-width: 100%;
}


.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 182, 46, 0.15);
}

.form-section {
    display: grid;
    gap: 20px;
}

.section-title {
    margin-top: 30px;
    font-size: 20px;
    color: var(--text-main);
}

.section-description {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 680px;
    line-height: 1.7;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-row .form-group.full-width {
    grid-column: 1 / -1;
    width: 100%;
}

.form-group.full-width,
.onboarding-wrapper .form-group {
    width: 100%;
}

.onboarding-wrapper .form-group.full-width,
.onboarding-wrapper .form-group.full-width textarea.form-control,
.onboarding-wrapper .form-group.full-width input.form-control,
.onboarding-wrapper .form-group.full-width select.form-select,
.onboarding-wrapper textarea.form-control,
.onboarding-wrapper input.form-control,
.onboarding-wrapper select.form-select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.validation-summary {
    padding: 16px 18px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: rgba(220, 53, 69, 0.12);
    color: var(--text-danger, #f8d7da);
    border: 1px solid rgba(220, 53, 69, 0.3);
    font-size: 14px;
}

.validation-summary ul {
    margin: 0;
    padding-left: 18px;
}

    .profile-preferences-section .section-header,
    .profile-edit-section .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 24px;
    }

    .preferences-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 16px;
        margin-bottom: 32px;
    }

    .preference-card {
        padding: 20px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .preference-card strong {
        display: block;
        margin-bottom: 8px;
        color: var(--text-main);
    }

    .profile-edit-form .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-edit-form .preferences-list {
        display: grid;
        gap: 12px;
    }

    .profile-edit-form .preference-checkbox {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .profile-edit-form .preference-checkbox input[type="checkbox"] {
        margin: 0;
    }

    .profile-edit-section .btn-outline {
        white-space: nowrap;
    }

    .profile-edit-content {
        max-width: 980px;
        margin: 0 auto;
        padding: 0;
    }

    .profile-edit-content .section-header {
        margin-bottom: 28px;
    }

    .profile-edit-content .form-section {
        margin-bottom: 32px;
    }

    .profile-edit-content .form-section h3 {
        margin-bottom: 18px;
    }

    .profile-edit-content .form-group label {
        display: block;
        margin-bottom: 10px;
        color: var(--text-main);
        font-weight: 600;
    }

.field-note {
    display: block;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 13px;
}

.onboarding-container .schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.onboarding-container .day-schedule {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.onboarding-container .day-schedule h4 {
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--text-main);
}

.onboarding-container .schedule-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.onboarding-container .schedule-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.onboarding-container .schedule-option:hover {
    background: rgba(245, 182, 46, 0.12);
    border-color: rgba(245, 182, 46, 0.25);
}

.onboarding-container .schedule-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.onboarding-container .schedule-option span {
    display: block;
    font-size: 14px;
}

.preferences-list {
    display: grid;
    gap: 12px;
}

.preference-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
}

.preference-checkbox:hover {
    background: rgba(245, 182, 46, 0.12);
    border-color: rgba(245, 182, 46, 0.25);
}

.preference-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.preference-checkbox .checkbox-custom {
    display: none;
}

.preference-checkbox span {
    font-size: 14px;
}

@media (max-width: 920px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions .btn {
        max-width: 100%;
    }
}

.registration-types {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.type-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: var(--bg-dark-2);
    cursor: pointer;
    transition: var(--transition);
}

.type-option.active {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(245, 182, 46, 0.14), #111827);
}

.type-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent);
    display: grid;
    place-items: center;
    color: #111;
    font-size: 16px;
    flex-shrink: 0;
}

.type-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.type-option strong {
    font-size: 15px;
    display: block;
    color: #fff;
}

.type-option p {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

.type-checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    min-width: 24px;
}

.btn-outline {
    background: rgba(255,255,255,0.05);
    border-color: var(--border-soft);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(245, 182, 46, 0.15);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.forgot-password {
    color: var(--accent);
    font-size: 14px;
    transition: var(--transition);
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
}

.divider {
    text-align: center;
    margin: 25px 0;
    color: var(--text-muted);
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 45%;
    height: 1px;
    background: var(--border-soft);
}

.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 45%;
    height: 1px;
    background: var(--border-soft);
}

.google-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    color: var(--text-main);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.google-btn:hover {
    background: rgba(255,255,255,0.05);
}

.third-party-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.facebook-btn {
    width: 100%;
    padding: 14px;
    background: #1877f2;
    border: 1px solid #1877f2;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.facebook-btn:hover {
    background: #166fe5;
}

.registration-step {
    display: none;
}

.registration-step.active {
    display: block;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.form-actions .btn-outline {
    flex: 1;
}

.form-actions .btn-primary {
    flex: 2;
}

.auth-switch {
    text-align: center;
    margin-top: 25px;
    color: var(--text-muted);
}

.auth-switch a {
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition);
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Registration Types */
.registration-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.type-option {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.type-option:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
}

.type-option.active {
    border-color: var(--accent);
    background: rgba(245, 182, 46, 0.05);
}

.type-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
    color: #111;
}

.type-option h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent);
}

.type-option p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* ================= LEGAL PAGES ================= */
.legal-section {
    padding: 100px 24px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 16px;
}

.legal-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-nav {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.legal-nav h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

.legal-nav ul {
    list-style: none;
}

.legal-nav ul li {
    margin-bottom: 10px;
}

.legal-nav ul li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
    padding: 5px 0;
    display: block;
}

.legal-nav ul li a:hover {
    color: var(--accent);
}

.legal-text {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.legal-text section {
    margin-bottom: 40px;
}

.legal-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent);
}

.legal-text h3 {
    font-size: 20px;
    margin: 25px 0 15px;
}

.legal-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 15px 0 15px 20px;
}

.legal-text ul li {
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

/* ================= DRAWER ================= */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    top: 0;
    right: -500px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    border-left: 1px solid var(--border-soft);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
}

.drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(17, 21, 28, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.drawer-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: var(--accent);
    background: rgba(245, 182, 46, 0.1);
    transform: rotate(90deg);
}

.close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

.drawer-content {
    position: relative;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-soft) transparent;
}

.drawer-content::-webkit-scrollbar {
    width: 6px;
}

.drawer-content::-webkit-scrollbar-track {
    background: transparent;
}

.drawer-content::-webkit-scrollbar-thumb {
    background: var(--border-soft);
    border-radius: 3px;
}

.form-page {
    width: 100%;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-page.active {
    display: block;
}

.form-page.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-btn {
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.back-btn:hover {
    background: rgba(245, 182, 46, 0.1);
    gap: 12px;
}

.back-btn i {
    font-size: 16px;
}

/* Enhanced Drawer Form Styles */
.drawer .form-group {
    margin-bottom: 20px;
}

.drawer .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.2px;
}

.drawer .form-control {
    width: 100%;
    padding: 14px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.drawer .form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 182, 46, 0.1), inset 0 1px 0 rgba(255,255,255,0.05);
    transform: translateY(-1px);
}

.drawer .form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.drawer .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.drawer .form-row .form-group {
    margin-bottom: 0;
}

.drawer .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
    padding: 8px 0;
}

.drawer .checkbox-label:hover {
    color: var(--text-main);
}

.drawer .checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
    margin: 0;
}

.drawer .checkbox-label a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.drawer .checkbox-label a:hover {
    text-decoration: underline;
    color: #d4941f;
}

.drawer .forgot-password {
    display: block;
    text-align: right;
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.drawer .forgot-password:hover {
    color: #d4941f;
    text-decoration: underline;
}

.drawer .signup-link {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 14px;
    padding: 15px;
    border-top: 1px solid var(--border-soft);
}

.drawer .signup-link a {
    color: var(--accent);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.drawer .signup-link a:hover {
    background: rgba(245, 182, 46, 0.1);
    color: #d4941f;
}

/* Enhanced Registration Types */
.drawer .registration-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.drawer .type-option {
    background: var(--card-bg);
    border: 2px solid var(--border-soft);
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.drawer .type-option:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 148, 31, 0.2);
}

.drawer .type-option.active {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(212, 148, 31, 0.1) 0%, rgba(212, 148, 31, 0.05) 100%);
    box-shadow: 0 8px 20px rgba(212, 148, 31, 0.3);
}

.drawer .type-option.active::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.drawer .type-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent) 0%, #b8771a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bg-dark);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.drawer .type-option:hover .type-icon {
    transform: scale(1.1) rotate(5deg);
}

.drawer .type-option.active .type-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 148, 31, 0.4);
}

.drawer .type-option h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text-main);
    font-weight: 600;
}

.drawer .type-option p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Enhanced Buttons */
.drawer .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.drawer .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;
}

.drawer .btn:hover::before {
    left: 100%;
}

.drawer .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #d4941f 100%);
    color: #111;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 182, 46, 0.3);
}

.drawer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 182, 46, 0.4);
}

.drawer .btn-outline {
    border: 1px solid var(--border-soft);
    color: var(--text-main);
    background: transparent;
}

.drawer .btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--accent);
}

/* Enhanced Divider */
.drawer .divider {
    text-align: center;
    margin: 25px 0;
    color: var(--text-muted);
    position: relative;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.drawer .divider::before,
.drawer .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-soft), transparent);
    width: 40%;
}

.drawer .divider::before {
    left: 0;
}

.drawer .divider::after {
    right: 0;
}

/* Enhanced Social Buttons */
.drawer .google-btn,
.drawer .facebook-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.drawer .google-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 182, 46, 0.2);
}

.drawer .facebook-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.drawer .google-btn i,
.drawer .facebook-btn i {
    font-size: 18px;
    margin-right: 8px;
}

/* Enhanced Alert Messages */
.drawer .alert {
    animation: slideIn 0.3s ease;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.drawer .alert i {
    font-size: 16px;
    flex-shrink: 0;
}

.drawer .alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.drawer .alert-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.drawer .alert-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.drawer .alert-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* Form Error Messages */
.drawer .form-error-message {
    animation: shake 0.5s ease;
    border-left: 4px solid var(--accent);
    padding-left: 16px;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Loading States */
.drawer .btn.loading {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
}

.drawer .btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid #111;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Drawer */
@media (max-width: 768px) {
    .drawer {
        width: 100%;
        right: -100%;
    }
    
    .drawer .type-option {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .drawer .type-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .drawer .type-option h4 {
        font-size: 14px;
    }
    
    .drawer .type-option p {
        font-size: 12px;
    }
    
    .drawer .form-row {
        grid-template-columns: 1fr;
    }
    
    .drawer .divider::before,
    .drawer .divider::after {
        width: 30%;
    }
}

@media (max-width: 480px) {
    .drawer {
        width: 100%;
        right: -100%;
    }
    
    .drawer .drawer-content {
        padding: 20px 20px 40px;
    }
    
    .drawer .drawer-header {
        padding: 20px 20px 15px;
    }
    
    .drawer .drawer-header h2 {
        font-size: 20px;
    }
}

/* ================= FOOTER ================= */
.main-footer {
    background: rgba(17, 21, 28, 0.9);
    border-top: 1px solid var(--border-soft);
    padding: 60px 24px 40px;
    margin-top: auto;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .main-footer {
    background: var(--bg-dark-2);
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-brand h3 span {
    color: var(--accent);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.contact-info li i {
    color: var(--accent);
    width: 16px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .legal-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legal-nav {
        position: static;
        order: 2;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .grid-3,
    .courses,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide desktop navigation on mobile */
    .nav-links,
    .nav-actions {
        display: none;
    }

    /* Show mobile menu toggle */
    .menu-toggle {
        display: block;
    }

    .drawer {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1,
    .about-hero h1 {
        font-size: 36px;
    }
    
    .section h2,
    .mission-text h2,
    .values-section h2,
    .team-section h2 {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-summary h1 {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero,
    .about-hero,
    .section,
    .mission-section,
    .values-section,
    .team-section,
    .legal-section,
    .auth-section {
        padding: 60px 20px;
    }
    
    .hero h1,
    .about-hero h1 {
        font-size: 28px;
    }
    
    .auth-card {
        padding: 30px 20px;
    }
    
    .legal-text {
        padding: 30px 20px;
    }
}

/* ================= BACKGROUND RESPONSIVE ================= */
@media (max-width: 768px) {
    body {
        background: 
            linear-gradient(rgba(11, 14, 19, 0.9), rgba(11, 14, 19, 0.9)),
            url('/images/chess-background.jpg') center center/cover no-repeat fixed,
            radial-gradient(1200px 600px at top center, #1a1f29 0%, var(--bg-dark) 60%);
    }
}

@media (max-width: 480px) {
    body {
        background: 
            linear-gradient(rgba(11, 14, 19, 0.95), rgba(11, 14, 19, 0.95)),
            url('/images/chess-background.jpg') center center/cover no-repeat,
            radial-gradient(1200px 600px at top center, #1a1f29 0%, var(--bg-dark) 60%);
        background-attachment: scroll;
    }
}

/* ================= DASHBOARD ================= */
.page-section {
    flex: 1;
    width: 100%;
}

.dashboard-hero {
    background: linear-gradient(135deg, rgba(245, 182, 46, 0.08), rgba(17, 25, 39, 0.5));
    padding: 80px 24px;
    border-bottom: 1px solid var(--border-soft);
}

.dashboard-summary {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-summary h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.dashboard-summary > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(15, 19, 26, 0.6);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f5b62e, #ff9800);
}

.stat-card:nth-child(1)::before {
    background: linear-gradient(90deg, #f5b62e, #ff9800);
}

.stat-card:nth-child(2)::before {
    background: linear-gradient(90deg, #2196f3, #00bcd4);
}

.stat-card:nth-child(3)::before {
    background: linear-gradient(90deg, #4caf50, #8bc34a);
}

.stat-card:nth-child(4)::before {
    background: linear-gradient(90deg, #9c27b0, #e91e63);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(15, 19, 26, 0.9);
    box-shadow: 0 10px 30px rgba(245, 182, 46, 0.2);
}

.stat-card strong {
    display: block;
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 700;
}

.stat-card span {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="light"] .dashboard-hero {
    background: linear-gradient(135deg, rgba(245, 182, 46, 0.05), rgba(255, 255, 255, 0.5));
}

[data-theme="light"] .stat-card {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .stat-card:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dashboard-section {
    padding: 100px 24px;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 60px;
}

.dashboard-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dashboard-header h1 span {
    color: var(--accent);
}

.dashboard-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #111;
}

.stat-info h3 {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-card {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.section-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.view-all {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.view-all:hover {
    text-decoration: underline;
}

.course-progress-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    transition: var(--transition);
}

.course-progress-item:hover {
    border-color: var(--accent);
}

.course-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.course-thumbnail {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #111;
}

.course-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.course-details p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.progress-bar {
    width: 200px;
    height: 6px;
    background: var(--border-soft);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: var(--text-muted);
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #111;
}

.achievement-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.achievement-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 5px;
}

.achievement-date {
    font-size: 12px;
    color: var(--text-muted);
}

.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.session-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
}

.session-time {
    text-align: center;
    min-width: 60px;
}

.session-time .time {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
}

.session-time .date {
    font-size: 12px;
    color: var(--text-muted);
}

.session-info h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.session-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.recommended-courses {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mini-course-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.mini-course-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.mini-course-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #111;
}

.mini-course-info h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.mini-course-info p {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

/* Dashboard Responsive */
@media (max-width: 1024px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .courses {
        grid-template-columns: 1fr;
    }
    
    .course-progress-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .course-info {
        width: 100%;
    }
    
    .progress-bar {
        width: 100%;
    }

    .dashboard-hero {
        padding: 60px 24px;
    }

    .dashboard-summary h1 {
        font-size: 28px;
    }

    .dashboard-summary > p {
        font-size: 14px;
    }
}
/* Alternative: Use a public chess image temporarily */
body.use-public-image {
    background: 
        linear-gradient(rgba(11, 14, 19, 0.85), rgba(11, 14, 19, 0.85)),
        url('https://images.unsplash.com/photo-1529699211952-734e80c4d42b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center/cover no-repeat fixed,
        radial-gradient(1200px 600px at top center, #1a1f29 0%, var(--bg-dark) 60%);
}

/* ================= THEME TRANSITION ================= */
body.theme-transitioning,
body.theme-transitioning * {
    transition: background-color 0.3s ease, 
                color 0.3s ease, 
                border-color 0.3s ease,
                box-shadow 0.3s ease !important;
}

/* Light mode specific adjustments */
[data-theme="light"] .btn-primary {
    background: var(--accent);
    color: #111;
    box-shadow: 0 2px 8px rgba(245, 182, 46, 0.3);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 4px 12px rgba(245, 182, 46, 0.4);
}

[data-theme="light"] .btn-outline {
    border-color: var(--border-soft);
    color: var(--text-main);
    background: transparent;
}

[data-theme="light"] .btn-outline:hover {
    background: rgba(0,0,0,0.05);
}

[data-theme="light"] .drawer {
    background: var(--bg-dark-2);
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}

[data-theme="light"] .mobile-menu {
    background: var(--bg-dark-2);
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}

[data-theme="light"] .form-control {
    background: var(--bg-dark);
    border-color: var(--border-soft);
    color: var(--text-main);
}

[data-theme="light"] .form-control:focus {
    border-color: var(--accent);
    background: var(--card-bg);
}

[data-theme="light"] .type-option {
    background: var(--bg-dark);
}

[data-theme="light"] .type-option:hover {
    background: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

[data-theme="light"] .value-card,
[data-theme="light"] .team-member,
[data-theme="light"] .stat-card,
[data-theme="light"] .section-card,
[data-theme="light"] .auth-card,
[data-theme="light"] .legal-text {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

[data-theme="light"] .value-card:hover,
[data-theme="light"] .team-member:hover,
[data-theme="light"] .stat-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

/* Accent color adjustments for light mode */
[data-theme="light"] .logo span,
[data-theme="light"] .nav-links a.active,
[data-theme="light"] h1 span,
[data-theme="light"] h2 span,
[data-theme="light"] .price,
[data-theme="light"] .stat h3,
[data-theme="light"] .value-icon,
[data-theme="light"] .stat-icon,
[data-theme="light"] .achievement-icon,
[data-theme="light"] .mini-course-icon,
[data-theme="light"] .course-thumbnail {
    color: var(--accent);
}

/* Ensure proper contrast in light mode */
[data-theme="light"] .course-image {
    background: #e5e7eb;
}

[data-theme="light"] .drawer-overlay,
[data-theme="light"] .mobile-menu-overlay {
    background: rgba(0,0,0,0.5);
}

/* Progress bar in light mode */
[data-theme="light"] .progress-bar {
    background: rgba(0,0,0,0.1);
}

/* Mobile theme toggle specific styles */
@media (max-width: 900px) {
    .theme-toggle:not(.mobile-theme-toggle) {
        display: none;
    }
}

@media (min-width: 901px) {
    .mobile-theme-toggle {
        display: none;
    }
}

/* ================= ADDITIONAL LIGHT MODE STYLES ================= */
[data-theme="light"] .course-progress-item,
[data-theme="light"] .achievement-item,
[data-theme="light"] .session-item,
[data-theme="light"] .mini-course-card,
[data-theme="light"] .contact-info {
    background: var(--bg-dark);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

[data-theme="light"] .course-progress-item:hover,
[data-theme="light"] .mini-course-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

[data-theme="light"] .google-btn {
    background: var(--bg-dark);
}

[data-theme="light"] .google-btn:hover {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

[data-theme="light"] .facebook-btn {
    background: #1877f2;
}

[data-theme="light"] .facebook-btn:hover {
    background: #166fe5;
}

/* Ensure hero sections have proper backgrounds in light mode */
[data-theme="light"] .hero,
[data-theme="light"] .about-hero,
[data-theme="light"] .section,
[data-theme="light"] .mission-section,
[data-theme="light"] .values-section,
[data-theme="light"] .team-section,
[data-theme="light"] .legal-section,
[data-theme="light"] .auth-section,
[data-theme="light"] .dashboard-section {
    background: transparent;
}

/* Ensure text readability in light mode */
[data-theme="light"] .legal-text h2,
[data-theme="light"] .legal-nav h3,
[data-theme="light"] .member-role,
[data-theme="light"] .type-option h3,
[data-theme="light"] .dashboard-header h1 span,
[data-theme="light"] .stat-info h3,
[data-theme="light"] .session-time .time,
[data-theme="light"] .mini-course-info p,
[data-theme="light"] .forgot-password,
[data-theme="light"] .auth-switch a,
[data-theme="light"] .view-all,
[data-theme="light"] .legal-nav ul li a:hover,
[data-theme="light"] .back-btn,
[data-theme="light"] .close-btn:hover {
    color: var(--accent);
}

/* Icon backgrounds in light mode */
[data-theme="light"] .value-icon,
[data-theme="light"] .stat-icon,
[data-theme="light"] .achievement-icon,
[data-theme="light"] .mini-course-icon,
[data-theme="light"] .course-thumbnail,
[data-theme="light"] .type-icon,
[data-theme="light"] .member-avatar {
    background: var(--accent);
    color: #111;
}

/* Divider in light mode */
[data-theme="light"] .divider::before,
[data-theme="light"] .divider::after {
    background: var(--border-soft);
}


/* ================= CONTACT US PAGE ================= */
.contact-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px 60px;
    text-align: center;
    position: relative;
}

.hero-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #d4941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: #111;
    box-shadow: 0 10px 30px rgba(245, 182, 46, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero h1 span {
    color: var(--accent);
}

.contact-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.hero-stat i {
    color: var(--accent);
    font-size: 18px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

[data-theme="light"] .info-card {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

[data-theme="light"] .info-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--accent);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #111;
    font-size: 16px;
}

.info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-text p {
    color: var(--text-muted);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: #111;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.contact-form-column {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #d4941f 100%);
}

[data-theme="light"] .contact-form-column {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-form-column h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-form-column > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-form-column textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.faq-section h2 span {
    color: var(--accent);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

[data-theme="light"] .faq-item {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 15px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.map-section h2 span {
    color: var(--accent);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .map-container {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.map-placeholder {
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
    color: var(--accent);
}

.map-placeholder span {
    font-size: 18px;
    font-weight: 500;
}

.location-info {
    padding: 40px;
}

.location-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.location-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.location-info strong {
    color: var(--text-main);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .hero-badge {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat {
        font-size: 13px;
    }
    
    .contact-form-column {
        padding: 30px 20px;
    }
    
    .faq-section,
    .map-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 20px 40px;
    }
    
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}


/* ================= COURSES PAGE ================= */
.courses-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Search Bar */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
}

.search-bar {
    width: 100%;
    padding: 16px 20px 16px 55px;
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 50px;
    color: var(--text-main);
    font-size: 16px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .search-bar {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.search-bar:focus {
    outline: none;
    border-color: var(--accent);
}

.search-bar::placeholder {
    color: var(--text-muted);
}

/* Filters Section */
.filters-section {
    margin-bottom: 40px;
}

.active-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent);
    color: #111;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.filter-tag .remove {
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
}

.filter-tag .remove:hover {
    transform: scale(1.2);
}

.clear-all {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.clear-all:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 25px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .filter-btn {
    background: var(--card-bg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.filter-btn:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--accent);
    color: #111;
    border-color: var(--accent);
}

.courses-count {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.courses-count span {
    color: var(--accent);
    font-weight: 600;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Enhanced Course Card */
.course-card {
    background: linear-gradient(180deg, rgba(20, 25, 35, 0.9), rgba(15, 19, 26, 0.9));
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
}

[data-theme="light"] .course-card {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

[data-theme="light"] .course-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: var(--accent);
    color: #111;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.course-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1f29 0%, #2a2f3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .course-image {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.course-image i {
    font-size: 60px;
    color: var(--accent);
    opacity: 0.3;
}

.course-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.instructor-avatar {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.instructor-name {
    font-size: 13px;
    color: var(--text-muted);
}

.course-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-main);
}

.course-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 15px;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-meta i {
    color: var(--accent);
}

.course-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 3px;
    color: var(--accent);
    font-size: 14px;
}

.rating-value {
    font-weight: 600;
    color: var(--text-main);
    font-size: 14px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 13px;
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-top: 1px solid var(--border-soft);
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.course-footer .btn {
    padding: 10px 20px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.no-results i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.no-results p {
    font-size: 16px;
}

/* Courses Page Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .active-filters {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .courses-page {
        padding: 60px 20px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .search-bar {
        font-size: 14px;
    }
}


/* ================= ALERT MESSAGES ================= */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert i {
    font-size: 18px;
    flex-shrink: 0;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

[data-theme="light"] .alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

[data-theme="light"] .alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(245, 182, 46, 0.15), rgba(255, 152, 0, 0.1));
    border: 1px solid rgba(245, 182, 46, 0.4);
    border-left: 4px solid var(--accent);
    color: var(--accent);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-warning strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

[data-theme="light"] .alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #2563eb;
}


/* ================= DRAWER FORM ENHANCEMENTS ================= */
.drawer .form-group {
    margin-bottom: 15px;
}

.drawer .form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
}

.drawer .form-control {
    width: 100%;
    padding: 12px 14px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 14px;
    transition: var(--transition);
}

.drawer .form-control:focus {
    outline: none;
    border-color: var(--accent);
}

.drawer .forgot-password {
    display: block;
    text-align: right;
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.drawer .forgot-password:hover {
    text-decoration: underline;
}

.drawer .signup-link {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.drawer .signup-link a {
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition);
}

.drawer .signup-link a:hover {
    text-decoration: underline;
}

.drawer .registration-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drawer .type-option {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer .type-option:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.drawer .type-option.active {
    border-color: var(--accent);
    background: rgba(245, 182, 46, 0.05);
}

.drawer .type-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #111;
    flex-shrink: 0;
}

.drawer .type-option h4 {
    font-size: 15px;
    margin: 0 0 3px 0;
    color: var(--text-main);
}

.drawer .type-option p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.drawer .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-muted);
}

.drawer .checkbox-label input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

.drawer .checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
}

.drawer .alert {
    font-size: 13px;
    padding: 12px 15px;
}

.drawer .alert i {
    font-size: 16px;
}

/* Drawer responsive */
@media (max-width: 600px) {
    .drawer {
        width: 100%;
        right: -100%;
    }
    
    .drawer .type-option {
        flex-direction: column;
        text-align: center;
    }
}


/* ================= ALERT MESSAGES ================= */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.alert i {
    font-size: 18px;
    flex-shrink: 0;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

[data-theme="light"] .alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

[data-theme="light"] .alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

[data-theme="light"] .alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #d97706;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

[data-theme="light"] .alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #2563eb;
}


/* ================= USER NAVIGATION ================= */
.user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 8px;
}

.user-link:hover {
    background: rgba(255,255,255,0.05);
    color: var(--accent);
}

[data-theme="light"] .user-link:hover {
    background: rgba(0,0,0,0.05);
}

.user-link i {
    font-size: 20px;
}

.user-link span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-actions form {
    display: inline-flex;
    margin: 0;
}

.nav-actions form button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


/* Registration Type Selection */
.registration-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.type-option {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.type-option:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 148, 31, 0.2);
}

.type-option.active {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(212, 148, 31, 0.1) 0%, rgba(212, 148, 31, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(212, 148, 31, 0.3);
}

.type-option.active::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.type-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, #b8771a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--bg-dark);
    transition: all 0.3s ease;
}

.type-option:hover .type-icon {
    transform: scale(1.1) rotate(5deg);
}

.type-option.active .type-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 148, 31, 0.4);
}

.type-option h4 {
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 600;
}

.type-option p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* Smooth form transitions */
.form-group {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Registration success message */
.alert-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success i {
    font-size: 18px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .registration-types {
        grid-template-columns: 1fr;
    }
    
    .type-option {
        padding: 16px;
    }
    
    .type-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/* ================= ONBOARDING FLOW ================= */
.onboarding-section {
    min-height: 100vh;
    padding: 60px 20px;
    background: var(--bg-main);
}

.onboarding-container {
    max-width: 900px;
    margin: 0 auto;
}

.onboarding-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(212, 148, 31, 0.3);
}

.progress-step.completed .step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
}

.progress-step.completed .step-number::after {
    content: '✓';
    position: absolute;
}

.progress-step span {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    max-width: 100px;
}

.progress-step.active span {
    color: var(--accent);
    font-weight: 500;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: var(--border-color);
    margin: 0 10px;
}

.onboarding-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.expertise-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.expertise-checkbox:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 182, 46, 0.4);
}

.expertise-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
}

.expertise-checkbox.selected,
.expertise-checkbox input[type="checkbox"]:checked + .checkbox-box {
    border-color: var(--accent);
    background: rgba(245, 182, 46, 0.15);
}

.expertise-checkbox .checkbox-box {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    display: grid;
    place-items: center;
    color: var(--accent);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.expertise-checkbox .checkbox-label {
    font-weight: 600;
    color: var(--text-main);
}

.onboarding-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.onboarding-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.onboarding-step h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.step-description {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 16px;
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.btn-back:hover {
    gap: 12px;
}

/* Profile Type Cards */
.profile-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.profile-type-card {
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.profile-type-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 148, 31, 0.2);
}

.profile-type-card.selected {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(212, 148, 31, 0.1) 0%, rgba(212, 148, 31, 0.05) 100%);
    box-shadow: 0 8px 20px rgba(212, 148, 31, 0.3);
}

.profile-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, #b8771a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--bg-dark);
}

.profile-type-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.profile-type-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.profile-type-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.profile-type-card ul li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-type-card ul li i {
    color: var(--accent);
}

/* Course Grid */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.course-option {
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.course-option:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 148, 31, 0.2);
}

.course-option.selected {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(212, 148, 31, 0.1) 0%, rgba(212, 148, 31, 0.05) 100%);
    box-shadow: 0 8px 20px rgba(212, 148, 31, 0.3);
}

.course-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.course-option h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.course-option p {
    color: var(--text-muted);
    font-size: 13px;
}

/* Experience Levels */
.experience-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.experience-card {
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.experience-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 148, 31, 0.2);
}

.experience-card.selected {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(212, 148, 31, 0.1) 0%, rgba(212, 148, 31, 0.05) 100%);
    box-shadow: 0 8px 20px rgba(212, 148, 31, 0.3);
}

.level-badge {
    font-size: 48px;
    margin-bottom: 15px;
}

.experience-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.experience-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Onboarding */
@media (max-width: 768px) {
    .onboarding-card {
        padding: 30px 20px;
    }
    
    .profile-types {
        grid-template-columns: 1fr;
    }
    
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-levels {
        grid-template-columns: 1fr;
    }
    
    .onboarding-progress {
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .progress-line {
        width: 40px;
    }
    
    .progress-step span {
        font-size: 11px;
        max-width: 80px;
    }
    
    /* Enhanced Hero Responsive */
    .hero-enhanced {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px 60px;
    }
    
    .hero-background {
        top: -30%;
        right: -50%;
        width: 600px;
        height: 600px;
    }
    
    .landing-hero-title {
        font-size: 36px;
    }
    
    .landing-hero-description {
        font-size: 16px;
    }
    
    .hero-actions-enhanced {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .stats-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .hero-right {
        gap: 24px;
    }
    
    .hero-image-container {
        aspect-ratio: 1;
    }
    
    /* Features Responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 28px 20px;
    }
    
    /* Steps Responsive */
    .steps-grid {
        gap: 24px;
    }
    
    /* Section Headers Responsive */
    .landing-section-header h2 {
        font-size: 32px;
    }
    
    .landing-section-header .lead {
        font-size: 16px;
    }
    
    /* Testimonials Responsive */
    .testimonials-grid {
        gap: 20px;
    }
    
    /* Final CTA Responsive */
    .final-cta h2 {
        font-size: 32px;
    }
    
    .final-cta p {
        font-size: 16px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    /* Mission Responsive */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
