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

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #f59e0b;
    --dark: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

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

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
}

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ====== NAVBAR ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}
.logo-icon { font-size: 1.5rem; }

.nav-links {
    display: flex;
    gap: 28px;
}
.nav-links a {
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ====== HERO ====== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 50%, #f0f0ff 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}
.shape-1 {
    width: 400px; height: 400px;
    background: var(--primary);
    top: -100px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.shape-2 {
    width: 300px; height: 300px;
    background: var(--secondary);
    bottom: -50px; left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}
.shape-3 {
    width: 200px; height: 200px;
    background: #8b5cf6;
    top: 50%; left: 50%;
    animation: float 10s ease-in-out infinite;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
}
.highlight {
    color: var(--primary);
    position: relative;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(37, 99, 235, 0.12);
    z-index: -1;
    border-radius: 4px;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
    display: flex;
    gap: 32px;
}
.stat {
    display: flex;
    align-items: center;
    gap: 10px;
}
.stat-num { font-size: 1.5rem; }
.stat span { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.stat small { color: var(--text-light); font-weight: 400; }

.hero-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border);
}
.hero-card-icon { font-size: 3rem; margin-bottom: 16px; }
.hero-card h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 8px; }
.hero-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }
.hero-card-review { display: flex; align-items: center; justify-content: center; gap: 8px; }
.stars { color: #f59e0b; font-size: 1.1rem; }

/* ====== MARQUEE ====== */
.marquee-section {
    padding: 20px 0;
    background: var(--dark);
    overflow: hidden;
}
.marquee-track { overflow: hidden; white-space: nowrap; }
.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.marquee-content span {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 24px;
    opacity: 0.9;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====== SECTION COMMON ====== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ====== FEATURES ====== */
.features { background: var(--bg-light); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}
.feature-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-weight: 600; color: var(--primary); font-size: 0.9rem; margin-bottom: 12px; }
.feature-desc { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ====== CLASSES ====== */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}
.class-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.class-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.class-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.class-card h4 { color: var(--dark); margin-bottom: 4px; }
.class-card p { font-size: 0.8rem; color: var(--text-light); }

/* ====== WHY US ====== */
.why-us { background: var(--bg-light); }
.why-us-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}
.why-us-content h2 { text-align: left; margin-bottom: 16px; }
.why-us-content p { color: var(--text-light); margin-bottom: 24px; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}
.why-list li i { color: #10b981; margin-top: 3px; }

.why-us-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.big-stat {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.big-stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}
.big-stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ====== HOW IT WORKS ====== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.step-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-light); }

/* ====== PAYMENT CTA ====== */
.payment-cta { padding: 40px 0; }
.payment-cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: #fff;
}
.payment-cta-icon { font-size: 3rem; }
.payment-cta-box h3 { font-size: 1.3rem; margin-bottom: 4px; }
.payment-cta-box p { opacity: 0.9; font-size: 0.9rem; }
.payment-cta-box .btn { margin-left: auto; white-space: nowrap; background: #fff; color: var(--primary); border-color: #fff; }
.payment-cta-box .btn:hover { background: #f0f7ff; }

/* ====== PROGRAMMES ====== */
.programmes { background: var(--bg-light); }
.programmes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.programme-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.programme-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.programme-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-light);
}
.programme-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.programme-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 10px; }
.programme-card > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }
.programme-card ul { margin-bottom: 20px; }
.programme-card ul li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text);
    padding-left: 20px;
    position: relative;
}
.programme-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}
.programme-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

/* ====== TESTIMONIALS ====== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.testimonial-card .stars { margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-card p {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.testimonial-author strong { color: var(--dark); font-size: 0.9rem; }
.testimonial-author small { color: var(--text-light); }

/* ====== FAQ ====== */
.faq { background: var(--bg-light); }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); }
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
}
.faq-question i {
    transition: transform 0.3s;
    color: var(--text-light);
}
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ====== FINAL CTA ====== */
.final-cta { padding: 80px 0; }
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: #fff;
}
.cta-box h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-box p { opacity: 0.9; margin-bottom: 30px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ====== FOOTER ====== */
.footer {
    background: var(--bg-dark);
    color: #cbd5e1;
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer h3, .footer h4 { color: #fff; margin-bottom: 16px; }
.footer-about p { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.6; }
.footer-links ul li,
.footer-classes ul li { margin-bottom: 10px; }
.footer-links a,
.footer-classes a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover,
.footer-classes a:hover { color: #fff; padding-left: 4px; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 10px; }
.footer-contact i { margin-right: 8px; color: var(--primary); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* ====== POPUP ====== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}
.popup-overlay.active { display: flex; opacity: 1; }
.popup-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}
.popup-overlay.active .popup-content { transform: scale(1); }
.popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}
.popup-content h2 { font-size: 1.5rem; color: var(--dark); margin-bottom: 8px; }
.popup-content > p { color: var(--text-light); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse-green 2s infinite;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ====== ANIMATIONS ====== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.animate-fade-in { opacity: 0; animation: fadeIn 0.8s forwards; }
.animate-slide-up { opacity: 0; transform: translateY(30px); animation: slideUp 0.8s forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-up"].animated { opacity: 1; transform: translateY(0); }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-right"].animated { opacity: 1; transform: translateX(0); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="fade-left"].animated { opacity: 1; transform: translateX(0); }
[data-animate="zoom-in"] { transform: scale(0.8); }
[data-animate="zoom-in"].animated { opacity: 1; transform: scale(1); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-image { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .programmes-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    .hero-title { font-size: 2rem; }
    .hero-stats { flex-direction: column; align-items: center; gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .programmes-grid { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .classes-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .payment-cta-box { flex-direction: column; text-align: center; }
    .payment-cta-box .btn { margin-left: 0; }
    .section-title { font-size: 1.7rem; }
    .cta-box { padding: 40px 20px; }
    .cta-box h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .classes-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 1.7rem; }
    .hero-btns { flex-direction: column; }
    .popup-content { padding: 24px; }
}

/* ====== PLAN CARDS - FULL GRID ====== */
.programmes-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.plan-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}
.plan-card.hot {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-light);
}
.plan-hot-tag {
    position: absolute;
    top: 12px;
    right: -30px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    padding: 4px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
}
.plan-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    width: fit-content;
}
.plan-badge.primary { background: #dbeafe; color: #1d4ed8; }
.plan-badge.middle { background: #d1fae5; color: #065f46; }
.plan-badge.board { background: #fef3c7; color: #92400e; }
.plan-badge.senior { background: #ede9fe; color: #5b21b6; }

.plan-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; }
.plan-card > p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.5; }
.plan-card ul { margin-bottom: 20px; flex-grow: 1; }
.plan-card ul li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--text);
    padding-left: 22px;
    position: relative;
}
.plan-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}
.plan-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 16px;
}
.plan-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

/* ====== ENHANCED GLASSMORPHISM & GRADIENTS ====== */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(37,99,235,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #7c3aed);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card { position: relative; overflow: hidden; }

/* ====== EXTRA PAGE STYLES ====== */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #7c3aed 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    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");
}
.page-hero h1 { font-size: 2.5rem; margin-bottom: 12px; position: relative; }
.page-hero p { opacity: 0.9; font-size: 1.1rem; max-width: 600px; margin: 0 auto; position: relative; }

.page-content {
    padding: 60px 0;
}
.page-content .content-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}
.page-content h2 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}
.page-content h2:first-child { margin-top: 0; }
.page-content p, .page-content li {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}
.page-content ul { padding-left: 20px; margin-bottom: 16px; }
.page-content ul li { list-style: disc; margin-bottom: 8px; }
.page-content strong { color: var(--dark); }

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-item h4 { color: var(--dark); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-form-card h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 20px; }

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}
.about-text h2 { border: none; padding-bottom: 0; }
.about-text p { color: var(--text-light); }
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}
.about-stat-item {
    text-align: center;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.about-stat-item h3 { font-size: 2rem; color: var(--primary); margin-bottom: 4px; }
.about-stat-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}
.about-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.about-value-card .icon { font-size: 2.5rem; margin-bottom: 16px; }
.about-value-card h4 { color: var(--dark); margin-bottom: 8px; }
.about-value-card p { color: var(--text-light); font-size: 0.88rem; margin: 0; }

@media (max-width: 768px) {
    .programmes-grid-full { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-stats-row { grid-template-columns: repeat(2, 1fr); }
    .about-values-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 1.8rem; }
    .page-content .content-card { padding: 24px; }
}
