/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-dark: hsl(165, 60%, 8%);
    --primary-emerald: hsl(165, 55%, 12%);
    --primary-mid: hsl(165, 45%, 18%);
    --primary-light: hsl(165, 35%, 28%);
    --accent-gold: hsl(42, 75%, 52%);
    --accent-gold-dark: hsl(40, 70%, 42%);
    --accent-gold-light: hsl(43, 85%, 65%);
    --accent-gold-rgb: 212, 163, 89;
    
    /* Functional Colors */
    --text-white: hsl(0, 0%, 100%);
    --text-cream: hsl(43, 30%, 94%);
    --text-dark: hsl(165, 40%, 10%);
    --text-muted: hsl(165, 12%, 44%);
    --bg-cream: hsl(40, 20%, 97%);
    --bg-white: hsl(0, 0%, 100%);
    --bg-dark-gray: hsl(165, 20%, 95%);
    
    /* Alerts & Highlights */
    --color-success: hsl(140, 60%, 45%);
    --color-danger: hsl(0, 75%, 55%);
    --color-info: hsl(200, 75%, 45%);
    --color-purple: hsl(265, 60%, 55%);
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Glassmorphism */
    --glass-bg: rgba(14, 38, 31, 0.75);
    --glass-border: rgba(212, 163, 89, 0.15);
    --glass-shadow: 0 16px 40px 0 rgba(4, 15, 12, 0.4);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 10px 30px -10px rgba(212, 163, 89, 0.35);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Helper Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary-emerald);
    color: var(--text-white);
}

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

.btn-accent {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-accent:hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--primary-emerald);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   TOP ALERT BANNER
   ========================================================================== */
.top-banner {
    background-color: var(--primary-dark);
    color: var(--text-cream);
    font-size: 0.875rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 163, 89, 0.2);
    text-align: center;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.badge-new {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-link {
    color: var(--accent-gold-light);
    font-weight: 600;
    text-decoration: underline;
}

.banner-link:hover {
    color: var(--text-white);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    height: var(--header-height);
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--bg-dark-gray);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-emerald);
    color: var(--accent-gold);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(14, 38, 31, 0.15);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

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

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.6875rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-gold-dark);
    margin-top: -2px;
}

/* Desktop Navigation */
.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-mid);
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.main-nav a:hover {
    color: var(--accent-gold-dark);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 110;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-dark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
}

.hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-dark);
    position: absolute;
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Open states */
.nav-toggle.open .hamburger {
    background-color: transparent;
}

.nav-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 105;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    transition: var(--transition-smooth);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 104;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-dark);
    cursor: pointer;
    line-height: 1;
}

.drawer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: block;
    padding: 6px 0;
}

.drawer-link:hover {
    color: var(--accent-gold-dark);
    padding-left: 8px;
}

.drawer-nav .btn-primary {
    text-align: center;
    margin-top: 16px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    background: radial-gradient(circle at 70% 30%, var(--primary-mid) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 100px 0 140px;
    overflow: hidden;
}

/* Animated BG Elements */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.shape-1 {
    top: -10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background-color: var(--accent-gold);
    animation: pulseBg 12s infinite alternate ease-in-out;
}

.shape-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-color: var(--primary-light);
    animation: pulseBg 18s infinite alternate-reverse ease-in-out;
}

@keyframes pulseBg {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 40px) scale(1.15); opacity: 0.18; }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-gold-light);
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-cream);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
    gap: 6px;
}

.trust-badge {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.trust-text {
    font-size: 0.8125rem;
    color: var(--text-cream);
    opacity: 0.8;
}

/* Glassmorphic highlights card */
.hero-glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.hero-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-light));
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.glow-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
    animation: glowAnimation 1.5s infinite alternate;
}

@keyframes glowAnimation {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 15px var(--accent-gold-light); }
}

.card-header h3 {
    color: var(--text-white);
    font-size: 1.375rem;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlights-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    width: 28px;
    height: 28px;
    background-color: rgba(212, 163, 89, 0.15);
    border: 1px solid rgba(212, 163, 89, 0.3);
    color: var(--accent-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-icon svg {
    width: 14px;
    height: 14px;
}

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

.highlight-text strong {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.highlight-text span {
    font-size: 0.875rem;
    color: var(--text-cream);
    opacity: 0.85;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--bg-dark-gray);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(14, 38, 31, 0.15);
    border-color: rgba(212, 163, 89, 0.2);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-icon svg {
    width: 26px;
    height: 26px;
}

.icon-emerald { background-color: rgba(14, 38, 31, 0.08); color: var(--primary-emerald); }
.icon-gold { background-color: rgba(212, 163, 89, 0.12); color: var(--accent-gold-dark); }
.icon-blue { background-color: rgba(69, 137, 240, 0.1); color: var(--color-info); }
.icon-purple { background-color: rgba(147, 51, 234, 0.08); color: var(--color-purple); }

.stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.stat-lbl {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   COURSES SECTION
   ========================================================================== */
.courses-section {
    padding: 60px 0 100px;
    background-color: var(--bg-cream);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.sub-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Tabs Navigation */
.tabs-nav-container {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.tabs-nav {
    display: inline-flex;
    background-color: var(--bg-white);
    padding: 6px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-dark-gray);
    white-space: nowrap;
}

.tab-btn {
    border: none;
    background: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--primary-emerald);
}

.tab-btn.active {
    background-color: var(--primary-emerald);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

/* Tabs Panels */
.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: panelFadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

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

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    border: 1px solid var(--bg-dark-gray);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 163, 89, 0.3);
}

.course-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: rgba(14, 38, 31, 0.06);
    color: var(--primary-mid);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.course-icon {
    font-size: 2.25rem;
    margin-bottom: 24px;
    display: inline-block;
}

.course-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.course-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.course-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--bg-dark-gray);
    padding-top: 20px;
}

.course-points li {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-points li::before {
    content: '✓';
    color: var(--accent-gold-dark);
    font-weight: 800;
}

/* Teachers Showcase */
.languages-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.language-info-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    border: 1px solid var(--bg-dark-gray);
}

.language-info-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.language-info-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.teacher-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.teacher-gender-tag {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-cream);
    border-left: 4px solid var(--primary-emerald);
}

.gender-icon {
    font-size: 1.75rem;
}

.teacher-gender-tag div {
    display: flex;
    flex-direction: column;
}

.teacher-gender-tag strong {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    font-size: 1rem;
}

.teacher-gender-tag span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.languages-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lang-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    border: 1px solid var(--bg-dark-gray);
    display: flex;
    gap: 20px;
    align-items: center;
}

.lang-flag {
    width: 48px;
    height: 48px;
    background-color: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lang-card div {
    display: flex;
    flex-direction: column;
}

.lang-card h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

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

/* ==========================================================================
   TEACHING METHOD SECTION
   ========================================================================== */
.method-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.method-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.method-details .sub-title {
    margin-bottom: 12px;
}

.method-details h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.method-details > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.method-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.m-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.m-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(14, 38, 31, 0.06);
    color: var(--primary-emerald);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.m-text h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

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

/* Systems & Rules Side Card */
.system-rules-card {
    background-color: var(--primary-dark);
    color: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid rgba(212, 163, 89, 0.25);
    box-shadow: var(--shadow-lg);
}

.card-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 24px;
    margin-bottom: 30px;
}

.card-head h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.card-head p {
    color: var(--text-cream);
    opacity: 0.75;
    font-size: 0.875rem;
}

.allowed-platforms {
    margin-bottom: 36px;
}

.platforms-title, .restricted-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

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

.platform-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
}

.platform-item.zoom {
    background-color: rgba(45, 140, 254, 0.15);
    border: 1px solid rgba(45, 140, 254, 0.3);
    color: hsl(210, 100%, 75%);
}

.platform-item.teams {
    background-color: rgba(98, 100, 167, 0.15);
    border: 1px solid rgba(98, 100, 167, 0.3);
    color: hsl(238, 40%, 80%);
}

.platform-logo {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restricted-list ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.restricted-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
}

.cross-icon {
    width: 20px;
    height: 20px;
    background-color: rgba(239, 68, 68, 0.2);
    color: hsl(0, 100%, 75%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.restricted-list li span {
    line-height: 1.4;
    color: var(--text-cream);
    opacity: 0.85;
}

.restricted-list li strong {
    color: var(--text-white);
}

/* ==========================================================================
   ABOUT / MISSION & COMMITMENT
   ========================================================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 48px;
    border: 1px solid var(--bg-dark-gray);
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.mission-card::after { background-color: var(--primary-emerald); }
.commitment-card::after { background-color: var(--accent-gold); }

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.625rem;
    margin-bottom: 16px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================================
   ENROLL / TRIAL REGISTRATION SECTION
   ========================================================================== */
.enroll-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--primary-dark);
    color: var(--text-white);
    overflow: hidden;
}

.enroll-bg {
    position: absolute;
    inset: 0;
    background-radial: radial-gradient(circle at 30% 80%, rgba(14, 38, 31, 0.9) 0%, rgba(4, 15, 12, 1) 100%);
    opacity: 0.95;
    z-index: 1;
}

.enroll-section .container {
    position: relative;
    z-index: 2;
}

.enroll-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.enroll-info h2 {
    color: var(--text-white);
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.enroll-info > p {
    color: var(--text-cream);
    opacity: 0.85;
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.badge-trial {
    background-color: rgba(212, 163, 89, 0.15);
    border: 1px solid rgba(212, 163, 89, 0.3);
    color: var(--accent-gold-light);
    font-weight: 700;
    font-size: 0.8125rem;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.steps-indicators {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-line {
    display: flex;
    gap: 20px;
}

.step-num {
    width: 36px;
    height: 36px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(212, 163, 89, 0.25);
}

.step-line div h5 {
    color: var(--text-white);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.step-line div p {
    color: var(--text-cream);
    opacity: 0.75;
    font-size: 0.875rem;
}

/* Enrollment Form Card */
.enroll-form-card {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.enroll-form-card h3 {
    font-size: 1.625rem;
    margin-bottom: 6px;
}

.enroll-form-card > p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

input, select, textarea {
    font-family: inherit;
    font-size: 0.9375rem;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--bg-dark-gray);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

input::placeholder, textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-emerald);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(14, 38, 31, 0.06);
}

/* Form Validation Styling */
.form-group.invalid input,
.form-group.invalid select {
    border-color: var(--color-danger);
    background-color: hsl(0, 100%, 99%);
}

.form-group.invalid .error-msg {
    display: block;
}

.error-msg {
    display: none;
    color: var(--color-danger);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 6px;
}

textarea {
    resize: vertical;
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(4, 15, 12, 0.6);
    backdrop-filter: blur(8px);
}

.modal-dialog {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 500px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.open .modal-dialog {
    transform: scale(1);
}

.modal-content {
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-dark);
}

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

.success-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 24px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.modal-body h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.success-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.booking-summary {
    background-color: var(--bg-cream);
    border: 1px solid var(--bg-dark-gray);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    text-align: left;
    margin-bottom: 24px;
}

.booking-summary h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--bg-dark-gray);
    padding-bottom: 8px;
    color: var(--primary-dark);
}

.booking-summary ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.875rem;
}

.booking-summary li {
    display: flex;
    justify-content: space-between;
}

.booking-summary li span {
    font-weight: 600;
    color: var(--text-dark);
}

.modal-next-steps {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.modal-next-steps .highlight {
    font-weight: 700;
    color: var(--primary-emerald);
}

.modal-body .btn-primary {
    width: 100%;
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-emerald);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    z-index: 90;
    transition: var(--transition-smooth);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 80px 0 0;
    border-top: 1px solid rgba(212, 163, 89, 0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand .logo-title {
    color: var(--text-white);
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--text-cream);
    opacity: 0.8;
    margin-bottom: 24px;
    line-height: 1.5;
}

.footer-prayers {
    border-left: 3px solid var(--accent-gold);
    padding-left: 16px;
}

.arabic-prayer {
    font-family: Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-gold-light);
    margin-bottom: 6px;
    direction: rtl;
}

.translation-prayer {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-cream);
    opacity: 0.75;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.125rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 0.875rem;
    color: var(--text-cream);
    opacity: 0.8;
}

.footer-col ul a:hover {
    color: var(--accent-gold-light);
    opacity: 1;
    padding-left: 4px;
}

.footer-col p {
    font-size: 0.875rem;
    color: var(--text-cream);
    opacity: 0.8;
    margin-bottom: 20px;
}

.support-channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-item {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold-light);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    font-size: 0.75rem;
    color: var(--text-cream);
    opacity: 0.6;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================================
   NEW IMAGES & WHATSAPP FEATURES
   ========================================================================== */
.hero-image-wrap {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 38, 31, 0) 60%, rgba(14, 38, 31, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-quran-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero-image-wrap:hover .hero-quran-img {
    transform: scale(1.03);
}

.tutor-header-flex {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.tutor-text-content {
    flex: 1;
}

.tutor-img-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.tutor-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 700;
}

.form-or-divider::before, .form-or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1.5px solid var(--bg-dark-gray);
}

.form-or-divider::before {
    margin-right: 12px;
}

.form-or-divider::after {
    margin-left: 12px;
}

.btn-wa-direct {
    background-color: hsl(142, 70%, 45%);
    border-color: hsl(142, 70%, 45%);
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-wa-direct:hover {
    background-color: hsl(142, 70%, 38%);
    border-color: hsl(142, 70%, 38%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(16, 185, 129, 0.4);
    color: var(--text-white);
}

.wa-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wa-btn-icon svg {
    width: 20px;
    height: 20px;
}

.btn-wa-sm {
    background-color: hsl(142, 70%, 45%);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 18px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-wa-sm:hover {
    background-color: hsl(142, 70%, 38%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    color: var(--text-white);
}

.wa-btn-icon-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wa-btn-icon-sm svg {
    width: 14px;
    height: 14px;
    display: block;
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background-color: hsl(142, 70%, 45%);
    color: var(--text-white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    z-index: 99;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    background-color: hsl(142, 70%, 38%);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45);
    color: var(--text-white);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    display: block;
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 8px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    pointer-events: none;
    border: 1px solid var(--glass-border);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

/* Responsive Overrides for New Elements */
@media (max-width: 768px) {
    .tutor-header-flex {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .tutor-img-wrap {
        margin: 0 auto;
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-section h1 {
        font-size: 2.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .languages-showcase {
        grid-template-columns: 1fr;
    }
    
    .method-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .enroll-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-section {
        padding: 60px 0 100px;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .hero-glass-card {
        padding: 24px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .enroll-form-card {
        padding: 30px 20px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
