/* Course Custom CSS - Airbnb Class Theme */

/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */
:root {
    /* Typography */
    --font-primary: "SukhumvitSet", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --letter-spacing-tight: -0.25px;
    --line-height-tight: 1.17em;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.8rem;
    --text-base: 0.9rem;
    --text-lg: 1rem;
    --text-xl: 1.1rem;
    --text-2xl: 1.3rem;
    --text-3xl: 1.8rem;
    --text-4xl: 2.5rem;
    
    /* Colors - Dark Theme Base */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-100: rgba(255, 255, 255, 0.1);
    --color-gray-200: rgba(255, 255, 255, 0.2);
    --color-gray-300: rgba(255, 255, 255, 0.3);
    --color-gray-400: rgba(255, 255, 255, 0.4);
    --color-gray-500: rgba(255, 255, 255, 0.5);
    --color-gray-600: rgba(255, 255, 255, 0.6);
    --color-gray-700: rgba(255, 255, 255, 0.7);
    --color-gray-800: rgba(255, 255, 255, 0.8);
    --color-text-muted: #ccc;
    
    /* Brand Colors */
    --color-primary: #8b5cf6;
    --color-primary-light: #a855f7;
    --color-primary-dark: #7c3aed;
    --color-primary-alpha-10: rgba(139, 92, 246, 0.1);
    --color-primary-alpha-20: rgba(139, 92, 246, 0.2);
    --color-primary-alpha-25: rgba(139, 92, 246, 0.25);
    --color-primary-alpha-30: rgba(139, 92, 246, 0.3);
    
    /* Status Colors */
    --color-success: #10b981;
    --color-success-light: #34d399;
    --color-warning: #f59e0b;
    --color-warning-light: #fbbf24;
    --color-danger: #ef4444;
    --color-danger-light: #dc2626;
    
    /* Gradients - Reduced intensity */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #9563f7 100%);
    --gradient-primary-subtle: linear-gradient(135deg, #8b5cf6 0%, #8f60f6 50%, #9563f7 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #18c794 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #f7a81b 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #f15454 100%);
    
    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --margin-bottom-default: 10px;
    
    /* Border Radius */
    --border-radius-sm: 6px;
    --border-radius-default: 8px;
    --border-radius-md: 10px;
    --border-radius-lg: 12px;
    --border-radius-xl: 15px;
    --border-radius-2xl: 20px;
    --border-radius-full: 50%;
    
    /* Glass Morphism Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-light: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-border-light: 1px solid rgba(255, 255, 255, 0.2);
    --glass-backdrop: blur(10px);
    --glass-backdrop-strong: blur(15px);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 0 0 3px rgba(139, 92, 246, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-cubic: cubic-bezier(0.4, 0.0, 0.2, 1);
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-header: 1001;
    --z-modal: 1050;
    --z-mobile-menu: 99999;
    
    /* Container Sizes */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;
}

/* ========================================
   UTILITY CLASSES - THEME SYSTEM
   ======================================== */

/* Glass Morphism Components */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
    border-radius: var(--border-radius-xl);
    padding: var(--space-8);
}

.glass-card-lg {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
    border-radius: var(--border-radius-2xl);
    padding: var(--space-10);
}

.glass-card-light {
    background: var(--glass-bg-light);
    backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border-light);
    border-radius: var(--border-radius-xl);
    padding: var(--space-8);
}

/* Button Utilities */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--color-white);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--border-radius-default);
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.15);
}

.btn-primary-subtle {
    background: var(--gradient-primary-subtle);
    border: none;
    color: var(--color-white);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--border-radius-default);
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary-subtle:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(139, 92, 246, 0.1);
}

.btn-secondary {
    background: var(--color-primary-alpha-10);
    border: 1px solid var(--color-primary-alpha-30);
    color: var(--color-primary);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--border-radius-default);
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--color-primary-alpha-20);
}

.btn-success {
    background: var(--gradient-success);
    border: none;
    color: var(--color-white);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--border-radius-default);
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

/* Text Utilities */
.text-white { color: var(--color-white) !important; }
.text-muted { color: var(--color-text-muted) !important; }
.text-primary { color: var(--color-primary) !important; }
.text-success { color: var(--color-success) !important; }
.text-warning { color: var(--color-warning) !important; }
.text-danger { color: var(--color-danger) !important; }

.text-xs { font-size: var(--text-xs) !important; }
.text-sm { font-size: var(--text-sm) !important; }
.text-base { font-size: var(--text-base) !important; }
.text-lg { font-size: var(--text-lg) !important; }
.text-xl { font-size: var(--text-xl) !important; }
.text-2xl { font-size: var(--text-2xl) !important; }
.text-3xl { font-size: var(--text-3xl) !important; }
.text-4xl { font-size: var(--text-4xl) !important; }

.font-weight-400 { font-weight: 400 !important; }
.font-weight-500 { font-weight: 500 !important; }
.font-weight-600 { font-weight: 600 !important; }
.font-weight-700 { font-weight: 700 !important; }

/* Spacing Utilities */
.p-1 { padding: var(--space-1) !important; }
.p-2 { padding: var(--space-2) !important; }
.p-3 { padding: var(--space-3) !important; }
.p-4 { padding: var(--space-4) !important; }
.p-5 { padding: var(--space-5) !important; }
.p-6 { padding: var(--space-6) !important; }
.p-8 { padding: var(--space-8) !important; }
.p-10 { padding: var(--space-10) !important; }

.m-1 { margin: var(--space-1) !important; }
.m-2 { margin: var(--space-2) !important; }
.m-3 { margin: var(--space-3) !important; }
.m-4 { margin: var(--space-4) !important; }
.m-5 { margin: var(--space-5) !important; }
.m-6 { margin: var(--space-6) !important; }
.m-8 { margin: var(--space-8) !important; }
.m-10 { margin: var(--space-10) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--space-1) !important; }
.mb-2 { margin-bottom: var(--space-2) !important; }
.mb-3 { margin-bottom: var(--space-3) !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mb-5 { margin-bottom: var(--space-5) !important; }
.mb-6 { margin-bottom: var(--space-6) !important; }
.mb-8 { margin-bottom: var(--space-8) !important; }

/* Border Radius Utilities */
.rounded-sm { border-radius: var(--border-radius-sm) !important; }
.rounded { border-radius: var(--border-radius-default) !important; }
.rounded-md { border-radius: var(--border-radius-md) !important; }
.rounded-lg { border-radius: var(--border-radius-lg) !important; }
.rounded-xl { border-radius: var(--border-radius-xl) !important; }
.rounded-2xl { border-radius: var(--border-radius-2xl) !important; }
.rounded-full { border-radius: var(--border-radius-full) !important; }

/* Flex Utilities */
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }

/* Background Utilities */
.bg-glass { background: var(--glass-bg) !important; }
.bg-glass-light { background: var(--glass-bg-light) !important; }
.bg-primary { background: var(--color-primary) !important; }
.bg-gradient-primary { background: var(--gradient-primary) !important; }
.bg-gradient-primary-subtle { background: var(--gradient-primary-subtle) !important; }
.bg-gradient-success { background: var(--gradient-success) !important; }
.bg-gradient-warning { background: var(--gradient-warning) !important; }

/* Transition Utilities */
.transition-fast { transition: var(--transition-fast) !important; }
.transition { transition: var(--transition-normal) !important; }
.transition-slow { transition: var(--transition-slow) !important; }

/* ========================================
   SUKHUMVIT FONT DEFINITIONS
   ======================================== */

/* SukhumvitSet Thin */
@font-face {
    font-family: "SukhumvitSet";
    src: url("../fonts/SukhumvitSet-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* SukhumvitSet Light */
@font-face {
    font-family: "SukhumvitSet";
    src: url("../fonts/SukhumvitSet-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* SukhumvitSet Text (Regular) */
@font-face {
    font-family: "SukhumvitSet";
    src: url("../fonts/SukhumvitSet-Text.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* SukhumvitSet Medium */
@font-face {
    font-family: "SukhumvitSet";
    src: url("../fonts/SukhumvitSet-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* SukhumvitSet SemiBold */
@font-face {
    font-family: "SukhumvitSet";
    src: url("../fonts/SukhumvitSet-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* SukhumvitSet Bold */
@font-face {
    font-family: "SukhumvitSet";
    src: url("../fonts/SukhumvitSet-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
body, *, 
h1, h2, h3, h4, h5, h6,
.title, .luminix-section-title,
p, span, div, a {
    font-family: var(--font-primary) !important;
}

/* FontAwesome Icons Exception - Critical Fix */
.fa, .fas, .far, .fal, .fab, .fad, .fak,
[class*="fa-"]:before, [class*="fa-"]:after {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Pro", "FontAwesome" !important;
    font-weight: 900 !important;
}

/* Ensure Thai content specifically uses SukhumvitSet */
.luminix-section-title .title,
.title,
h3.title,
h4.title,
h6 {
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
}

/* ========================================
   TEXT UTILITIES - DARK THEME ADAPTED
   ======================================== */

.trace,.trace *{
    outline:1px solid red;
}

/* Text Concise - Enhanced Typography */
.text-concise {
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: var(--margin-bottom-default);
    color: #ffffff !important;
}

.text-concise h5,
h5.text-concise,
.text-concise h6,
h6.text-concise {
    color: #ffffff !important;
}

.text-concise *,
.text-concise p,
p.text-concise {
    letter-spacing: var(--letter-spacing-tight);
    font-size: 0.95em;
    color: #d1d5db;
}

/* Enhanced Reader Mode */
.text-concise.reader {
    tab-size: 4;
    line-height: 2em;
    letter-spacing: -0.15px;
    text-justify: distribute-all-lines;
    text-indent: 1em;
    color: #e2e8f0 !important;
}

.text-concise.reader p {
    color: #d1d5db;
    margin-bottom: 1.5em;
}

/* Text Size Variants */
.text-concise-small {
    line-height: 1.17em;
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 10px;
    color: #d1d5db;
    font-size: 1.05em !important;
}

.text-concise-small-bold {
    line-height: 1.17em;
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.05em !important;
    font-weight: 600;
}

.text-concise-medium {
    line-height: 1.37em;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
    color: #ffffff;
}

.text-concise-medium p {
    letter-spacing: var(--letter-spacing-tight);
    color: #d1d5db;
}

/* Color Utilities for Dark Theme */
.text-white {
    color: #ffffff !important;
}

.text-light {
    color: #e2e8f0 !important;
}

.text-gray {
    color: #d1d5db !important;
}

.text-heading-color {
    color: #ffffff !important;
}

/* Font Family Utilities */
.font-trueno {
    font-family: 'Trueno', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* .font-sukhumvit class removed - font now applied globally */

/* ========================================
   HMK PADDING UTILITIES
   ======================================== */

.hmk-padding-0-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.hmk-padding-8-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.hmk-padding-20-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.hmk-padding-60-0 {
    padding-top: 60px !important;
    padding-bottom: 0px !important;
}

.hmk-padding-0-60 {
    padding-top: 0px !important;
    padding-bottom: 60px !important;
}

.hmk-padding-60-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.hmk-padding-80-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.hmk-padding-100-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* ========================================
   LUMINIX UTILITIES - DARK THEME ADAPTED
   ======================================== */

/* Section Title */
.luminix-section-title {
    padding-bottom: 10px;
}

.luminix-section-title.center {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.luminix-section-title.center2 {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.luminix-section-title .title {
    padding: 15px 0 20px 0;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
}

.luminix-section-title .text {
    margin-bottom: 24px;
    color: #d1d5db;
    line-height: 1.6;
    font-size: 16px;
}

/* ========================================
   LUMINIX ADDITIONAL UTILITIES
   ======================================== */

/* List Content Styling */
.luminix-list-icon-content ul li {
    font-size: 0.9em;
    margin: 0 !important;
    font-weight: normal;
    color: #d1d5db;
}

.luminix-list-icon-content-list-custom {
    margin-top: 90px;
}

/* ========================================
   FAQ SECTION - Collapsible Questions
   ========================================
   Features:
   - Smooth accordion-style collapse/expand animations
   - Dark theme with purple accents
   - Clean flat design with minimal borders
   - Responsive icons with + / - states
   - Optimized cubic-bezier easing for smooth UX
   ======================================== */
.luminix-faq-wrap1-mod .luminix-faq-item {
    padding: 24px 0px 12px 0px !important;
    margin: 0px 0px 0px 0px !important;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin-bottom: 16px !important;
}

.luminix-faq-wrap1-mod .luminix-faq-header p {
    margin-top: 16px;
    color: #ffffff;
}

.luminix-faq-wrap1-mod .luminix-faq-body p {
    margin-top: -16px;
    color: #d1d5db;
}

.luminix-faq-wrap1-mod .luminix-faq-body p a {
    line-height: 1.8em;
    color: #8b5cf6;
    text-decoration: none;
}

.luminix-faq-wrap1-mod .luminix-faq-body p a:hover {
    color: #a855f7;
    text-decoration: underline;
}

/* Brand Section */
.luminix-brand-section {
    padding: 0px 0;
}

.luminix-brand-item {
    margin: 0 !important;
    padding: 0 !important;
}

.luminix-padding-section-0 {
    padding: 0px 0;
}

/* ========================================
   HELPER UTILITIES
   ======================================== */

/* Height Utilities */
.min-box-height-220 {
    min-height: 220px;
}

.min-box-height-260 {
    min-height: 260px;
}

/* Position Utilities */
.position-relative {
    position: relative;
}

/* Box Styling */
.mini-box-wrapper {
    min-height: 145px;
    margin-bottom: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Visibility Utilities */
.hidden-xs {
    display: block;
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

/* Margin Utilities */
.mt-50 {
    margin-top: 50px;
}

.rt-mr-20 {
    margin-right: 20px;
}

.rt-ml-20 {
    margin-left: 20px;
}

/* Button Utilities */
.my-luminix-default-btn {
    padding: 10px 44px;
    border-radius: 8px;
    background: #8b5cf6;
    color: #ffffff;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.my-luminix-default-btn:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

/* Responsive Text Scaling */
@media (max-width: 768px) {
    .text-concise {
        font-size: 0.9em;
    }
    
    .text-concise.reader {
        line-height: 1.8em;
        text-indent: 0.5em;
    }
    
    .luminix-section-title .title {
        font-size: 28px;
        padding: 8px 0 12px 0;
    }
    
    .luminix-section-title .text {
        font-size: 17px; /* Increased by 20% from 14px */
    }
    
    .luminix-list-icon-content ul li {
        font-size: 0.85em;
    }
}

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

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    line-height: 1.6;
    position: relative;
}

/* Specific element defaults with high specificity */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Ensure font weight inheritance works properly with SukhumvitSet */
.font-thin { font-weight: 100 !important; }
.font-light { font-weight: 300 !important; }
.font-normal { font-weight: 400 !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }

/* Promotion Bar */
.promo-bar {
    background: linear-gradient(135deg, #8b5cf6 0%, #667eea 100%);
    padding: 12px 0;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.promo-text {
    color: white;
    font-size: 17px; /* Increased by 20% from 14px */
    font-weight: 500;
    flex: 1;
}

.promo-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.download-btn {
    background: white;
    color: #8b5cf6;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 17px; /* Increased by 20% from 14px */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.promo-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    height: 0;
    padding: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Discount Banner */
.discount-banner {
    background: white;
    padding: 2px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 999;
}

.discount-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.discount-text {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.discount-percentage {
    color: #e91e63;
    font-weight: 700;
    font-size: 18px;
}

.register-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 17px; /* Increased by 20% from 14px */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.register-btn:hover {
    background: #c2185b;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
}

/* ========================================
   HEADER SECTION - Sticky Navigation
   ========================================
   Features:
   - Glass morphism effect with backdrop blur
   - Sticky positioning with highest z-index
   - Responsive logo and navigation
   - Language switcher integration
   - Mobile hamburger menu toggle
   ======================================== */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1001;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff5a5f;
    font-size: 20px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
    margin-top: 16px; /* Push menu down more for better vertical centering */
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px; /* Reduced by 10% from 17px to 15px */
    white-space: nowrap;
    padding-top: 3px; /* Additional top padding for better positioning */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 17px; /* Increased by 20% from 14px */
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.flag {
    font-size: 16px;
}

/* Partnership Link */
.partnership-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 17px; /* Increased by 20% from 14px */
    transition: all 0.3s ease;
}

.partnership-link:hover {
    color: white;
    text-decoration: none;
}

.btn-header {
    background: #B184BB;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 17px; /* Increased by 20% from 14px */
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177, 132, 187, 0.3);
    white-space: nowrap;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(177, 132, 187, 0.2);
    color: white;
    text-decoration: none;
}

/* ========================================
   HERO SECTION - Landing Area
   ========================================
   Features:
   - Split layout: content left, waterfall photos right
   - Interactive checklist with purple gradient styling
   - Animated waterfall photo grid with hover effects
   - Responsive design with mobile-first approach
   - Course branding and primary call-to-action
   ======================================== */
.hero {
    background-color: #000000;
    padding: 80px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-left {
    flex: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-features {
    list-style: none;
    margin: 30px 0;
}

.hero-features li {
    padding: 8px 0;
    font-size: 18px;
    position: relative;
    padding-left: 30px;
}

.hero-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.btn-contact {
    background: #B184BB;
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(177, 132, 187, 0.3);
    font-size: 16px;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(177, 132, 187, 0.2);
    color: white;
    text-decoration: none;
}

.hero-right {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.photos-grid {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    mask: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.waterfall-stream {
    position: absolute;
    width: 100%;
    height: 200%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    animation: waterfallFlow 48s linear infinite;
    top: 0;
}

.waterfall-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.waterfall-column.right {
    margin-top: 60px;
}

.photo {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    display: block;
}

.photo.small {
    height: 180px;
}

.photo.medium {
    height: 220px;
}

.photo.large {
    height: 260px;
}

.photo.xlarge {
    height: 300px;
}

/* MasterClass Checklist Styles */
.masterclass-checklist {
    margin: 30px 0;
}

.checklist-question {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #ffffff;
}

.checklist-items {
    margin-bottom: 30px;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 2px 0;
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 8px;
}

.checkbox {
    width: 30px !important;
    height: 30px !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 50% !important;
    margin-right: 15px;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.checklist-item.checked .checkbox {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.checklist-item.checked .checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.checklist-item span {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.4;
}

.continue-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

.continue-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

/* Responsive for Promotion Bar */
@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .promo-text {
        font-size: 13px;
    }
    
    .download-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .partnership-link {
        display: none;
    }
    
    .language-selector {
        padding: 2px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .btn-header {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .testimonials-title {
        font-size: 24px;
    }
    
    .course-title {
        font-size: 28px;
    }
    
    .course-subtitle {
        font-size: 16px;
    }
    
    .stats-icons {
        gap: 40px;
    }
    
    /* Enhanced Hero Section for Mobile */
    .hero-container {
        flex-direction: column !important;
        gap: 50px !important;
    }
    
    .hero-title {
        font-size: 32px !important;
    }
    
    .hero-right {
        order: -1 !important; /* Show photos first on mobile */
        flex: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .photos-grid {
        height: 380px !important;
        width: 100% !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        position: relative !important;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .course-title {
        font-size: 24px;
    }
    
    .stats-icons {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-subtitle {
        font-size: 20px;
    }
    
    /* HOST CENTER STYLE FAQ CSS */
/* Light background class */
.light-bg1 {
    background-color: #000000 !important;
}

/* Duplicate padding classes removed - already defined above */

/* Custom heading styles */
.custom-h3 {
    font-weight: 700;
    margin: 0;
    font-size: 35px;
    line-height: 1.28em;
    letter-spacing: -1.7px;
}

.custom-text-heading {
    font-weight: 1000;
    margin: 0;
    padding: 0;
}

.hmk-hostcenter {
    font-weight: bold;
}

/* Text color classes */
.text-heading-color {
    color: #ffffff;
}

.text-heading-color3 {
    color: #B184BA;
}

/* FAQ specific styles */
.luminix-faq-wrap1 {
    margin-top: 20px;
}

.luminix-faq-wrap1-mod .luminix-faq-item {
    padding: 24px 0px 12px 0px !important;
    margin: 0px 0px 0px 0px !important;
    border-bottom: 1px solid #374151;
}

.luminix-faq-wrap1-mod .luminix-faq-header {
    padding: 0px 0px !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.luminix-faq-wrap1-mod .luminix-faq-header p {
    margin-top: 16px;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: bold;
}

.luminix-faq-wrap1-mod .luminix-faq-body {
    margin-top: 16px;
    padding-left: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.luminix-faq-item.open .luminix-faq-body {
    opacity: 1;
    max-height: 500px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.luminix-faq-wrap1-mod .luminix-faq-body p {
    margin-top: -16px;
    color: #d1d5db;
}

.luminix-faq-wrap1-mod .luminix-faq-body ul {
    color: #d1d5db;
}

.luminix-faq-wrap1-mod .luminix-faq-body ul li {
    color: #d1d5db;
    margin-bottom: 8px;
}

/* Icon styles - Production Grade */
.luminix-active-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.luminix-active-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.luminix-active-icon .faq-icon-plus {
    display: block !important;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    transition: all 0.3s ease;
    position: absolute;
}

.luminix-active-icon .faq-icon-minus {
    display: none !important;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    transition: all 0.3s ease;
    position: absolute;
}

.luminix-faq-item.open .luminix-active-icon .faq-icon-plus {
    display: none !important;
}

.luminix-faq-item.open .luminix-active-icon .faq-icon-minus {
    display: block !important;
}

.luminix-faq-item.open .luminix-active-icon {
    background: rgba(177, 132, 186, 0.3);
}

/* Text concise styles */
.text-concise-medium {
    line-height: 1.37em;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}

.text-concise-small-bold {
    line-height: 1.17em;
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.05em !important;
    font-weight: bold;
}

/* ========================================
   RESPONSIVE DESIGN - Mobile Optimizations
   ========================================
   Features:
   - Progressive enhancement from mobile-first
   - Tablet (768px) and desktop (992px) breakpoints
   - Optimized typography and spacing scaling
   - Touch-friendly interactive elements
   - Maintains Bootstrap grid compatibility
   ======================================== */
@media (max-width: 991px) {
    /* Make FAQ container have proper padding on mobile/tablet */
    .luminix-faq-wrap1 {
        padding: 0 20px;
    }
}

/* Ensure Bootstrap grid works properly for FAQ */
@media (min-width: 992px) {
    .container .row .offset-lg-6.col-lg-6 {
        margin-left: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Enhanced Mobile Hero Photos */
    .hero-right {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 !important;
    }
    
    .photos-grid {
        height: 350px !important;
        width: 100% !important;
        gap: 10px !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .hero-container {
        gap: 40px !important;
    }
    
    .hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .waterfall-stream {
        animation-duration: 60s !important; /* Slower animation for mobile */
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Infinite waterfall animation - continuous upward movement */
@keyframes waterfallFlow {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

/* ========================================
   LUMINIX FAQ SYSTEM - DARK THEME ADAPTED
   ======================================== */

/* FAQ Item Styles - Dark Theme */
.luminix-faq-item {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.luminix-faq-item.open .luminix-faq-body {
    display: block;
}

/* FAQ Header - Dark Theme */
.luminix-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luminix-faq-header:hover {
    opacity: 0.8;
}

.luminix-faq-header p {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

/* FAQ Body - Dark Theme */
.luminix-faq-body {
    display: none;
    padding-top: 15px;
}

.luminix-faq-body p {
    color: #d1d5db !important;
    line-height: 1.6;
    margin: 0;
}

.luminix-faq-body a {
    color: #b583bb !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.luminix-faq-body a:hover {
    color: #ffffff !important;
}

/* Icon States - Dark Theme */
.luminix-faq-item.open img.plasicon {
    opacity: 1 !important;
}

.luminix-faq-item.open img.mynusicon {
    opacity: 0;
    display: block;
}

/* Icon Base Styles - Dark Theme */
img.mynusicon {
    opacity: 1;
    position: relative;
    filter: invert(1) brightness(2);
}

img.plasicon {
    opacity: 0;
    position: absolute;
    filter: invert(1) brightness(2);
}

/* Active Icon Container */
.luminix-active-icon {
    flex-shrink: 0;
    position: relative;
    width: 24px;
    height: 24px;
}

/* Modified FAQ Wrapper Styles - Dark Theme */
.luminix-faq-wrap1-mod .luminix-faq-item {
    padding: 24px 0px 12px 0px !important;
    margin: 0px 0px 0px 0px !important;
}

.luminix-faq-wrap1-mod .luminix-faq-header p {
    margin-top: 16px;
}

.luminix-faq-wrap1-mod .luminix-faq-body p {
    margin-top: -16px;
}

.luminix-faq-wrap1-mod .luminix-faq-header,
.luminix-faq-wrap1-mod .luminix-faq-body p a {
    padding: 0px 0px !important;
}

.luminix-faq-wrap1-mod .luminix-active-icon img {
    filter: invert(1) brightness(2);
}

.luminix-faq-wrap1-mod .luminix-faq-body p {
    padding-left: 4px;
}

.luminix-faq-wrap1-mod .luminix-faq-body p a {
    line-height: 1.8em;
}

/* Border Reset */
.border-b {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

/* FAQ Section Container - Dark Theme */
.faq-hostcenter {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 80px 0;
}

.faq-hostcenter .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HOSTCENTER Title Styling */
.hmk-hostcenter {
    text-align: center;
    margin-bottom: 20px;
}

.hmk-hostcenter .text-heading-color {
    color: #b583bb !important;
}

.hmk-hostcenter .text-heading-color3 {
    color: #ffffff !important;
}

.hmk-hostcenter + center {
    color: #d1d5db;
    font-size: 16px;
    margin-bottom: 40px;
}

/* DISABLED - Custom FAQ Icons - Using simple text symbols for dark theme */
.luminix-faq-item .faq-icon-plus::before {
    content: '' !important; /* Remove duplicate icon */
    display: none !important;
}

.luminix-faq-item.open .faq-icon-plus::before {
    content: '' !important; /* Remove duplicate icon */
    display: none !important;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

/* ========================================
   CLEAN FLATTENED FAQ STYLES
   ======================================== */

/* Override existing FAQ styles with clean flat design */
.luminix-faq-wrap1-mod .luminix-faq-item {
    padding: 0 !important;
    margin: 0 !important;
    background: #000000 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #222222 !important;
}

.luminix-faq-wrap1-mod .luminix-faq-item:last-child {
    border-bottom: none !important;
}

/* Clean flat FAQ header */
.luminix-faq-wrap1-mod .luminix-faq-header {
    background: #000000 !important;
    padding: 24px 20px !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    border: none !important;
}

.luminix-faq-wrap1-mod .luminix-faq-header:hover {
    background: #111111 !important;
}

.luminix-faq-wrap1-mod .luminix-faq-header p {
    margin: 0 !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    flex: 1 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    padding-right: 16px !important;
}

/* Grey round circle icon - Clean design */
.luminix-faq-wrap1-mod .luminix-active-icon {
    width: 32px !important;
    height: 32px !important;
    background: #444444 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    position: relative !important;
}

.luminix-faq-wrap1-mod .luminix-active-icon:hover {
    background: #555555 !important;
}

/* Clean +/- icons */
.luminix-faq-wrap1-mod .luminix-active-icon .faq-icon-plus,
.luminix-faq-wrap1-mod .luminix-active-icon .faq-icon-minus {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    transition: all 0.2s ease !important;
    line-height: 1 !important;
    display: block !important;
}

/* Remove any ::before pseudo-elements from FAQ icons */
.luminix-faq-wrap1-mod .luminix-active-icon .faq-icon-plus::before,
.luminix-faq-wrap1-mod .luminix-active-icon .faq-icon-minus::before {
    content: '' !important;
    display: none !important;
}

.luminix-faq-wrap1-mod .luminix-active-icon .faq-icon-minus {
    display: none !important;
}

.luminix-faq-item.open .luminix-active-icon .faq-icon-plus {
    display: none !important;
}

.luminix-faq-item.open .luminix-active-icon .faq-icon-minus {
    display: block !important;
}

/* FAQ Body - Clean flat design */
.luminix-faq-wrap1-mod .luminix-faq-body {
    background: #000000 !important;
    color: #cccccc !important;
    padding: 0 20px !important;
    margin: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.luminix-faq-item.open .luminix-faq-body {
    padding: 20px !important;
    max-height: 600px !important;
}

.luminix-faq-wrap1-mod .luminix-faq-body p {
    color: #cccccc !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
}

.luminix-faq-wrap1-mod .luminix-faq-body ul {
    color: #cccccc !important;
    margin: 12px 0 !important;
    padding-left: 20px !important;
}

.luminix-faq-wrap1-mod .luminix-faq-body ul li {
    color: #aaaaaa !important;
    margin-bottom: 8px !important;
    line-height: 1.6 !important;
}

/* Ensure black background throughout */
.light-bg1 {
    background-color: #000000 !important;
}

.luminix-faq-wrap1 {
    background: #000000 !important;
}

/* FAQ section titles */
.luminix-section-title h3 {
    color: #ffffff !important;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-text {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e2e8f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.stats-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-icon {
    text-align: center;
    flex: 1;
    min-width: 120px;
    max-width: 200px;
}

.stat-icon i {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
    color: #667eea;
}

.stat-icon span {
    font-size: 17px; /* Increased by 20% from 14px */
    color: #d1d5db;
    font-weight: 500;
}

/* ========================================
   TESTIMONIALS SECTION - Social Proof
   ========================================
   Features:
   - Grid layout with glass morphism cards
   - Gradient backgrounds and hover animations
   - User photos with overlay effects
   - Responsive design (desktop 3-col, mobile 1-col)
   - Dark theme with purple accent colors
   ======================================== */
.testimonials {
    background-color: #000000;
    padding: 60px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.testimonial-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.testimonial-info {
    padding: 12px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 4px;
    color: #ffffff;
}

.testimonial-role {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 500;
}

/* Course Trial Section */
.course {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.course-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.course-subtitle {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-course {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    font-size: 16px;
    display: inline-block;
}

.btn-course:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Testimonials */
.testimonials {
    background-color: #000000;
    padding: 80px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-info {
    padding: 15px;
}

.testimonial-name {
    font-weight: bold;
    font-size: 17px; /* Increased by 20% from 14px */
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 12px;
    color: #9ca3af;
}

/* Course Section */
.course {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.course-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-subtitle {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 40px;
}

.btn-course {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    font-size: 16px;
}

.btn-course:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Main Image */
/* Main Image Section */
.main-image-section {
    padding: 0;
    margin: 0;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    margin: 0;
}

/* Features */
.features {
    background-color: #000000;
    padding: 80px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Course Lessons Section */
.course-lessons {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
}

.course-lessons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.lessons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.lessons-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.lesson-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.lesson-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.lesson-number {
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.lesson-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.lesson-card p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 15px;
}

/* Best Courses Section */
.best-courses {
    background-color: #000000;
    padding: 80px 0;
}

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.courses-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.course-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.course-item.featured {
    border: 2px solid #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.course-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: none;
}

.course-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.course-item p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.course-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b5cf6;
    margin-top: 20px;
}

/* Features Section */
.features {
    background-color: #000000;
    padding: 80px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature {
    text-align: left;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.feature h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 15px;
}

.feature h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-preview {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.video-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.video-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.video-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-airbnb, .logo-superhost {
    background: linear-gradient(135deg, #ff5a5f 0%, #ff8a80 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
    transition: all 0.3s ease;
    font-size: 17px; /* Increased by 20% from 14px */
}

.logo-airbnb:hover, .logo-superhost:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 90, 95, 0.4);
}

.video-text {
    text-align: left;
}

.video-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.video-text p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 16px;
}

/* FAQ Section */
.faq {
    background-color: #000000;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 24px;
    margin-bottom: 60px;
    line-height: 1.3;
    color: #d1d5db;
}

.faq-list {
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
    margin: 0 -20px;
    padding: 25px 20px;
    border-radius: 8px;
}

.faq-question {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}


/* ========================================
   FOOTER SECTION - Site Information
   ========================================
   Features:
   - Dark gradient background with overlay effects
   - Social media links with hover animations
   - Company information and contact details
   - Curved photo section with glass morphism
   - Responsive grid layout for different screen sizes
   ======================================== */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 17px; /* Increased by 20% from 14px */
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    font-size: 17px; /* Increased by 20% from 14px */
}

.footer-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4b5563;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.video-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* FAQ */
.faq {
    background-color: #000000;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 24px;
    margin-bottom: 60px;
    line-height: 1.3;
}

.faq-list {
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #374151;
    padding: 25px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 17px; /* Increased by 20% from 14px */
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4b5563;
}

.dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* Scroll animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.hero-right {
    animation: slideInFromRight 0.8s ease-out;
}

/* Enhanced glass morphism effects */
.nav-container {
    background: #000; /*rgba(10, 10, 10, 0.8);*/
    backdrop-filter: blur(20px);
    border-radius: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photos-grid {
        height: 300px;
    }
    
    .lessons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .lessons-title, .courses-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .photos-grid {
        height: 250px;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .lessons-grid, .courses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .lessons-title, .courses-title {
        font-size: 24px;
    }
    
    .course-item {
        padding: 30px 20px;
    }
}

/* === ADDITIONAL STYLES FROM HTML === */

/* Override body styles for better consistency */
body {
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Header Overrides */
.header {
    background-color: #000000;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff5a5f;
    font-size: 20px;
    font-weight: bold;
}

/* .nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
    margin-top: 4px; 
} */

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px; /* Increased by 20% from 14px */
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flag {
    font-size: 20px;
}

.btn-header {
    background-color: #8b5cf6;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 17px; /* Increased by 20% from 14px */
}

/* Hero Section Overrides */
.hero {
    background-color: #000000;
    padding: 60px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-left {
    flex: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-features {
    list-style: none;
    margin: 30px 0;
}

.hero-features li {
    padding: 8px 0;
    font-size: 18px;
    position: relative;
    padding-left: 30px;
}

.hero-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.btn-contact {
    background-color: #8b5cf6;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
}

.hero-right {
    flex: 1;
}

/* Stats Section Overrides */
.stats {
    background-color: #1a1a1a;
    padding: 50px 0;
    text-align: center;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: #e2e8f0;
}

.stats-icons {
    display: flex;
    justify-content: center;
    gap: 80px;
}

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

.stat-icon i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

/* Movie Style Carousel Overrides */
.testimonials {
    background-color: #000000;
    padding: 80px 0;
    overflow: hidden;
}

/* Course Curriculum Section */
.course-curriculum {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.course-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.curriculum-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.curriculum-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.curriculum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 69, 255, 0.5);
}

.curriculum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b45ff, #ff6b9d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.curriculum-card:hover::before {
    opacity: 1;
}

.card-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b45ff, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 25px auto;
    box-shadow: 0 8px 20px rgba(139, 69, 255, 0.3);
}

.curriculum-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.curriculum-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .curriculum-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .curriculum-card {
        padding: 30px 20px;
    }
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.property-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.property-carousel::-webkit-scrollbar {
    display: none;
}

.property-card {
    flex: 0 0 auto;
    width: 250px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-info {
    padding: 16px;
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.property-rating i {
    color: #ff5a5f;
    font-size: 12px;
}

.property-rating span {
    font-size: 17px; /* Increased by 20% from 14px */
    font-weight: 600;
    color: #333;
    margin-left: 4px;
}

.property-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.2;
}

.property-price {
    font-size: 17px; /* Increased by 20% from 14px */
    font-weight: 700;
    color: #ff5a5f;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: rgba(0,0,0,0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.carousel-nav i {
    font-size: 16px;
}

/* Course Section Overrides */
.course {
    background-color: #1a1a1a;
    padding: 80px 0;
    text-align: center;
}

.course-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.course-subtitle {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 40px;
}

.btn-course {
    background-color: #8b5cf6;
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

/* Main Image Overrides */
.main-image-section {
    padding: 0;
    margin: 0;
}

.main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Features Overrides */
.features {
    background-color: #000000;
    padding: 80px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.feature {
    text-align: left;
    padding: 0 20px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
}

.feature p {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 15px;
}

/* Video Section Overrides */
.video-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.video-preview {
    background-color: #000000;
    border-radius: 12px;
    padding: 40px;
    text-align: left;
}

.video-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.video-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-airbnb {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ff5a5f;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
}

.logo-superhost {
    background-color: #ff5a5f;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
}

.video-description {
    color: #d1d5db;
    font-size: 17px; /* Increased by 20% from 14px */
    margin-top: 15px;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: #000000;
    font-size: 20px;
    margin-left: 3px;
}

/* FAQ Overrides */
.faq {
    background-color: #000000;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 24px;
    margin-bottom: 60px;
    line-height: 1.3;
}

.faq-list {
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #374151;
    padding: 25px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 500;
}

/* Footer Overrides */
.footer {
    background-color: #1a1a1a;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 17px; /* Increased by 20% from 14px */
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4b5563;
}

.dot.active {
    background-color: #8b5cf6;
}


/* Language selector styling - Updated for I18NSwitch */
#i18n-switch {
    margin-right: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* Override I18NSwitch default styles to match theme */
#i18n-switch.switch-container {
    --sl-width: 50px;
    --sl-height: 30px;
    --sl-border-color: #d9d9d9;
    --sl-border-radius: calc(var(--sl-height) / 2);
    --sl-flag-size: calc(var(--sl-height) - 8px);
    --sl-transformX: calc(var(--sl-width) - var(--sl-flag-size) - 6px);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--sl-border-color);
    border-radius: var(--sl-border-radius);
    transition: all 0.3s ease;
}

#i18n-switch.switch-container:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ab47bc;
}

#i18n-switch .switch {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-radius: calc(var(--sl-height) / 2);
}

/* Add gradient background when language is switched */
#i18n-switch.switch-container:has(.switch.on) {
    background: linear-gradient(135deg, #7c4dff 0%, #ab47bc 100%);
    border-color: #ffffff;
}

/* Mobile visibility */
@media (max-width: 768px) {
    #i18n-switch.hidden-xs {
        display: none !important;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none !important;
    border: none !important;
    cursor: pointer;
    /* padding: 10px; */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    margin-left: 15px;
    position: relative;
    z-index: 1000;
}

/* Ensure hamburger is visible on all mobile devices */
.mobile-menu-toggle {
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff !important;
    transition: all 0.3s ease;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-toggle:hover span,
.mobile-menu-toggle:focus span,
.mobile-menu-toggle:active span {
    background-color: #ffffff !important;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.mobile-menu-toggle:focus {
    outline: none;
}

.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    z-index: 99999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-wrapper.active {
    left: 0;
}

.mobile-menu-area {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo img {
    height: 32px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.mobile-menu-close i {
    font-family: FontAwesome !important;
    font-style: normal;
    font-weight: normal;
}

.mobile-menu-close:hover {
    color: #B184BB;
}

.mobile-menu-nav {
    flex: 1;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav .menu-item {
    margin-bottom: 5px;
}

.mobile-menu-nav .menu-item a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.mobile-menu-nav .menu-item a:hover {
    color: #B184BB;
    padding-left: 10px;
}

.mobile-menu-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-lang-switch {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-mobile-trial {
    background: #B184BB;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 17px; /* Increased by 20% from 14px */
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177, 132, 187, 0.3);
    width: auto;
    text-align: center;
    white-space: nowrap;
}

.btn-mobile-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(177, 132, 187, 0.2);
    color: white;
    text-decoration: none;
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Show mobile menu toggle on mobile */
@media (max-width: 1199px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        display: none;
    }
}

/* Force show hamburger menu on smaller screens */
@media (max-width: 1199px) {
    .mobile-menu-toggle.d-xl-none {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        margin-left: 10px;
    }
    
    .btn-header {
        display: none;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .partnership-link {
        display: none;
    }
}

/* Mobile menu language switcher styling */
#i18n-switch-mobile.switch-container {
    --sl-width: 40px;
    --sl-height: 26px;
    --sl-border-color: #d9d9d9;
    --sl-border-radius: calc(var(--sl-height) / 2);
    --sl-flag-size: calc(var(--sl-height) - 6px);
    --sl-transformX: calc(var(--sl-width) - var(--sl-flag-size) - 6px);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--sl-border-color);
    border-radius: var(--sl-border-radius);
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    position: relative;
}

#i18n-switch-mobile {
    margin: 0 auto !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
}

#i18n-switch-mobile.switch-container:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ab47bc;
}

#i18n-switch-mobile .switch {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-radius: calc(var(--sl-height) / 2);
}

/* Dark mode responsive styling */
@media (prefers-color-scheme: dark) {
    .mobile-menu-toggle span {
        background-color: #ffffff !important;
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    }
    
    .mobile-menu-wrapper {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .mobile-menu-nav .menu-item a {
        color: #ffffff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Force dark mode styling (override any light mode) */
@media screen {
    .mobile-menu-toggle span {
        background-color: #ffffff !important;
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.6) !important;
    }
    
    .mobile-menu-toggle:hover span,
    .mobile-menu-toggle:focus span,
    .mobile-menu-toggle:active span {
        background-color: #ffffff !important;
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.9) !important;
    }
}

/* === INGREDIENT SECTION STYLES === */

/* Font Face Definitions */
@font-face {
    font-family: 'Trueno';
    src: url('../fonts/TruenoBd.woff2') format('woff2'),
         url('../fonts/TruenoBd.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trueno';
    src: url('../fonts/TruenoRg.woff2') format('woff2'),
         url('../fonts/TruenoRg.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Ingredient Section */
.ingredient-section {
    background: #000000;
    padding:80px 0px 0px 0px;
    position: relative;
}

.ingredient-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Force Bootstrap Grid Layout */
.ingredient-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ingredient-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.ingredient-section .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

.ingredient-section .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .ingredient-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .ingredient-section .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

/* Story Content */
.story-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-content p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Achievement Stats */
.achievement-stats {
    margin-top: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item h4 {
    color: #8b5cf6;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-item p {
    color: #d1d5db;
    font-size: 17px; /* Increased by 20% from 14px */
    line-height: 1.4;
    margin: 0;
}

/* Course Description */
.course-description h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.course-description > p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Philosophy Section */
.philosophy-section {
    margin-bottom: 30px;
}

.philosophy-section h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.philosophy-section p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Instructor Info */
.instructor-info {
    margin-top: 30px;
}

.instructor-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.instructor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor-details h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.instructor-details p {
    color: #d1d5db;
    font-size: 17px; /* Increased by 20% from 14px */
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item h4 {
        font-size: 24px;
    }
    
    .story-content h3,
    .course-description h3 {
        font-size: 20px;
    }
    
    .philosophy-section h4 {
        font-size: 18px;
    }
    
    .instructor-profile {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Duplicate .luminix-section-title removed - already defined above */

/* Title Styles */
.title {
    padding: 15px 0 20px 0;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Text Styles */
.text {
    margin-bottom: 24px;
    color: #d1d5db;
    line-height: 1.6;
    font-size: 16px;
}

/* Duplicate .text-concise removed - already defined above */

/* Utility Classes */
.pt-0 {
    padding-top: 0 !important;
}

.hmk-padding-60-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* Duplicate padding utilities removed - already defined above */

/* Responsive */
@media (max-width: 991px) {
    .luminix-section-title {
        padding-bottom: 10px;
        text-align: center;
    }
    
    .title {
        font-size: 28px;
        padding: 10px 0 15px 0;
    }
}

@media (max-width: 767px) {
    .title {
        font-size: 24px;
        padding: 8px 0 12px 0;
    }
    
    .text,
    .text-concise {
        font-size: 17px; /* Increased by 20% from 14px */
    }
}

/* Portfolio Testimonials Section */
.portfolio-testimonials {
    background: #000000;
    padding: 0px 0;
    position: relative;
}

.luminix-section-title h6 {
    color: #8b5cf6;
    font-size: 17px; /* Increased by 20% from 14px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.luminix-section-title .title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 50px;
}

/* ========================================
   PORTFOLIO SECTION - Image Carousel
   ========================================
   Features:
   - Horizontal scrolling carousel with navigation arrows
   - Glass morphism cards with hover effects
   - Touch/swipe support for mobile devices
   - Smooth scroll behavior and transitions
   - Responsive design with proper z-index hierarchy
   ======================================== */
.portfolio-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.slick-portfoilo-item {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    transition: transform 0.3s ease;
}

.portfolio-item {
    min-width: 280px;
    max-width: 280px;
    background: transparent;
    border-radius: 12px;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
}

/* Navigation Arrows */
.portfolio-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 1) !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
    z-index: 1000 !important;
    font-weight: bold;
    line-height: 1 !important;
}

.portfolio-nav:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
}

.portfolio-nav.prev {
    left: 0px;
}

.portfolio-nav.next {
    right: 0px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    background: transparent;
}

.luminix-p-wrap {
    overflow: hidden;
    border-radius: 12px;
}

.luminix-p-thumb {
    position: relative;
    overflow: hidden;
}

.luminix-p-thumb img {
    width: 100%;
    /* height: 180px; */
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .luminix-p-thumb img {
    transform: scale(1.05);
}

.rt-pr-10 {
    padding: 20px 16px 16px 16px;
}

.text-concise p {
    color: #d1d5db;
    font-size: 17px; /* Increased by 20% from 14px */
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.luminix-t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.luminix-t-author-thumb {
    flex-shrink: 0;
}

.luminix-t-author-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 20%;
    object-fit: cover;
    /* border: 2px solid rgba(139, 92, 246, 0.4); */
}

.rt-rounded-30 {
    border-radius: 20%;
}

.luminix-t-author-data h6 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.2;
}

.luminix-t-author-data p {
    margin: 0;
}

.luminix-t-author-data img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Portfolio Responsive Design */
@media (max-width: 768px) {
    .luminix-section-title .title {
        font-size: 24px;
    }
    
    .portfolio-item {
        min-width: 280px;
        max-width: 280px;
    }
    
    .slick-portfoilo-item {
        gap: 20px;
        padding: 15px 0;
    }
    
    .rt-pr-10 {
        padding: 20px 15px 15px 15px;
    }
    
    .luminix-p-thumb img {
        height: 180px;
    }
}

.ingredient-divider {
                    width: 100%;
                    height: 1px;
                    margin: 40px 0 0 0;
                    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, #fff 50%, rgba(0,0,0,0.5) 100%);
                    border: none;
                    opacity: 0.7;
                }

/* ========================================
   NEW SECTIONS STYLES - DARK THEME
   ======================================== */

/* TRY Section Styles */
.try-section {
    background: #000000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.try-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.try-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.try-left {
    position: relative;
}

.try-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.lifestyle-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.try-image:hover .lifestyle-image {
    transform: scale(1.02);
}

.try-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.try-subtitle {
    font-size: 24px;
    color: #8B5CF6;
    margin-bottom: 20px;
    font-weight: 600;
}

.try-description {
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 30px;
}

.try-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.try-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.try-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.try-instructor {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 30px;
}

.instructor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor-name {
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.stars {
    color: #ffd700;
    margin-right: 10px;
}

.rating-text {
    color: #b3b3b3;
    font-size: 17px; /* Increased by 20% from 14px */
}

.try-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-try-free {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-try-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-try-info {
    background: transparent;
    color: #8B5CF6;
    padding: 15px 35px;
    border: 2px solid #8B5CF6;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-try-info:hover {
    background: #8B5CF6;
    color: #ffffff;
    text-decoration: none;
}

/* Course Structure Section */
.course-structure {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 100px 0;
    color: #ffffff;
}

.course-structure-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-structure-header {
    text-align: center;
    margin-bottom: 80px;
}

.course-structure-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-structure-subtitle {
    font-size: 20px;
    color: #b3b3b3;
    max-width: 600px;
    margin: 0 auto;
}

.course-modules {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
}

.course-module {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.course-module:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.module-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.module-content {
    flex: 1;
}

.module-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.module-description {
    font-size: 16px;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.module-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.module-duration, .module-lessons {
    color: #8B5CF6;
    font-size: 17px; /* Increased by 20% from 14px */
    font-weight: 500;
}

.course-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    flex-wrap: wrap;
    gap: 30px;
}

.course-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: #b3b3b3;
}

.btn-enroll {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-enroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Enhanced FAQ Styles */
.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.4);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.1);
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p, .faq-answer ul {
    padding: 0 30px 25px;
    margin: 0;
    color: #b3b3b3;
    line-height: 1.6;
}

.faq-answer ul {
    padding-left: 50px;
    padding-top: 10px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #b3b3b3;
}

/* Enhanced Footer Styles */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
}

.footer-logo h4 {
    color: #8B5CF6;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.footer-description {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.social-link:hover {
    background: #8B5CF6;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #8B5CF6;
    font-size: 18px;
    width: 20px;
    margin-top: 2px;
}

.contact-item a {
    color: #8B5CF6;
    text-decoration: none;
}

.contact-item a:hover {
    color: #A855F7;
}

.contact-note {
    font-size: 12px;
    color: #888;
}

.footer-newsletter {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-content h4 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: #b3b3b3;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    min-width: 300px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-btn {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.copyright {
    color: #b3b3b3;
    font-size: 17px; /* Increased by 20% from 14px */
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 17px; /* Increased by 20% from 14px */
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B5CF6;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b3b3b3;
    font-size: 17px; /* Increased by 20% from 14px */
}

.trust-badge i {
    color: #8B5CF6;
}

/* Responsive Design for New Sections */
@media (max-width: 1200px) {
    .try-content {
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .try-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .try-title {
        font-size: 32px;
    }
    
    .try-actions {
        flex-direction: column;
    }
    
    .course-module {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .course-structure-title {
        font-size: 36px;
    }
    
    .course-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .course-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        min-width: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Course Portfolio Section - Copy of Portfolio Mechanism with 2x Photos */
.course-gallery-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
}

.course-portfolio-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.course-slick-portfoilo-item {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    transition: transform 0.3s ease;
}

.course-portfolio-item {
    min-width: 560px; /* 2x bigger than portfolio (280px -> 560px) */
    max-width: 560px;
    background: transparent;
    border-radius: 12px;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
}

/* Navigation Arrows */
.course-portfolio-nav {
    position: absolute;
    top: calc(20px + 157px); /* 20px padding + half of 315px photo height = center of photo */
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 1) !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
    z-index: 1000 !important;
    font-weight: bold;
    line-height: 1 !important;
}

.course-portfolio-nav:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
}

.course-portfolio-nav.prev {
    left: 0px;
}

.course-portfolio-nav.next {
    right: 0px;
}

.course-portfolio-item:hover {
    transform: translateY(-5px);
    background: transparent;
}

.course-luminix-p-wrap {
    overflow: hidden;
    border-radius: 12px;
}

.course-luminix-p-thumb {
    position: relative;
    overflow: hidden;
}

.course-luminix-p-thumb img {
    width: 100%;
    height: 315px; /* 16:9 aspect ratio for 560px width (560/16*9=315) */
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-portfolio-item:hover .course-luminix-p-thumb img {
    transform: scale(1.05);
}

/* Mobile responsive for course gallery */
@media screen and (max-width: 1024px) {
    .course-portfolio-item {
        min-width: 450px; /* 2x bigger for tablet */
        max-width: 450px;
    }
    
    .course-luminix-p-thumb img {
        height: 253px; /* 16:9 aspect ratio for 450px width */
    }
    
    .course-portfolio-nav {
        top: calc(20px + 126px); /* 20px padding + half of 253px photo height = center of photo */
    }
}

@media screen and (max-width: 768px) {
    .course-portfolio-item {
        min-width: 350px; /* 2x bigger for mobile */
        max-width: 350px;
    }
    
    .course-luminix-p-thumb img {
        height: 197px; /* 16:9 aspect ratio for 350px width */
    }
    
    .course-portfolio-nav {
        top: calc(20px + 98px); /* 20px padding + half of 197px photo height = center of photo */
    }
}

/* ========================================
   PHOTO WRAPPER SECTION (EXACT COPY FROM ORIGINAL)
   ======================================== */

/* Parent holds the photo and the curve. */
.photo-wrapper {
    position: relative;
    /* lets us absolutely-position the white overlay if needed */
    width: 100%;
    height: 60vh;
    /* 60% of viewport height for desktop */
    max-height: 600px;
    /* fallback max height */
    margin: 0 auto;
    /* center the container, optional */
    overflow: hidden;
    /* ensures hidden areas or floats don't break layout */
}

/* The image is full width with center cropping. */
.the-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    /* Center crop both horizontally and vertically */
}

/* 
   "white-curve-container" is the wrapper for the two curved halves, 
   placed absolutely on top of the image. 
*/
.white-curve-container {
    position: absolute;
    /* so it sits on top of the photo */
    top: 0;
    /* or wherever you want this curved white area to start */
    left: 0;
    width: 100%;
    height: 50px;
    /* adjust to desired depth of the white shape */
    box-sizing: border-box;
}

/* Each half is floated, half the container's width. 
   We give them bottom radius to create downward curves. 
   For an upward curve, swap to border-top-left-radius, etc. 
*/
.white-curve-left,
.white-curve-right {
    float: left;
    width: 50%;
    height: 100%;
    background-color: #000; /* Changed to black for dark theme */
    margin-top: -1px;
}

/* Left half has a rounded bottom-right corner. */
.white-curve-left {
    border-bottom-right-radius: 40px;
    /* margin-right: -1px; */
    border: 1px solid #000; /* Changed to black for dark theme */
}

/* Right half has a rounded bottom-left corner. */
.white-curve-right {
    border-bottom-left-radius: 40px;
    /* margin-left: -1px; */
    border: 1px solid #000; /* Changed to black for dark theme */
}

/* Clear floats in the container. */
.white-curve-container::after {
    content: "";
    display: block;
    clear: both;
}

/* ========================================
   CUSTOM CURVE BANNER STYLES
   ======================================== */

/* div1: Main custom-curve-banner */
.custom-curve-banner {
    width: 100%;
    /* height: 60px; */
    height: 100%;
    /* Adjust as needed */
    background-color: var(--accent-color);
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    /* Quick text centering */
    line-height: 100px;
    font-size: 1.25rem;
}

/* A container to hold the two bottom halves (optional but useful for floats) */
.custom-curve-container {
    width: 100%;
    height: auto;
    /* just enough to hold the small bars below */
    box-sizing: border-box;
    margin-top: -1px;
}

/* div2-1: Left half under the custom-curve-banner */
.custom-curve-left {
    float: left;
    width: 50%;
    height: 50px;
    /* Adjust for a deeper/shallower curve */
    margin: 0;
    /* top margin 0 => sits snugly under custom-curve-banner */
    background-color: var(--accent-color);
    border-bottom-right-radius: 40px;
    /* Rounded corner on the right end */
    box-sizing: border-box;
}

/* div2-2: Right half under the custom-curve-banner */
.custom-curve-right {
    float: right;
    width: 50%;
    height: 50px;
    margin: 0;
    background-color: var(--accent-color);
    border-bottom-left-radius: 40px;
    /* Rounded corner on the left end */
    box-sizing: border-box;
}

/* Clear the floats so the container extends around them */
.custom-curve-container::after {
    content: "";
    display: block;
    clear: both;
}

/* ========================================
   DARK THEME FOOTER STYLES
   ======================================== */

/* Override existing footer styles for dark theme */
.luminix-footer-section1 {
    background: #000 !important;
    color: #fff;
    padding: 60px 0;
}

.luminix-footer-one {
    margin-bottom: 40px;
}

.luminix-footer-menu {
    margin-left: 15px;
    margin-right: 50px;
}

.luminix-footer-title h6 {
    color: white !important;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 16px;
}

.luminix-footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luminix-footer-menu ul li {
    margin-bottom: 12px;
}

.luminix-footer-menu ul li a {
    color: #ccc !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.luminix-footer-menu ul li a:hover {
    color: #fff !important;
}

.luminix-footer-bottom-text {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 40px;
}

.luminix-footer-bottom-text p {
    color: #ccc !important;
    margin: 0;
    font-size: 14px;
}

.luminix-footer-bottom-text a {
    color: #fff !important;
    text-decoration: none;
}

/* ========================================
   SOCIAL MEDIA BUTTONS - DARK THEME STYLES
   ======================================== */

.luminix-social-wrap.wrap2 ul li a:hover {
    background-color: var(--accent-bg, #2920D2) !important;
    border-color: var(--accent-bg, #2920D2) !important;
}

.luminix-social-wrap.wrap2 ul li a:hover svg path {
    fill: white !important;
}

/* ========================================
   RESPONSIVE PHOTO WRAPPER ADJUSTMENTS
   ======================================== */

/* Mobile adjustments */
@media (max-width: 768px) {
    .photo-wrapper {
        height: 50vh;
        /* Slightly smaller on mobile */
        max-height: 400px;
    }
}

/* Large desktop adjustments */
@media (min-width: 1200px) {
    .photo-wrapper {
        height: 60vh;
        max-height: 700px;
        /* Allow taller on large screens */
    }
}

.luminix-footer-bottom-text a:hover {
    text-decoration: underline;
}

/* Mobile responsive for footer */
@media screen and (max-width: 768px) {
    .luminix-footer-menu {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .luminix-footer-section1 {
        padding: 40px 0;
    }
    
    .luminix-footer-bottom-text {
        text-align: center;
    }
}

/* ========================================
   AUTHENTICATION PAGE STYLES
   ======================================== */

/* Authentication Section */
.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--color-black);
    padding: var(--space-20) 0;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--glass-bg);
    border-radius: var(--border-radius-2xl);
    padding: var(--space-10);
    backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
}

/* Authentication Form Inputs */
.auth-form input {
    background: var(--glass-bg-light);
    border: var(--glass-border-light);
    color: var(--color-white) !important;
    border-radius: var(--border-radius-md);
    padding: 15px;
    margin-bottom: var(--space-5);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}

.auth-form input:not([type="checkbox"]) {
    -webkit-text-fill-color: var(--color-white) !important;
}

/* Checkbox Styling */
.form-check-input[type="checkbox"] {
    width: 6.5px !important;
    height: 6.5px !important;
    border-radius: 50% !important;
    background-color: var(--glass-bg-light) !important;
    border: 1px solid var(--color-gray-300) !important;
    margin-right: var(--space-2) !important;
    flex-shrink: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.form-check-input[type="checkbox"]:checked {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 14px 14px !important;
}

.form-check-input[type="checkbox"]:focus {
    border-color: var(--color-primary) !important;
    box-shadow: var(--shadow-primary) !important;
    outline: none !important;
}

.form-check-input[type="checkbox"]:hover {
    border-color: var(--color-gray-400) !important;
}

/* Input Placeholders and States */
.auth-form input::placeholder {
    color: var(--color-gray-800);
}

.auth-form input:-webkit-autofill,
.auth-form input:-webkit-autofill:hover,
.auth-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-white) !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--glass-bg-light) inset !important;
    background-color: var(--glass-bg-light) !important;
}

.auth-form input:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-primary);
    outline: none;
}

.auth-form input:not([type="checkbox"]):focus {
    color: var(--color-white) !important;
    -webkit-text-fill-color: var(--color-white) !important;
}

.auth-form input:not([type="checkbox"]):valid {
    color: var(--color-white) !important;
    -webkit-text-fill-color: var(--color-white) !important;
}

/* Authentication Tabs */
.auth-tabs {
    display: flex;
    background: var(--glass-bg-light);
    border-radius: var(--border-radius-md);
    margin-bottom: 30px;
    overflow: hidden;
}

.auth-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--color-gray-600);
    font-family: var(--font-primary);
    font-weight: 500;
}

.auth-tab.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.auth-tab:hover {
    color: var(--color-white);
}

/* Authentication Forms */
.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

/* Social Login Section */
.social-login {
    margin-bottom: 30px;
}

.social-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: var(--space-3);
    background: var(--glass-bg-light);
    border: var(--glass-border-light);
    color: var(--color-white);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    font-family: var(--font-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    background: var(--color-gray-200);
    transform: translateY(-2px);
    color: var(--color-white);
    text-decoration: none;
}

/* Divider */
.divider {
    text-align: center;
    margin: var(--space-5) 0;
    position: relative;
    color: var(--color-gray-600);
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-gray-200);
}

.divider span {
    background: var(--color-black);
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

/* Password Container */
.password-container {
    position: relative;
    margin-bottom: var(--space-5);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-gray-700);
    cursor: pointer;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--color-white);
}

/* Forgot Password Link */
.forgot-password {
    text-align: right;
    margin-bottom: var(--space-5);
}

.forgot-password a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    font-family: var(--font-primary);
}

.forgot-password a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

/* Authentication Button */
.auth-btn {
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    padding: 12px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    width: 100%;
    margin-bottom: var(--space-5);
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-primary-alpha-30);
}

/* Form Check Elements */
.form-check {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-5);
    gap: var(--space-2);
}

.form-check input[type="checkbox"] {
    margin-top: 1px; /* Slight adjustment to raise checkbox position */
}

.form-check-label {
    color: var(--color-gray-800);
    font-size: 14px;
    line-height: 1.4;
    font-family: var(--font-primary);
    margin-left: 0; /* Remove since we use gap in parent */
    margin-top: -2px; /* Pull text up slightly */
    flex: 1; /* Allow label to take remaining space */
}

.form-check-label a {
    color: var(--color-primary);
    text-decoration: none;
}

.form-check-label a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

/* Utility Classes */
.mb-3 {
    margin-bottom: 1rem;
}

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

/* Responsive Design for Authentication */
@media (max-width: 768px) {
    .auth-container {
        margin: var(--space-5);
        padding: 30px var(--space-5);
    }
    
    .auth-section {
        padding: var(--space-10) 0;
        min-height: auto;
    }
}