/* ==========================================================================
   EMPOWERMENT ON EARTH - ULTRA-MODERN 2027 LUXURY MOTION DESIGN SYSTEM
   Inspired by GSAP.com & High-End Future Web Standards
   ========================================================================== */

:root {
    /* Color Palette: Deep Obsidian & Radiant Amber-Gold */
    --bg-dark: #08090e;
    --bg-dark-secondary: #0e111a;
    --bg-card: rgba(18, 22, 36, 0.65);
    --bg-card-hover: rgba(28, 34, 56, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    --primary-orange: #d97f39;
    --primary-amber: #f59e0b;
    --primary-gold: #e5a93b;
    --primary-glow: rgba(217, 127, 57, 0.45);
    
    --accent-indigo: #6366f1;
    --accent-cyan: #06b6d4;
    --accent-emerald: #10b981;
    
    --text-pure: #ffffff;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(217, 127, 57, 0.35);
    
    /* Typography */
    --font-ar-display: 'Alexandria', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-ar-body: 'Cairo', 'Alexandria', sans-serif;
    --font-en-numbers: 'Outfit', sans-serif;
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s var(--ease-in-out);
    --transition-smooth: 0.4s var(--ease-out-expo);
}

/* Base & Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: initial; /* Managed by Lenis Smooth Scroll */
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-ar-body);
    line-height: 1.7;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Selection */
::selection {
    background: var(--primary-orange);
    color: #fff;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-indigo), var(--primary-amber), var(--primary-orange));
    z-index: 1000;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    box-shadow: 0 0 12px var(--primary-glow);
}

/* Custom Interactive Cursor (GSAP Driven) */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--primary-amber);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px var(--primary-amber);
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease-out, background-color 0.2s;
}

.cursor-follower {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(245, 158, 11, 0.6);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-hover .cursor-follower {
    width: 65px;
    height: 65px;
    border-color: rgba(217, 127, 57, 0.9);
    background: rgba(217, 127, 57, 0.08);
}

@media (pointer: coarse) {
    .custom-cursor, .cursor-follower {
        display: none !important;
    }
}

/* Ambient Canvas & Glow Backgrounds */
.ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
}

.glow-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(217, 127, 57, 0.5), transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatGlow1 18s ease-in-out infinite alternate;
}

.glow-2 {
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 70%);
    bottom: 10%;
    left: -150px;
    animation: floatGlow2 22s ease-in-out infinite alternate;
}

.glow-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25), transparent 70%);
    top: 45%;
    right: 25%;
    animation: floatGlow3 15s ease-in-out infinite alternate;
}

@keyframes floatGlow1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 120px) scale(1.15); }
}
@keyframes floatGlow2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, -90px) scale(1.1); }
}
@keyframes floatGlow3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, -70px) scale(0.9); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ar-display);
    color: var(--text-pure);
    font-weight: 700;
    line-height: 1.3;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 10%, #fde68a 50%, #d97f39 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-glow {
    filter: drop-shadow(0 0 25px rgba(217, 127, 57, 0.5));
}

.highlight-orange {
    color: var(--primary-amber);
}

.text-strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-smooth);
}

.glass-panel-glow {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(217, 127, 57, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(217, 127, 57, 0.12);
}

.glass-panel:hover {
    border-color: rgba(217, 127, 57, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(217, 127, 57, 0.2);
}

/* Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-ar-display);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-amber), var(--primary-orange));
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(217, 127, 57, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(217, 127, 57, 0.55);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-pure);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(217, 127, 57, 0.15);
    border-color: var(--primary-orange);
    color: #fff;
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.btn-glow:hover::after {
    opacity: 1;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
}

.nav-container {
    width: 100%;
    max-width: 1340px;
    background: rgba(14, 17, 26, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-badge {
    background: linear-gradient(135deg, var(--primary-amber), var(--primary-orange));
    color: #fff;
    font-weight: 800;
    font-family: var(--font-en-numbers);
    font-size: 1.1rem;
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
}

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

.logo-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-pure);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-en-numbers);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-amber);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s var(--ease-out-expo);
}

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

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

/* Currency Selector */
.currency-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
}

.currency-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-en-numbers);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.currency-btn.active {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: 0 2px 8px rgba(217, 127, 57, 0.4);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Main Layout & Sections */
main {
    position: relative;
    z-index: 1;
}

.section {
    padding: 7rem 1.5rem;
    position: relative;
}

.section-container {
    max-width: 1240px;
    margin: 0 auto;
}

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

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

.section-header.align-right {
    text-align: right;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 127, 57, 0.12);
    color: var(--primary-amber);
    border: 1px solid rgba(217, 127, 57, 0.25);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

.title-separator {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-amber), transparent);
    margin-top: 1rem;
    border-radius: 2px;
}

.title-separator.center {
    margin: 1rem auto 0;
    background: linear-gradient(90deg, transparent, var(--primary-amber), transparent);
}

.title-separator.right {
    margin-right: 0;
}

/* ================= HERO SECTION ================= */
.hero-section {
    min-height: 100vh;
    padding: 9.5rem 1.5rem 5rem;
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(217, 127, 57, 0.3);
    padding: 0.45rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-amber);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.pill-date {
    background: var(--primary-orange);
    color: #fff;
    font-family: var(--font-en-numbers);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: var(--radius-full);
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.en-sub-badge {
    display: block;
    font-family: var(--font-en-numbers);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.hero-subtitle {
    margin-bottom: 1.5rem;
}

.frequency-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #fde68a;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-md);
}

.frequency-tag i {
    color: var(--primary-amber);
    animation: boltFlicker 2s infinite;
}

@keyframes boltFlicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.15); }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.25rem;
    max-width: 620px;
}

.hero-description strong {
    color: var(--text-pure);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.75rem;
}

.play-icon-pulse {
    width: 28px;
    height: 28px;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Countdown Box */
.hero-countdown-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-lg);
    display: inline-block;
}

.countdown-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.countdown-grid {
    display: flex;
    gap: 1.25rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(14, 17, 26, 0.8);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 65px;
}

.countdown-item .number {
    font-family: var(--font-en-numbers);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-amber);
    line-height: 1;
}

.countdown-item .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Hero Media Video Frame */
.hero-media-wrapper {
    position: relative;
}

.video-preview-card {
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.video-banner-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
}

.badge-live {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-live i {
    font-size: 0.55rem;
    animation: blinkRed 1s infinite;
}

@keyframes blinkRed {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.badge-author {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-footer-caption {
    margin-top: 1rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-footer-caption i {
    color: var(--primary-amber);
}

/* ================= PHILOSOPHY SECTION ================= */
.philosophy-card {
    padding: 4rem 3.5rem;
    text-align: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.quote-symbol {
    font-size: 3rem;
    color: var(--primary-amber);
    opacity: 0.25;
    margin-bottom: 1rem;
}

.quran-quote {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fef08a;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    text-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
}

.philosophy-text .lead-text {
    font-size: 1.45rem;
    color: var(--text-pure);
    font-weight: 600;
    margin-bottom: 1rem;
}

.philosophy-text .body-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.9;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-subtle);
}

.pillar-item {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-fast);
}

.pillar-item:hover {
    background: rgba(217, 127, 57, 0.08);
    border-color: rgba(217, 127, 57, 0.3);
    transform: translateY(-4px);
}

.pillar-icon {
    font-size: 1.8rem;
    color: var(--primary-amber);
    margin-bottom: 0.85rem;
}

.pillar-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.pillar-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ================= INSTRUCTOR SECTION ================= */
.instructor-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.instructor-card {
    position: relative;
    padding: 1.25rem;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.instructor-portrait {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-out-expo);
}

.instructor-card:hover .instructor-portrait {
    transform: scale(1.04);
}

.portrait-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 9, 14, 0.9) 0%, transparent 60%);
}

.instructor-badge-floating {
    position: absolute;
    bottom: 2.2rem;
    right: 2.2rem;
    left: 2.2rem;
    background: rgba(14, 17, 26, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.badge-role {
    font-size: 0.85rem;
    color: var(--primary-amber);
    font-weight: 500;
}

.workshop-gallery-preview {
    margin-top: 1.75rem;
}

.gallery-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.85rem;
}

.thumb-img {
    width: calc(33.333% - 0.6rem);
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    filter: brightness(0.85);
}

.thumb-img:hover, .thumb-img.active-thumb {
    border-color: var(--primary-orange);
    filter: brightness(1.1);
    transform: translateY(-3px);
}

.bio-content-box {
    padding: 2.75rem;
}

.bio-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
}

.bio-text strong {
    color: var(--text-pure);
}

.credentials-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.credential-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(217, 127, 57, 0.3);
}

.cred-icon {
    font-size: 1.4rem;
    color: var(--primary-amber);
    min-width: 32px;
}

.cred-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-pure);
    margin-bottom: 0.2rem;
}

.cred-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================= OBJECTIVES SECTION ================= */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.objective-card {
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-smooth);
}

.objective-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 127, 57, 0.4);
}

.obj-num {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-family: var(--font-en-numbers);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
}

.obj-icon {
    font-size: 2rem;
    color: var(--primary-amber);
    margin-bottom: 1.5rem;
}

.obj-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ================= MODULES (SCROLLYTELLING) ================= */
.modules-accordion-timeline {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: relative;
}

.modules-accordion-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: 32px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-amber), var(--accent-indigo), var(--primary-orange));
    opacity: 0.2;
    pointer-events: none;
}

.module-block {
    padding: 2.25rem 2.5rem;
    position: relative;
    margin-right: 50px;
    transition: all var(--transition-smooth);
}

.module-block::before {
    content: '';
    position: absolute;
    top: 2.75rem;
    right: -58px;
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 3px solid var(--primary-amber);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-amber);
    transition: all 0.3s;
}

.module-block:hover::before {
    background: var(--primary-amber);
    transform: scale(1.3);
}

.module-badge {
    display: inline-block;
    background: rgba(217, 127, 57, 0.12);
    color: var(--primary-amber);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.85rem;
}

.module-header-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.module-icon {
    font-size: 1.4rem;
    color: var(--primary-amber);
}

.module-title {
    font-size: 1.4rem;
    color: #fff;
}

.module-content {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.module-highlight-quote {
    margin-top: 1.25rem;
    padding: 1rem 1.5rem;
    background: rgba(245, 158, 11, 0.08);
    border-right: 3px solid var(--primary-amber);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #fef08a;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.module-highlight-quote i {
    color: var(--primary-amber);
    font-size: 1.1rem;
}

/* ================= TRANSFORMATION MATRIX ================= */
.transformation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.shift-card {
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-fast);
}

.shift-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 127, 57, 0.35);
}

.from-side {
    font-size: 0.95rem;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.from-side i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.arrow-indicator {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.to-side {
    font-size: 1rem;
    color: var(--accent-emerald);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
}

.to-side i {
    font-size: 0.85rem;
}

.manifesto-card {
    padding: 3.5rem;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.manifesto-question {
    font-size: 2.1rem;
    color: #fde68a;
    margin-bottom: 1.75rem;
    line-height: 1.4;
}

.manifesto-paragraphs p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.manifesto-paragraphs .highlight-p {
    font-size: 1.3rem;
    color: var(--text-pure);
}

.manifesto-conclusion {
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(217, 127, 57, 0.15), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(217, 127, 57, 0.3);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.manifesto-conclusion i {
    color: var(--primary-amber);
}

/* ================= PRICING PACKAGES ================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    align-items: stretch;
    margin-bottom: 3.5rem;
}

.pricing-card {
    padding: 2.5rem 1.85rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.popular-ribbon {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-amber), var(--primary-orange));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(217, 127, 57, 0.4);
}

.vip-exclusive-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(135deg, #e5e4e2, #b48811);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(229, 228, 226, 0.4);
}

.featured-vip {
    border-color: rgba(229, 169, 59, 0.6);
    background: linear-gradient(180deg, rgba(28, 34, 56, 0.9) 0%, rgba(14, 17, 26, 0.95) 100%);
}

.card-tier-header {
    margin-bottom: 1.5rem;
}

.tier-icon {
    font-size: 1.8rem;
    color: var(--primary-amber);
    margin-bottom: 0.75rem;
}

.tier-name {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.tier-type {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: block;
    line-height: 1.4;
}

.tier-price-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    position: relative;
}

.price-original {
    font-family: var(--font-en-numbers);
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current {
    font-family: var(--font-en-numbers);
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-top: 0.2rem;
}

.discount-pill {
    position: absolute;
    top: 1.25rem;
    left: 1rem;
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

.tabby-installment-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.75rem;
}

.tier-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.tier-features-list li {
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
}

.feature-included {
    color: var(--text-secondary);
}

.feature-included i {
    color: var(--accent-emerald);
    font-size: 0.9rem;
    margin-top: 3px;
}

.feature-included.special-highlight {
    color: #fde68a;
}

.feature-included.special-highlight i {
    color: var(--primary-amber);
}

.feature-excluded {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.feature-excluded i {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 3px;
}

.payment-guarantee-box {
    padding: 1.5rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pay-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.method-icons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.pay-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tabby-tag {
    background: rgba(45, 183, 66, 0.15);
    border-color: rgba(45, 183, 66, 0.3);
    color: #86efac;
    font-weight: 600;
}

/* ================= SCHEDULE & LOGISTICS ================= */
.logistics-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem;
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table tr {
    border-bottom: 1px solid var(--border-subtle);
}

.schedule-table tr:last-child {
    border-bottom: none;
}

.table-header-cell {
    padding: 1.4rem 1.5rem;
    width: 25%;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
    text-align: right;
    display: table-cell;
    vertical-align: middle;
}

.table-header-cell i {
    color: var(--primary-amber);
    margin-left: 0.5rem;
}

.table-data-cell {
    padding: 1.4rem 1.5rem;
    color: var(--text-pure);
    font-size: 1.05rem;
    text-align: right;
    vertical-align: middle;
}

.table-data-cell.font-bold {
    font-weight: 700;
    font-size: 1.15rem;
}

.table-data-cell.font-highlight {
    color: #fde68a;
    font-weight: 700;
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-amber);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.map-link-btn:hover {
    color: #fff;
    text-decoration: underline;
}

/* ================= TESTIMONIALS SLIDER ================= */
.testimonials-slider-wrapper {
    overflow: hidden;
    padding: 1.5rem 0;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-row {
    color: #f59e0b;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
    margin-bottom: 1.25rem;
}

.testi-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.75rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-amber);
    font-size: 1.1rem;
}

.author-name {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.15rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================= RELATED WORKSHOPS ================= */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.course-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo);
}

.related-card:hover .course-thumb img {
    transform: scale(1.08);
}

.course-cat {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(14, 17, 26, 0.8);
    backdrop-filter: blur(10px);
    color: var(--primary-amber);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.course-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.course-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #fff;
}

.course-price {
    font-family: var(--font-en-numbers);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-amber);
    margin-bottom: 1.25rem;
}

.course-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.course-link:hover {
    color: var(--primary-amber);
}

/* ================= FOOTER ================= */
.site-footer {
    background: #050609;
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 1.5rem 2rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 1.25rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pay-title {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.we-accept-img {
    height: 24px;
    opacity: 0.85;
}

.footer-heading {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
}

.footer-links-list, .footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--primary-amber);
    padding-right: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.footer-contact-list i {
    color: var(--primary-amber);
    margin-top: 4px;
}

.footer-contact-list a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ================= FLOATING & STICKY ELEMENTS ================= */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: #111827;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    border: 1px solid var(--border-subtle);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(10px);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.sonar-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: sonarEffect 2s infinite;
}

@keyframes sonarEffect {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.sticky-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(14, 17, 26, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(217, 127, 57, 0.3);
    padding: 0.85rem 1.5rem;
    z-index: 700;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.sticky-booking-bar.visible {
    transform: translateY(0);
}

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

.bar-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.bar-details {
    font-size: 0.82rem;
    color: var(--primary-amber);
}

/* ================= MODALS ================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.active {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: 1.5rem;
}

.modal-close-btn {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.modal-video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.modal-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.checkout-modal-box {
    max-width: 520px;
    padding: 2.5rem;
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.checkout-icon {
    font-size: 2.2rem;
    color: var(--primary-amber);
    margin-bottom: 0.5rem;
}

.checkout-title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.checkout-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.checkout-sub strong {
    color: var(--primary-amber);
}

.checkout-summary-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.75rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.total-row {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.highlight-price {
    color: var(--primary-amber);
    font-family: var(--font-en-numbers);
    font-size: 1.4rem;
}

.tabby-badge-preview {
    font-size: 0.8rem;
    color: #38bdf8;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: right;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-family: var(--font-ar-body);
    font-size: 0.95rem;
    color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-amber);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.checkout-security-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    text-align: center;
    justify-content: center;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .philosophy-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 8rem;
    }
    .instructor-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-track {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .transformation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .pricing-grid,
    .objectives-grid,
    .related-grid,
    .transformation-grid,
    .philosophy-pillars,
    .footer-container {
        grid-template-columns: 1fr;
    }
    .credentials-list {
        grid-template-columns: 1fr;
    }
    .countdown-grid {
        gap: 0.5rem;
    }
    .countdown-item {
        min-width: 50px;
        padding: 0.4rem 0.6rem;
    }
    .countdown-item .number {
        font-size: 1.2rem;
    }
    .table-header-cell, .table-data-cell {
        display: block;
        width: 100%;
        padding: 0.75rem 0.5rem;
    }
    .module-block {
        margin-right: 0;
        padding: 1.5rem;
    }
    .modules-accordion-timeline::before {
        display: none;
    }
    .module-block::before {
        display: none;
    }
}
