/* ==============================================
   MR CLASSES — PREMIUM DESIGN SYSTEM
   Agency-Grade EdTech Website
   ============================================== */

/* ==============================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ============================================== */
:root {
    /* Brand Colors */
    --primary: #1E3A8A;
    --primary-light: #2748a0;
    --primary-dark: #152d6b;
    --secondary: #2563EB;
    --secondary-light: #3b82f6;
    --accent: #F59E0B;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    --cta: #FF8A00;
    --cta-hover: #e67a00;
    --success: #10b981;
    --success-light: #34d399;

    /* Neutrals */
    --bg: #F8FAFC;
    --bg-light: #F1F5F9;
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --white: #FFFFFF;
    --text-main: #0F172A;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --fs-display: clamp(2.5rem, 5vw, 4rem);
    --fs-h1: clamp(2rem, 4vw, 3rem);
    --fs-h2: clamp(1.75rem, 3.5vw, 2.5rem);
    --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
    --fs-h4: clamp(1.05rem, 1.5vw, 1.25rem);
    --fs-body: 1rem;
    --fs-sm: 0.875rem;
    --fs-xs: 0.75rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.12), 0 8px 16px -8px rgba(0,0,0,0.06);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.18);
    --shadow-glow: 0 0 30px rgba(37,99,235,0.15);
    --shadow-glow-accent: 0 0 30px rgba(245,158,11,0.2);
    --shadow-card: 0 4px 24px rgba(30,58,138,0.06);

    /* Borders & Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration: 300ms;
    --duration-slow: 500ms;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-dark: rgba(15, 23, 42, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-header: 1000;
    --z-overlay: 2000;
    --z-modal: 3000;
    --z-toast: 4000;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--secondary);
    color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
    margin-bottom: var(--space-md);
    color: var(--text-body);
    line-height: 1.8;
}

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

a:hover { color: var(--accent); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
}

/* ==============================================
   3. LAYOUT SYSTEM
   ============================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}


.section-sm {
    padding: var(--space-3xl) 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-darker { background-color: var(--bg-darker); }
.bg-primary { background-color: var(--primary); }
.bg-white { background-color: var(--white); }

.grid {
    display: grid;
    gap: var(--space-xl);
}

.flex {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent) !important; }
.text-primary { color: var(--primary) !important; }
.text-muted { color: var(--text-muted) !important; }

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(245,158,11,0.08));
    color: var(--secondary);
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(37,99,235,0.12);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: var(--fs-h2);
    font-weight: 800;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header.light h2 {
    background: linear-gradient(135deg, var(--white), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header.light p {
    color: rgba(255,255,255,0.7);
}

/* ==============================================
   4. BUTTONS
   ============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.8rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--fs-body);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30,58,138,0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30,58,138,0.35);
    color: var(--white);
}

.btn-cta {
    background: linear-gradient(135deg, var(--cta), var(--accent));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255,138,0,0.3);
    font-weight: 700;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,138,0,0.4);
    color: var(--white);
}

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

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

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
}

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

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

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

.btn-success {
    background: linear-gradient(135deg, var(--success), var(--success-light));
    color: var(--white);
}

.btn-success:hover {
    transform: translateY(-2px);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: var(--fs-sm);
}

.btn-block { width: 100%; }

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

/* ==============================================
   5. PREMIUM EFFECTS & ANIMATIONS
   ============================================== */

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255,255,255,0.08);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 40%, var(--accent) 80%, var(--cta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes floatDelayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
}

.float { animation: float 4s ease-in-out infinite; }
.float-slow { animation: floatSlow 6s ease-in-out infinite; }
.float-delayed { animation: floatDelayed 5s ease-in-out infinite 1s; }

/* Pulse */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.8); opacity: 0; }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--success);
    animation: pulseDot 2s ease-in-out infinite;
}

/* Shimmer */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Glow Border */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(37,99,235,0.2), 0 0 15px rgba(37,99,235,0.1); }
    50% { box-shadow: 0 0 15px rgba(37,99,235,0.4), 0 0 30px rgba(37,99,235,0.2); }
}

.glow-border {
    animation: glowPulse 3s ease-in-out infinite;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.4s; }

.stagger-children.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Decorative Shapes */
.shape-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.shape-circle {
    position: absolute;
    border: 2px dashed rgba(37,99,235,0.15);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.shape-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(37,99,235,0.15) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
}

/* ==============================================
   6. URGENCY BANNER
   ============================================== */
.urgency-banner {
    background: linear-gradient(90deg, var(--cta), var(--accent), var(--cta));
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
    color: var(--white);
    text-align: center;
    padding: 0.6rem var(--space-xl);
    font-size: var(--fs-sm);
    font-weight: 600;
    position: relative;
    z-index: var(--z-header);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.urgency-banner .pulse-dot {
    background: var(--white);
}

.urgency-banner .pulse-dot::after {
    background: var(--white);
}

.urgency-close {
    position: absolute;
    right: var(--space-lg);
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
    line-height: 1;
}

.urgency-close:hover { opacity: 1; }

.urgency-banner.hidden { display: none; }

/* ==============================================
   7. HEADER & NAVIGATION
   ============================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.85);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.main-nav ul {
    display: flex;
    gap: var(--space-xs);
}

.main-nav li a,
.main-nav li div {
    color: var(--text-body);
    font-weight: 500;
    font-size: var(--fs-sm);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    display: block;
}

.main-nav li a:hover,
.main-nav li div:hover {
    color: var(--primary);
    background: rgba(37,99,235,0.06);
}

.header-actions {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.header-cta-call {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--fs-sm);
    transition: var(--transition);
    background: transparent;
    text-decoration: none;
}

.header-cta-call:hover {
    background: var(--primary);
    color: var(--white);
}

.header-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1.25rem;
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--fs-sm);
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid var(--success);
}

.header-cta-wa:hover {
    background: #059669;
    border-color: #059669;
    color: var(--white);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    padding: var(--space-sm);
    border-radius: var(--radius);
}

.mobile-toggle:hover {
    background: rgba(37,99,235,0.06);
}

/* ==============================================
   8. HERO SECTION
   ============================================== */
.hero {
    position: relative;
    padding: var(--space-4xl) 0 var(--space-5xl);
    background: linear-gradient(165deg, var(--white) 0%, #eef2ff 25%, #e0e7ff 50%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: var(--z-base);
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.05));
    color: var(--success);
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(16,185,129,0.2);
}

.hero-title {
    font-size: var(--fs-display);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: var(--space-lg);
    color: var(--text-main);
}

.hero-title .highlight {
    position: relative;
    color: var(--secondary);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(245,158,11,0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.hero-trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Hero Visual (Right Side) */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-main {
    width: 380px;
    height: 460px;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-main .hero-logo-display {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,0.4) 100%);
    z-index: 1;
}

/* Floating Achievement Cards */
.hero-float-card {
    position: absolute;
    background: var(--white);
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 5;
    border: 1px solid rgba(0,0,0,0.04);
}

.hero-float-card .hf-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-float-card .hf-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1.2;
}

.hero-float-card .hf-text span {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    font-weight: 500;
}

.hfc-1 {
    top: 5%;
    left: -15%;
    animation: float 4s ease-in-out infinite;
}

.hfc-1 .hf-icon {
    background: rgba(16,185,129,0.1);
    color: var(--success);
}

.hfc-2 {
    bottom: 25%;
    right: -12%;
    animation: floatDelayed 5s ease-in-out infinite;
}

.hfc-2 .hf-icon {
    background: rgba(245,158,11,0.1);
    color: var(--accent);
}

.hfc-3 {
    bottom: 5%;
    left: -8%;
    animation: floatSlow 6s ease-in-out infinite;
}

.hfc-3 .hf-icon {
    background: rgba(37,99,235,0.1);
    color: var(--secondary);
}

.hfc-4 {
    top: 30%;
    right: -18%;
    animation: float 5s ease-in-out infinite 0.5s;
}

.hfc-4 .hf-icon {
    background: rgba(139,92,246,0.1);
    color: #8b5cf6;
}

/* Hero Decorative Shapes */
.hero-shape-1 {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(37,99,235,0.1);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite;
    z-index: 0;
}

.hero-shape-2 {
    position: absolute;
    bottom: 15%;
    left: 3%;
    width: 80px;
    height: 80px;
    background: rgba(245,158,11,0.08);
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    animation: floatDelayed 7s ease-in-out infinite;
    z-index: 0;
}

/* ==============================================
   9. TRUST BAR
   ============================================== */
.trust-bar {
    padding: var(--space-2xl) 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-bar-label {
    text-align: center;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.trust-bar-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.6rem 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-body);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.trust-bar-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.trust-bar-item svg,
.trust-bar-item .tbi-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ==============================================
   10. ACHIEVEMENT METRICS
   ============================================== */
.metrics-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1e3a 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.metrics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.metrics-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: var(--z-base);
}

.metric-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.metric-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(245,158,11,0.3);
}

.metric-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(255,138,0,0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.5rem;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-xs);
    display: inline-flex;
    align-items: baseline;
}

.metric-value .counter {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    font-family: inherit;
}

.metric-suffix {
    font-size: 1.75rem;
    color: var(--accent);
    margin-left: 2px;
}

.metric-label {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

/* ==============================================
   11. COURSES ECOSYSTEM
   ============================================== */
.courses-section {
    position: relative;
    overflow: hidden;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(37,99,235,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.course-card-top {
    padding: var(--space-2xl) var(--space-xl) var(--space-lg);
    position: relative;
}

.course-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.course-card-icon.icon-blue { background: rgba(37,99,235,0.1); }
.course-card-icon.icon-green { background: rgba(16,185,129,0.1); }
.course-card-icon.icon-purple { background: rgba(139,92,246,0.1); }
.course-card-icon.icon-orange { background: rgba(245,158,11,0.1); }
.course-card-icon.icon-pink { background: rgba(236,72,153,0.1); }
.course-card-icon.icon-teal { background: rgba(20,184,166,0.1); }

.course-card h3 {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-sm);
}

.course-card .course-desc {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-lg);
}

.course-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.course-highlights li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--text-body);
}

.course-highlights li svg {
    color: var(--success);
    flex-shrink: 0;
}

.course-card-bottom {
    padding: var(--space-lg) var(--space-xl);
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-tag {
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-board { background: rgba(37,99,235,0.1); color: var(--secondary); }
.tag-neet { background: rgba(16,185,129,0.1); color: var(--success); }
.tag-commerce { background: rgba(245,158,11,0.1); color: var(--accent-dark); }

.course-card .learn-more {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition);
}

.course-card:hover .learn-more {
    color: var(--accent);
    gap: var(--space-sm);
}

/* ==============================================
   12. MEET RAHIM SIR
   ============================================== */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image .about-logo-display {
    width: 200px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent), var(--cta));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    z-index: 2;
}

.about-experience-badge .exp-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .exp-text {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.about-content .about-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.about-content h2 {
    font-size: var(--fs-h2);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.about-content .about-desc {
    color: var(--text-body);
    margin-bottom: var(--space-xl);
    line-height: 1.9;
}

.about-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.credential-item:hover {
    background: rgba(37,99,235,0.05);
    transform: translateY(-2px);
}

.credential-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.credential-item h4 {
    font-size: var(--fs-sm);
    margin-bottom: 2px;
    color: var(--text-main);
}

.credential-item p {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin: 0;
}

/* ==============================================
   13. STUDENT SUCCESS STORIES (Testimonials)
   ============================================== */
.testimonials-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.testimonials-track-wrapper {
    overflow: hidden;
    margin: 0 calc(-1 * var(--space-xl));
    padding: 0 var(--space-xl);
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform 0.5s var(--ease);
}

.testimonial-card {
    min-width: 380px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    right: var(--space-xl);
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(37,99,235,0.06);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-stars svg {
    color: var(--accent);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-avatar.av-blue { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.testimonial-avatar.av-green { background: linear-gradient(135deg, #059669, #10b981); }
.testimonial-avatar.av-purple { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.testimonial-avatar.av-orange { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.testimonial-avatar.av-pink { background: linear-gradient(135deg, #db2777, #ec4899); }

.testimonial-author-info h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.testimonial-author-info span {
    font-size: var(--fs-xs);
    color: var(--success);
    font-weight: 600;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-body);
}

.testimonial-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: var(--space-sm);
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--secondary);
    width: 24px;
    border-radius: var(--radius-full);
}

/* ==============================================
   14. RESULTS SHOWCASE
   ============================================== */
.results-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: var(--z-base);
}

.result-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.result-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(245,158,11,0.3);
}

.result-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--cta));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-heading);
    border: 3px solid rgba(255,255,255,0.2);
}

.result-card h4 {
    color: var(--white);
    font-size: var(--fs-h4);
    margin-bottom: var(--space-xs);
}

.result-exam {
    color: var(--accent);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.result-score {
    display: inline-block;
    background: rgba(245,158,11,0.15);
    color: var(--accent-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 700;
}

/* ==============================================
   15. NOTES MARKETPLACE
   ============================================== */
.notes-section {
    position: relative;
}

.notes-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.notes-filter-btn {
    padding: 0.5rem 1.25rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
}

.notes-filter-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.notes-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.note-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

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

.note-card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}

.badge-bestseller { background: var(--accent); color: var(--white); }
.badge-new { background: var(--success); color: var(--white); }
.badge-popular { background: var(--secondary); color: var(--white); }

.note-wishlist {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    color: var(--text-muted);
}

.note-wishlist:hover {
    color: #ef4444;
    background: var(--white);
    transform: scale(1.1);
}

.note-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.note-thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    font-weight: 800;
    font-family: var(--font-heading);
    position: relative;
}

.note-thumb-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.note-thumb.nt-blue { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.note-thumb.nt-green { background: linear-gradient(135deg, #047857, #10b981); }
.note-thumb.nt-purple { background: linear-gradient(135deg, #5b21b6, #8b5cf6); }
.note-thumb.nt-orange { background: linear-gradient(135deg, #c2410c, #f97316); }
.note-thumb.nt-pink { background: linear-gradient(135deg, #9d174d, #ec4899); }
.note-thumb.nt-teal { background: linear-gradient(135deg, #0f766e, #14b8a6); }

.note-content {
    padding: var(--space-lg);
}

.note-category {
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.note-card h3 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.note-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.note-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.note-meta .stars {
    color: var(--accent);
}

.note-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.note-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.note-price .original {
    font-size: var(--fs-sm);
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
    margin-left: var(--space-sm);
}

.note-buy-btn {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--cta), var(--accent));
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: var(--transition);
}

.note-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,138,0,0.3);
}

.notes-payment-info {
    text-align: center;
    margin-top: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.payment-badge svg {
    color: var(--success);
}

/* ==============================================
   16. LEARNING RESOURCES
   ============================================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.resource-card {
    padding: var(--space-xl) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    cursor: pointer;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.resource-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    transition: var(--transition);
}

.resource-card:hover .resource-icon {
    transform: scale(1.1);
}

.resource-card h4 {
    font-size: var(--fs-sm);
    color: var(--text-main);
    margin-bottom: var(--space-xs);
}

.resource-card p {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin: 0;
}

/* ==============================================
   17. YOUTUBE HUB
   ============================================== */
.youtube-section {
    background: linear-gradient(180deg, var(--bg-light), var(--white));
}

.youtube-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.youtube-featured {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-dark);
    aspect-ratio: 16/9;
    position: relative;
}

.youtube-featured iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-featured .yt-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: var(--space-md);
    cursor: pointer;
}

.youtube-featured .yt-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.9;
}

.youtube-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.yt-video-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    cursor: pointer;
}

.yt-video-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.yt-thumb {
    width: 140px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.yt-thumb::after {
    content: '▶';
    color: var(--white);
    font-size: 1.25rem;
    position: absolute;
}

.yt-video-info h4 {
    font-size: var(--fs-sm);
    color: var(--text-main);
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-video-info span {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.yt-subscribe-card {
    padding: var(--space-xl);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    margin-top: auto;
}

.yt-subscribe-card h4 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.yt-subscribe-card p {
    color: rgba(255,255,255,0.8);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-md);
}

.yt-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-md);
}

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

.yt-stat strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
}

.yt-stat span {
    font-size: var(--fs-xs);
    opacity: 0.8;
}

/* ==============================================
   18. INSTAGRAM REELS HUB
   ============================================== */
.reels-section {
    background: var(--white);
}

.reels-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.reel-stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-body);
    border: 1px solid var(--border);
}

.reel-stat strong {
    color: var(--primary);
    font-weight: 700;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.reel-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.reel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.reel-thumb-wrapper {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
}

.reel-thumb-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.reel-thumb-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.reel-topic-tag {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: rgba(255,255,255,0.92);
    color: var(--text-main);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--fs-xs);
    z-index: 2;
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.reel-card:hover .reel-play-btn {
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-play-btn svg {
    color: var(--white);
    margin-left: 3px;
}

.reel-info {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.reel-info h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: var(--space-xs);
}

.reel-info p {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

.reel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.reel-view-link {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition);
}

.reel-card:hover .reel-view-link {
    color: var(--accent);
}

.reels-cta {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.reels-cta-content h3 {
    color: var(--white);
    font-size: var(--fs-h3);
    margin-bottom: var(--space-sm);
}

.reels-cta-content p {
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* ==============================================
   19. WHY PARENTS TRUST US
   ============================================== */
.parents-section {
    background: var(--bg-light);
}

.parents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.trust-feature {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.trust-feature:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.trust-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
}

.trust-feature h4 {
    font-size: var(--fs-body);
    margin-bottom: 4px;
}

.trust-feature p {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin: 0;
}

.parent-testimonials {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.parent-testimonial {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.parent-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.parent-testimonial p {
    font-style: italic;
    color: var(--text-body);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.parent-testimonial .pt-author {
    font-weight: 700;
    color: var(--text-main);
    font-size: var(--fs-sm);
}

.parent-testimonial .pt-child {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* ==============================================
   20. FAQ SECTION
   ============================================== */
.faq-section {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--secondary);
}

.faq-item.active {
    background: var(--white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1;
}

.faq-item.active .faq-icon {
    background: var(--secondary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
    padding: 0 var(--space-xl) var(--space-xl);
}

.faq-answer-inner p {
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ==============================================
   21. CONVERSION CTA
   ============================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: var(--z-base);
}

.cta-content h2 {
    color: var(--white);
    font-size: var(--fs-h2);
    margin-bottom: var(--space-md);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

.cta-stats {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

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

.cta-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.cta-stat span {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.7);
}

.cta-form {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.cta-form h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: var(--fs-h3);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-input {
    width: 100%;
    padding: 0.85rem var(--space-lg);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    transition: var(--transition);
}

.form-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
}

.form-select {
    width: 100%;
    padding: 0.85rem var(--space-lg);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
}

.form-select option {
    background: var(--bg-dark);
    color: var(--white);
}

.form-select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    margin-top: var(--space-sm);
}

.form-note {
    text-align: center;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.5);
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* ==============================================
   22. FOOTER
   ============================================== */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding-top: var(--space-4xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.footer-brand .logo-text span {
    color: rgba(255,255,255,0.5);
}

.footer-brand > p {
    color: rgba(255,255,255,0.55);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: var(--fs-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    color: rgba(255,255,255,0.55);
    font-size: var(--fs-sm);
}

.footer-contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: var(--fs-sm);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: var(--fs-sm);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ==============================================
   23. STICKY CONVERSION ELEMENTS
   ============================================== */

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: var(--z-sticky);
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    position: relative;
}

.fab:hover {
    transform: scale(1.1);
    color: var(--white);
}

.fab-whatsapp {
    background: #25D366;
}

.fab-whatsapp:hover {
    background: #1da851;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.fab-call {
    background: var(--secondary);
}

.fab-call:hover {
    background: var(--primary);
    box-shadow: 0 8px 25px rgba(37,99,235,0.4);
}

.fab-label {
    position: absolute;
    right: calc(100% + var(--space-sm));
    background: var(--bg-dark);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius);
    font-size: var(--fs-xs);
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
}

.fab:hover .fab-label {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Bottom CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--space-sm) var(--space-md);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: var(--z-sticky);
    gap: var(--space-sm);
    border-top: 1px solid var(--border);
}

.mobile-cta-bar a {
    flex: 1;
    padding: 0.65rem;
    text-align: center;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    text-decoration: none;
}

/* ==============================================
   24. POPUPS & MODALS
   ============================================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.6);
    backdrop-filter: blur(4px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: var(--space-xl);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    padding: var(--space-2xl);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 1.1rem;
}

.popup-close:hover {
    background: var(--border);
    color: var(--text-main);
}

.popup-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.popup-header .popup-emoji {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
}

.popup-header h3 {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-sm);
}

.popup-header p {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin: 0;
}

.popup-form .form-group {
    margin-bottom: var(--space-md);
}

.popup-form .form-input {
    background: var(--bg-light);
    color: var(--text-main);
    border-color: var(--border);
}

.popup-form .form-input::placeholder {
    color: var(--text-light);
}

.popup-form .form-input:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* ==============================================
   25. RESPONSIVE DESIGN
   ============================================== */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .hero-grid {
        gap: var(--space-xl);
    }

    .hfc-1 { left: -5%; }
    .hfc-2 { right: -5%; }
    .hfc-4 { right: -8%; }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-image-main {
        width: 320px;
        height: 400px;
    }

    .hfc-1 { left: -5%; top: 15%; }
    .hfc-2 { right: -5%; }
    .hfc-3 { left: 0; }
    .hfc-4 { right: -8%; }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }

    .about-credentials {
        justify-items: center;
    }

    .youtube-grid {
        grid-template-columns: 1fr;
    }

    .parents-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    html { font-size: 15px; }

    .section {
        padding: var(--space-3xl) 0;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .testimonials-track-wrapper {
        margin: 0 calc(-1 * var(--space-md));
        padding: 0 var(--space-md);
    }

    /* Header Mobile */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-md);
        padding: var(--space-md) 0;
        border-top: 1px solid var(--border);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li a,
    .main-nav li div {
        padding: 0.85rem var(--space-xl);
        border-radius: 0;
    }

    .mobile-toggle { display: block; }

    .header-cta-call span,
    .header-cta-wa span {
        display: none;
    }

    .header-cta-call,
    .header-cta-wa {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    /* Hero Mobile */
    .hero {
        padding: var(--space-2xl) 0 var(--space-3xl);
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-float-card {
        display: none;
    }

    .hero-image-main {
        width: 260px;
        height: 320px;
    }

    /* Metrics Mobile */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .metric-value {
        font-size: 2.25rem;
    }

    /* Courses Mobile */
    .courses-grid {
        grid-template-columns: 1fr;
    }

    /* Notes Mobile */
    .notes-grid {
        grid-template-columns: 1fr;
    }

    .notes-filter {
        gap: var(--space-xs);
    }

    .notes-filter-btn {
        padding: 0.4rem 0.85rem;
        font-size: var(--fs-xs);
    }

    /* Reels Mobile */
    .reels-grid {
        grid-template-columns: 1fr;
    }

    .reels-cta {
        flex-direction: column;
        text-align: center;
    }

    /* Testimonials Mobile */
    .testimonial-card {
        min-width: calc(100vw - 3rem);
    }

    /* Results Mobile */
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    /* Footer Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile CTA Bar */
    .mobile-cta-bar {
        display: flex;
    }

    .fab-container {
        bottom: 80px;
    }

    /* CTA Form Mobile */
    .cta-stats {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-image-main {
        width: 220px;
        height: 270px;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-bar-items {
        gap: var(--space-md);
    }

    .trust-bar-item {
        font-size: var(--fs-xs);
        padding: 0.4rem 0.85rem;
    }

    .about-credentials {
        grid-template-columns: 1fr;
    }

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

/* Print Styles */
@media print {
    .site-header, .fab-container, .mobile-cta-bar,
    .urgency-banner, .popup-overlay {
        display: none !important;
    }

    .section { padding: 2rem 0; }
    body { color: #000; }
}

/* ==============================================
   YOUTUBE VIDEO SHOWCASE SECTION
   ============================================== */

.yt-showcase-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0c1631 100%);
    padding: var(--space-section) 0;
    overflow: hidden;
}

.yt-showcase-section .section-header h2 {
    color: var(--white);
}

.yt-showcase-section .section-header p {
    color: var(--text-light);
}

.yt-showcase-section .section-badge {
    background: rgba(255,255,255,0.08);
    color: var(--accent);
    border-color: rgba(255,255,255,0.1);
}

/* Featured Video Hero */
.yt-hero-featured {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.yt-hero-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.yt-hero-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
}

.yt-hero-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.yt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--text-light);
    background: rgba(255,0,0,0.1);
    padding: 0.4rem 0.85rem;
    border-radius: 99px;
    width: fit-content;
    border: 1px solid rgba(255,0,0,0.2);
}

.yt-hero-info h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.yt-hero-info p {
    color: var(--text-light);
    font-size: var(--fs-body);
    line-height: 1.7;
    margin: 0;
}

.yt-hero-stats {
    display: flex;
    gap: 1.75rem;
}

.yt-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.yt-hero-stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.yt-hero-stat span {
    font-size: var(--fs-xs);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.yt-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #FF0000;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: var(--fs-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(255,0,0,0.3);
}

.yt-subscribe-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,0,0,0.4);
}

/* Filter Bar */
.yt-filter-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.yt-filter-bar::-webkit-scrollbar {
    display: none;
}

.yt-filter-tab {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    padding: 0.6rem 1.25rem;
    border-radius: 99px;
    font-size: var(--fs-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-body);
}

.yt-filter-tab:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}

.yt-filter-tab.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}

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

/* Video Card */
.yt-vcard {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.yt-vcard:hover {
    transform: translateY(-6px);
    border-color: rgba(37,99,235,0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(37,99,235,0.2);
    background: rgba(255,255,255,0.08);
}

.yt-vcard-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
}

.yt-vcard-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.yt-vcard:hover .yt-vcard-thumb img {
    transform: scale(1.08);
}

.yt-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: all 0.35s ease;
}

.yt-vcard:hover .yt-play-overlay {
    opacity: 1;
}

.yt-play-btn-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,0,0,0.4);
    transition: transform 0.3s ease;
}

.yt-play-btn-circle svg {
    width: 22px;
    height: 22px;
    color: white;
    margin-left: 3px;
}

.yt-vcard:hover .yt-play-btn-circle {
    transform: scale(1.12);
}

.yt-vcard-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.85);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.03em;
}

.yt-vcard-info {
    padding: 1rem 1.15rem;
}

.yt-vcard-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.35rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-vcard-channel {
    font-size: var(--fs-xs);
    color: var(--text-light);
}

/* Hidden cards (load more) */
.yt-hidden-card {
    display: none;
}

.yt-video-grid.show-all .yt-hidden-card {
    display: block;
    animation: ytCardReveal 0.5s ease forwards;
}

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

/* Filtered-out cards */
.yt-vcard.yt-filtered-out {
    display: none !important;
}

/* Load More Button */
.yt-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.yt-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    font-size: var(--fs-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.yt-load-more-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.yt-load-more-btn.hidden {
    display: none;
}

/* Subscribe Banner */
.yt-subscribe-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255,0,0,0.12), rgba(255,0,0,0.05));
    border: 1px solid rgba(255,0,0,0.2);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    gap: 2rem;
}

.yt-sub-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.yt-sub-banner-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yt-sub-banner-icon svg {
    width: 28px;
    height: 28px;
    color: #FF0000;
}

.yt-sub-banner-content h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    color: var(--white);
    margin: 0 0 0.3rem;
}

.yt-sub-banner-content p {
    color: var(--text-light);
    margin: 0;
    font-size: var(--fs-sm);
}

.yt-sub-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #FF0000;
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: var(--fs-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,0,0,0.3);
}

.yt-sub-banner-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,0,0,0.4);
}

/* YouTube Lightbox */
.yt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.yt-lightbox.active {
    display: flex;
}

.yt-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    animation: ytFadeIn 0.3s ease;
}

.yt-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    z-index: 2;
    animation: ytScaleIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.yt-lightbox-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.yt-lightbox-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.yt-lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.yt-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

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

@keyframes ytScaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ========== YOUTUBE SECTION RESPONSIVE ========== */
@media (max-width: 992px) {
    .yt-hero-featured {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .yt-subscribe-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
    }

    .yt-sub-banner-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .yt-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .yt-hero-featured {
        padding: 1rem;
    }

    .yt-hero-stats {
        justify-content: center;
    }

    .yt-hero-info {
        align-items: center;
        text-align: center;
    }

    .yt-subscribe-banner {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .yt-video-grid {
        grid-template-columns: 1fr;
    }

    .yt-filter-bar {
        gap: 0.4rem;
    }

    .yt-filter-tab {
        padding: 0.5rem 0.9rem;
        font-size: var(--fs-xs);
    }

    .yt-hero-stat strong {
        font-size: 1.25rem;
    }

    .yt-lightbox-content {
        width: 95%;
    }

    .yt-lightbox-close {
        top: -40px;
        width: 34px;
        height: 34px;
    }
}

/* ==============================================
   PREMIUM ABOUT SECTION
   ============================================== */
.about-premium-section {
    background: linear-gradient(180deg, #0c1631 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.about-premium-bg-glow {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-premium-section .section-header h2 { color: var(--white); }
.about-premium-section .section-header p { color: var(--text-light); }

.about-premium-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

/* Image Column */
.about-premium-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.about-premium-image-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.about-premium-glow-ring {
    position: absolute;
    inset: -6px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--secondary), var(--accent), var(--cta), var(--secondary));
    background-size: 300% 300%;
    animation: aboutGlowRotate 4s ease infinite;
    z-index: 0;
    opacity: 0.7;
    filter: blur(2px);
}

@keyframes aboutGlowRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-premium-img-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
}

.about-premium-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-premium-exp-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--accent), var(--cta));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    box-shadow: 0 8px 30px rgba(245,158,11,0.4);
    border: 4px solid var(--bg-dark);
    z-index: 2;
}

.apeb-num { font-size: 1.75rem; font-weight: 800; line-height: 1; }
.apeb-text { font-size: 0.65rem; font-weight: 600; text-align: center; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.05em; }

/* Social Proof Pills */
.about-premium-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    padding: 0.45rem 0.9rem;
    border-radius: 99px;
    font-size: var(--fs-xs);
    font-weight: 600;
}

.about-pill svg { color: var(--accent); }

/* Content Column */
.about-premium-role {
    font-size: var(--fs-sm);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}

.about-premium-name {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.about-premium-tagline {
    font-size: 1.1rem;
    color: var(--secondary-light);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.about-premium-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
    font-size: var(--fs-body);
}

.about-premium-desc strong { color: var(--accent); }
.about-premium-desc em { color: var(--secondary-light); font-style: normal; }

/* Teaching Philosophy */
.about-premium-philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: var(--space-xl);
}

.ap-philosophy-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: all 0.35s ease;
}

.ap-philosophy-card:hover {
    background: rgba(37,99,235,0.1);
    border-color: rgba(37,99,235,0.25);
    transform: translateY(-3px);
}

.ap-phi-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(245,158,11,0.15));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ap-philosophy-card h4 {
    font-size: var(--fs-sm);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 2px;
}

.ap-philosophy-card p {
    font-size: var(--fs-xs);
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Stats Bar */
.about-premium-stats-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.ap-stat-item {
    text-align: center;
    flex: 1;
}

.ap-stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
    line-height: 1.2;
}

.ap-stat-item span {
    font-size: var(--fs-xs);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ap-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* CTA Buttons */
.about-premium-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    transform: translateY(-2px);
}

/* About Section Responsive */
@media (max-width: 992px) {
    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-premium-image-col { order: -1; }
    .about-premium-image-frame { max-width: 300px; }
}

@media (max-width: 768px) {
    .about-premium-philosophy {
        grid-template-columns: 1fr;
    }
    .about-premium-stats-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .ap-stat-divider { display: none; }
    .ap-stat-item { min-width: 45%; }
}

@media (max-width: 480px) {
    .about-premium-actions {
        flex-direction: column;
    }
    .about-premium-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .about-premium-pills { gap: 0.5rem; }
}

/* ==============================================
   PREMIUM CONTACT SECTION
   ============================================== */
.contact-premium-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #080e1f 100%);
    position: relative;
    overflow: hidden;
}

.contact-premium-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-orb-1 {
    top: -10%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
}

.contact-orb-2 {
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
}

.contact-premium-section .section-header h2 { color: var(--white); }
.contact-premium-section .section-header p { color: var(--text-light); }

/* Quick Contact Cards */
.contact-premium-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.cp-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
    cursor: default;
}

a.cp-card { cursor: pointer; }

.cp-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cp-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cp-card-call .cp-card-icon {
    background: rgba(37,99,235,0.15);
    color: var(--secondary-light);
}

.cp-card-whatsapp .cp-card-icon {
    background: rgba(37,211,102,0.15);
    color: #25D366;
}

.cp-card-location .cp-card-icon {
    background: rgba(245,158,11,0.15);
    color: var(--accent);
}

.cp-card-hours .cp-card-icon {
    background: rgba(139,92,246,0.15);
    color: #a78bfa;
}

.cp-card-label {
    font-size: var(--fs-xs);
    color: var(--text-light);
    display: block;
    margin-bottom: 2px;
}

.cp-card-text strong {
    font-size: var(--fs-sm);
    color: var(--white);
    font-weight: 700;
}

.cp-card-arrow {
    margin-left: auto;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cp-card:hover .cp-card-arrow {
    transform: translateX(4px);
    color: var(--accent);
}

/* Contact Grid: Map + Form */
.contact-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Map Column */
.cp-map-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.cp-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: brightness(0.85) contrast(1.1) saturate(0.8);
}

.cp-info-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.cp-info-badge {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.cp-info-badge:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-2px);
}

.cp-ib-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.cp-info-badge strong {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
    line-height: 1.2;
}

.cp-info-badge span {
    font-size: var(--fs-xs);
    color: var(--text-light);
}

/* Premium Form */
.cp-form-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.cp-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cp-form-header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cta), var(--accent));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cp-form-header h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    color: var(--white);
    margin: 0;
}

.cp-form-header p {
    font-size: var(--fs-xs);
    color: var(--text-light);
    margin: 0;
}

.cp-form-group {
    margin-bottom: 1rem;
}

.cp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.cp-form-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cp-form-label svg { color: var(--text-light); }

.cp-form-input, .cp-form-select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    transition: all 0.3s ease;
}

.cp-form-input::placeholder { color: rgba(255,255,255,0.35); }

.cp-form-input:focus, .cp-form-select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}

.cp-form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.cp-form-select option {
    background: var(--bg-dark);
    color: var(--white);
}

.cp-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--cta), var(--accent));
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(255,138,0,0.3);
}

.cp-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,138,0,0.4);
    filter: brightness(1.05);
}

.cp-form-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.cp-form-trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.45);
}

.cp-form-trust-item svg { color: rgba(255,255,255,0.35); }

/* Contact Section Responsive */
@media (max-width: 992px) {
    .contact-premium-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .cp-form-row {
        grid-template-columns: 1fr;
    }
    .cp-form-trust {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .cp-info-badges {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .contact-premium-cards {
        grid-template-columns: 1fr;
    }
    .cp-form-card {
        padding: 1.25rem;
    }
    .cp-info-badges {
        grid-template-columns: 1fr;
    }
}

/* ==============================================
   PREMIUM ABOUT SECTION (Meet Rahim Sir)
   ============================================== */
.about-premium-section {
    position: relative;
    background-color: var(--bg-dark);
    color: var(--white);
    overflow: hidden;
}

.about-premium-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.about-premium-section .container {
    position: relative;
    z-index: 1;
}

.about-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-premium-image-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-xl);
}

.about-premium-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-premium-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-premium-image-frame:hover .about-premium-photo {
    transform: scale(1.05);
}

.about-premium-glow-ring {
    position: absolute;
    inset: -10px;
    border-radius: calc(var(--radius-2xl) + 10px);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.about-premium-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--cta), var(--accent));
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(245,158,11,0.4);
    border: 4px solid var(--bg-dark);
    text-align: center;
    z-index: 2;
}

.apeb-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.apeb-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.about-premium-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    justify-content: center;
}

.about-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 500;
}

.about-pill svg {
    color: var(--accent);
}

.about-premium-role {
    font-size: var(--fs-sm);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.about-premium-name {
    font-size: var(--fs-display);
    margin-bottom: 0.25rem;
    line-height: 1.1;
    color: var(--white);
}

.about-premium-tagline {
    font-size: var(--fs-h4);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-premium-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.about-premium-desc strong {
    color: var(--white);
}

.about-premium-philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ap-philosophy-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ap-phi-icon {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.ap-philosophy-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.ap-philosophy-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.about-premium-stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.ap-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ap-stat-item strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    line-height: 1.2;
}

.ap-stat-item span {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.ap-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

.about-premium-actions {
    display: flex;
    gap: 1rem;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
}

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

@media (max-width: 992px) {
    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-premium-image-frame {
        max-width: 500px;
        margin: 0 auto;
    }
    .about-premium-stats-bar {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    .ap-stat-divider {
        display: none;
    }
    .ap-stat-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .about-premium-philosophy {
        grid-template-columns: 1fr;
    }
    .about-premium-actions {
        flex-direction: column;
    }
    .about-premium-actions .btn-lg {
        width: 100%;
    }
}

/* ==============================================
   YOUTUBE VIDEO SHOWCASE (yt-showcase)
   ============================================== */
.yt-showcase-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

/* Featured Video Hero */
.yt-hero-featured {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.yt-hero-player {
    aspect-ratio: 16/9;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.yt-hero-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.yt-hero-info {
    padding: 2rem;
}

.yt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.08);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 0, 0, 0.12);
}

.yt-hero-info h3 {
    font-size: var(--fs-h3);
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.yt-hero-info > p {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.yt-hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.yt-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.yt-hero-stat strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.yt-hero-stat span {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.yt-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #FF0000;
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: var(--fs-sm);
    transition: var(--transition);
    text-decoration: none;
}

.yt-subscribe-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    color: var(--white);
}

/* Filter Tabs */
.yt-filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.yt-filter-tab {
    padding: 0.5rem 1.25rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
}

.yt-filter-tab:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.yt-filter-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Video Card Grid */
.yt-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.yt-vcard {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    cursor: pointer;
}

.yt-vcard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.yt-vcard-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-dark);
}

.yt-vcard-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.yt-vcard:hover .yt-vcard-thumb img {
    transform: scale(1.08);
}

.yt-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yt-vcard:hover .yt-play-overlay {
    opacity: 1;
}

.yt-play-btn-circle {
    width: 52px;
    height: 52px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.yt-play-btn-circle svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

.yt-vcard:hover .yt-play-btn-circle {
    transform: scale(1.1);
}

.yt-vcard-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.yt-vcard-info {
    padding: 1rem 1.25rem;
}

.yt-vcard-info h4 {
    font-size: var(--fs-sm);
    color: var(--text-main);
    margin-bottom: 0.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-vcard-channel {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    font-weight: 500;
}

/* Hidden cards (Load More) */
.yt-hidden-card {
    display: none;
}

.yt-hidden-card.yt-show {
    display: block;
}

/* Load More Button */
.yt-load-more-wrap {
    text-align: center;
    margin-bottom: 2.5rem;
}

.yt-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
}

.yt-load-more-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Subscribe Banner */
.yt-subscribe-banner {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.yt-sub-banner-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.yt-sub-banner-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yt-sub-banner-icon svg {
    width: 28px;
    height: 28px;
}

.yt-sub-banner-content h3 {
    color: var(--white);
    font-size: var(--fs-h4);
    margin-bottom: 0.25rem;
}

.yt-sub-banner-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-sm);
    margin: 0;
}

.yt-sub-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: var(--white);
    color: #dc2626;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: var(--fs-sm);
    transition: var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}

.yt-sub-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #991b1b;
}

/* YouTube Lightbox */
.yt-lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.yt-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.yt-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.yt-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16/9;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.yt-lightbox.active .yt-lightbox-content {
    transform: scale(1);
}

.yt-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.yt-lightbox-player {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
}

.yt-lightbox-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* YouTube Responsive */
@media (max-width: 992px) {
    .yt-hero-featured {
        grid-template-columns: 1fr;
    }
    .yt-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .yt-video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .yt-subscribe-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .yt-sub-banner-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .yt-hero-info {
        padding: 1.25rem;
    }
    .yt-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* ==============================================
   CONTACT PREMIUM SECTION WRAPPER
   ============================================== */
.contact-premium-section {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0c1222 50%, var(--primary-dark) 100%);
    color: var(--white);
    overflow: hidden;
}

.contact-premium-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.contact-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.12);
    top: -200px;
    right: -100px;
}

.contact-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.08);
    bottom: -150px;
    left: -100px;
}

.contact-premium-section .container {
    position: relative;
    z-index: 1;
}

/* Quick Contact Cards Row */
.contact-premium-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.cp-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
}

.cp-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    color: var(--white);
}

.cp-card-call:hover { border-color: var(--secondary); }
.cp-card-whatsapp:hover { border-color: #25D366; }

.cp-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.cp-card-call .cp-card-icon { color: var(--secondary); }
.cp-card-whatsapp .cp-card-icon { color: #25D366; }

.cp-card-text {
    flex: 1;
    min-width: 0;
}

.cp-card-label {
    font-size: var(--fs-xs);
    color: var(--text-light);
    display: block;
    margin-bottom: 0.15rem;
}

.cp-card-text strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cp-card-arrow {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cp-card:hover .cp-card-arrow {
    transform: translateX(4px);
}

/* Contact Grid: Map + Form */
.contact-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.cp-map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
}

.cp-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
