/* ════════════════════════════════════════════════
   QALBI QURAN ACADEMY — GLOBAL STYLES
   ════════════════════════════════════════════════ */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --green:       #1a7c4f;
  --green-dark:  #125c39;
  --green-mid:   #1d6b45;
  --green-light: #e8f5ee;
  --gold:        #c9a84c;
  --gold-light:  #f5e9c8;
  --text:        #1e1e1e;
  --text-muted:  #666;
  --bg:          #f9f7f2;
  --white:       #ffffff;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.16);
}
html { scroll-behavior: smooth; }
body { font-family:'Nunito',sans-serif; background:var(--bg); color:var(--text); overflow-x:hidden; line-height:1.6; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; height:auto; }
button { font-family:'Nunito',sans-serif; cursor:pointer; border:none; outline:none; }
input, select, textarea { font-family:'Nunito',sans-serif; outline:none; }

/* ═══ UTILITY ═══ */
.container   { max-width:1180px; margin:0 auto; padding:0 20px; }
.section-pad { padding:72px 0; }
.text-center { text-align:center; }
.section-label { display:inline-block; color:var(--green); font-weight:800; font-size:12px; letter-spacing:2.5px; text-transform:uppercase; margin-bottom:10px; }
.section-title { font-family:'Amiri',serif; font-size:clamp(26px,4vw,42px); line-height:1.25; color:var(--text); }
.section-title span { color:var(--green); }
.section-sub  { color:var(--text-muted); font-size:15px; line-height:1.75; margin-top:10px; }
.text-center .section-sub { max-width:580px; margin:10px auto 0; }

/* ═══ BUTTONS ═══ */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:13px 26px; border-radius:40px; font-weight:700; font-size:15px; transition:.22s ease; cursor:pointer; white-space:nowrap; text-decoration:none; border:none; }
.btn-gold    { background:var(--gold); color:#1a1a1a; }
.btn-gold:hover { background:#b8952e; transform:translateY(-2px); box-shadow:0 6px 20px rgba(201,168,76,.4); }
.btn-green   { background:var(--green); color:#fff; }
.btn-green:hover { background:var(--green-dark); transform:translateY(-2px); }
.btn-outline-white { border:2px solid rgba(255,255,255,.7); color:#fff; background:transparent; }
.btn-outline-white:hover { background:rgba(255,255,255,.15); }
.btn-outline-green { border:2px solid var(--green); color:var(--green); background:transparent; }
.btn-outline-green:hover { background:var(--green); color:#fff; }
.btn-wa { background:#25d366; color:#fff; }
.btn-wa:hover { background:#1ebe5d; transform:translateY(-2px); }
.btn-sm { padding:9px 20px; font-size:13px; }
.btn-block { width:100%; }

/* ═══ TOP BAR ═══ */
.topbar { background:var(--green-dark); color:#fff; font-size:12.5px; padding:7px 20px; display:flex; align-items:center; justify-content:space-between; gap:8px; flex-wrap:wrap; }
.topbar-left { display:flex; gap:18px; flex-wrap:wrap; align-items:center; }
.topbar a { color:#fff; display:flex; align-items:center; gap:5px; transition:.2s; }
.topbar a:hover { color:var(--gold); }
.topbar-cta { background:var(--gold); color:#1a1a1a !important; padding:4px 14px; border-radius:20px; font-weight:800 !important; white-space:nowrap; }
.topbar-serving { opacity:.75; font-size:11.5px; }
@media (max-width:768px) { .topbar-serving { display:none; } }

/* ═══ NAVBAR ═══ */
.navbar { background:#fff; box-shadow:0 2px 16px rgba(0,0,0,.09); position:sticky; top:0; z-index:900; }
.nav-inner { max-width:1180px; margin:0 auto; padding:0 20px; display:flex; align-items:center; justify-content:space-between; height:68px; gap:12px; }
.logo { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.logo-icon { width:44px; height:44px; background:var(--green); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Amiri',serif; color:#fff; font-size:20px; flex-shrink:0; }
.logo-text strong { display:block; font-size:16px; color:var(--green-dark); line-height:1.2; }
.logo-text span   { font-size:11px; color:var(--text-muted); }
.nav-links { display:flex; align-items:center; gap:2px; list-style:none; }
.nav-links > li { position:relative; }
.nav-links > li > a { display:block; padding:8px 11px; border-radius:var(--radius-sm); font-weight:700; font-size:13.5px; color:var(--text); transition:.2s; white-space:nowrap; }
.nav-links > li > a:hover, .nav-links > li > a.active { background:var(--green-light); color:var(--green); }
.nav-links .nav-trial { background:var(--green); color:#fff !important; padding:9px 18px !important; border-radius:30px !important; margin-left:6px; }
.nav-links .nav-trial:hover { background:var(--green-dark) !important; }
.nav-links .nav-login { background:transparent; color:var(--green) !important; padding:9px 16px !important; border-radius:30px !important; border:2px solid var(--green) !important; margin-left:4px; font-weight:700; }
.nav-links .nav-login:hover { background:var(--green) !important; color:#fff !important; }
.mobile-nav-login { margin:0 20px 8px !important; border-radius:30px !important; background:transparent !important; color:var(--green) !important; border:2px solid var(--green) !important; justify-content:center !important; border-bottom:2px solid var(--green) !important; font-size:15px !important; }
.mobile-nav-login:hover { background:var(--green) !important; color:#fff !important; }

/* Click Dropdown */
.has-dropdown { position:relative; }
.has-dropdown > a .dd-arrow { transition:.3s; display:inline-block; }
.has-dropdown.open > a .dd-arrow { transform:rotate(180deg); }
.dropdown { display:none; position:absolute; top:calc(100% + 6px); left:0; background:#fff; border-radius:var(--radius); box-shadow:var(--shadow-lg); min-width:230px; z-index:200; padding:8px 0; border:1px solid rgba(0,0,0,.06); }
.has-dropdown.open .dropdown { display:block; }
.dropdown a { display:flex; align-items:center; gap:10px; padding:11px 18px; font-size:13.5px; font-weight:700; color:var(--text); transition:.15s; }
.dropdown a:hover { background:var(--green-light); color:var(--green); }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; border-radius:6px; transition:.2s; }
.hamburger:hover { background:var(--green-light); }
.hamburger span { width:24px; height:2.5px; background:var(--green); border-radius:2px; transition:.3s; display:block; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-nav { display:none; background:#fff; border-top:2px solid var(--green-light); overflow:hidden; }
.mobile-nav.open { display:block; }
.mobile-nav a { display:flex; align-items:center; gap:10px; padding:13px 24px; font-weight:700; font-size:14.5px; border-bottom:1px solid #f0f0f0; color:var(--text); transition:.15s; }
.mobile-nav a:hover { background:var(--green-light); color:var(--green); }
.mobile-nav-cta { margin:12px 20px 16px !important; border-radius:30px !important; background:var(--green) !important; color:#fff !important; justify-content:center !important; border-bottom:none !important; font-size:15px !important; }

/* ═══ PAGE HERO (non-home pages) ═══ */
.page-hero { background:linear-gradient(135deg, var(--green-dark), var(--green-mid)); color:#fff; padding:64px 20px; text-align:center; position:relative; overflow:hidden; }
.page-hero h1 { font-family:'Amiri',serif; font-size:clamp(28px,5vw,48px); line-height:1.2; margin-bottom:14px; }
.page-hero h1 span { color:var(--gold); }
.page-hero p { font-size:15.5px; opacity:.9; max-width:580px; margin:0 auto 28px; }
.breadcrumb { font-size:13px; opacity:.85; margin-bottom:14px; }
.breadcrumb a { color:var(--gold); }
.breadcrumb a:hover { text-decoration:underline; }

/* ═══ HERO (home) ═══ */
.hero { position:relative; background:linear-gradient(135deg,var(--green-dark) 0%,var(--green-mid) 60%,#236b46 100%); color:#fff; overflow:hidden; }
.hero-bg-img { position:absolute; inset:0; background:url('../img/girl-tajweed-articulation-laptop.jpg') center/cover no-repeat; opacity:.14; }
.hero-overlay { position:absolute; inset:0; background:radial-gradient(circle at 15% 55%, rgba(201,168,76,.13) 0%, transparent 55%); }
.hero-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; padding:80px 20px; max-width:1180px; margin:0 auto; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(201,168,76,.2); border:1px solid rgba(201,168,76,.4); color:var(--gold); padding:6px 16px; border-radius:30px; font-size:12.5px; font-weight:800; margin-bottom:18px; }
.hero-inner h1 { font-family:'Amiri',serif; font-size:clamp(30px,4.5vw,54px); line-height:1.2; margin-bottom:16px; }
.hero-inner h1 span { color:var(--gold); }
.hero-inner p { font-size:15.5px; opacity:.88; line-height:1.75; margin-bottom:26px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:32px; }
.hero-stats { display:flex; gap:28px; flex-wrap:wrap; }
.hero-stat strong { display:block; font-size:28px; font-weight:900; color:var(--gold); line-height:1; }
.hero-stat span   { font-size:12px; opacity:.8; }
.hero-img { border-radius:20px; overflow:hidden; box-shadow:0 24px 64px rgba(0,0,0,.35); }
.hero-img img { width:100%; height:420px; object-fit:cover; }

/* Floating country flags in hero */
.hero-flags { display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.hero-flags span { background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); padding:5px 13px; border-radius:20px; font-size:12.5px; font-weight:700; display:inline-flex; align-items:center; gap:6px; transition:.2s; }
.hero-flags span:hover { background:rgba(201,168,76,.25); border-color:var(--gold); transform:translateY(-2px); }

/* Press / "as seen" strip */
.press-strip { background:#fff; padding:22px 20px; border-bottom:1px solid #eee; }
.press-inner { max-width:1180px; margin:0 auto; display:flex; align-items:center; justify-content:center; gap:36px; flex-wrap:wrap; }
.press-label { font-size:11.5px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:var(--text-muted); }
.press-item { font-family:'Amiri',serif; font-size:17px; font-weight:700; color:#999; opacity:.7; transition:.25s; }
.press-item:hover { opacity:1; color:var(--green); }

/* ═══ WHY GRID ═══ */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:48px; }
.why-card { background:var(--bg); border-radius:var(--radius); padding:26px 22px; transition:.3s; border:2px solid transparent; }
.why-card:hover { border-color:var(--green); transform:translateY(-4px); box-shadow:var(--shadow); }
.why-icon { width:52px; height:52px; background:var(--green-light); border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; font-size:23px; }
.why-card h3 { font-size:16px; font-weight:700; margin-bottom:8px; }
.why-card p  { color:var(--text-muted); font-size:14px; line-height:1.65; }

/* ═══ COURSES GRID ═══ */
.courses-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:48px; }
.course-card { background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); transition:.3s; display:flex; flex-direction:column; }
.course-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.course-thumb { height:190px; overflow:hidden; position:relative; }
.course-thumb img { width:100%; height:100%; object-fit:cover; transition:.4s; }
.course-card:hover .course-thumb img { transform:scale(1.06); }
.course-tag { position:absolute; top:12px; left:12px; background:var(--green); color:#fff; font-size:11px; font-weight:700; padding:4px 12px; border-radius:20px; }
.course-body { padding:20px; display:flex; flex-direction:column; flex:1; }
.course-body h3 { font-size:17px; font-weight:700; margin-bottom:8px; }
.course-body p  { font-size:13.5px; color:var(--text-muted); line-height:1.65; margin-bottom:16px; flex:1; }
.course-meta { display:flex; align-items:center; justify-content:space-between; border-top:1px solid #f0f0f0; padding-top:14px; gap:8px; flex-wrap:wrap; }
.course-meta span { font-size:12px; color:var(--text-muted); }

/* ═══ AUDIENCE ═══ */
/* ═══ PROCESS ═══ */
.process-wrap { background:var(--green-dark); }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:28px; margin-top:48px; }
.step-card { text-align:center; }
.step-num { width:60px; height:60px; border-radius:50%; background:var(--gold); color:#1a1a1a; font-size:22px; font-weight:900; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.step-card h3 { font-size:16px; font-weight:700; color:#fff; margin-bottom:8px; }
.step-card p  { font-size:13.5px; color:rgba(255,255,255,.78); line-height:1.65; }

/* ═══ TEACHERS ═══ */
.teachers-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:48px; }
.teacher-card { background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); transition:.3s; }
.teacher-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.teacher-img { height:210px; overflow:hidden; }
.teacher-img img { width:100%; height:100%; object-fit:cover; }
.teacher-info { padding:18px 16px; }
.teacher-info h3   { font-weight:800; font-size:15px; margin-bottom:4px; }
.teacher-info span { font-size:12.5px; color:var(--green); font-weight:700; }
.teacher-info p    { font-size:12.5px; color:var(--text-muted); margin-top:8px; line-height:1.55; }
.teacher-badges { display:flex; gap:6px; flex-wrap:wrap; margin-top:10px; }
.badge { background:var(--green-light); color:var(--green); font-size:11px; font-weight:700; padding:3px 9px; border-radius:20px; }

/* ═══ PRICING ═══ */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:48px; }
.price-card { background:var(--bg); border-radius:var(--radius); padding:30px 26px; border:2px solid #e8e8e8; position:relative; transition:.3s; }
.price-card.featured { background:#fff; border-color:var(--green); }
.price-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.feat-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--green); color:#fff; font-size:11.5px; font-weight:800; padding:4px 18px; border-radius:20px; white-space:nowrap; }
.price-name  { font-weight:800; font-size:18px; margin-bottom:4px; }
.price-sub   { font-size:13px; color:var(--text-muted); margin-bottom:18px; }
.price-amount{ font-size:42px; font-weight:900; color:var(--green); line-height:1; }
.price-amount sup   { font-size:19px; }
.price-amount small { font-size:14px; color:var(--text-muted); }
.price-note { font-size:11.5px; color:var(--text-muted); margin-top:6px; }
.price-feats { list-style:none; margin:18px 0 22px; display:flex; flex-direction:column; gap:9px; }
.price-feats li { font-size:13.5px; display:flex; align-items:flex-start; gap:8px; }
.price-feats li::before { content:'✓'; color:var(--green); font-weight:900; flex-shrink:0; margin-top:1px; }

/* ═══ TESTIMONIALS ═══ */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:48px; }
.testi-card { background:#fff; border-radius:var(--radius); padding:26px; box-shadow:var(--shadow); }
.stars { color:var(--gold); font-size:15px; margin-bottom:12px; letter-spacing:2px; }
.testi-text  { font-size:14.5px; line-height:1.75; color:var(--text); font-style:italic; margin-bottom:18px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:46px; height:46px; border-radius:50%; overflow:hidden; flex-shrink:0; }
.testi-avatar img { width:100%; height:100%; object-fit:cover; }
.testi-name { font-weight:700; font-size:14px; }
.testi-loc  { font-size:12px; color:var(--text-muted); }

/* ═══ BLOG ═══ */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:48px; }
.blog-card { background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); transition:.3s; display:flex; flex-direction:column; }
.blog-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.blog-thumb { height:190px; overflow:hidden; }
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition:.4s; }
.blog-card:hover .blog-thumb img { transform:scale(1.06); }
.blog-body { padding:18px 18px 20px; flex:1; display:flex; flex-direction:column; }
.blog-cat  { font-size:11px; font-weight:800; color:var(--green); letter-spacing:1.5px; text-transform:uppercase; margin-bottom:8px; }
.blog-body h3 { font-size:16px; font-weight:700; line-height:1.4; margin-bottom:10px; }
.blog-body p  { font-size:13px; color:var(--text-muted); line-height:1.65; flex:1; }
.blog-meta    { margin-top:12px; font-size:12px; color:var(--text-muted); }

/* ═══ FAQ ═══ */
.faq-list { max-width:760px; margin:48px auto 0; display:flex; flex-direction:column; gap:12px; }
.faq-item { background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:0 2px 12px rgba(0,0,0,.06); }
.faq-q { padding:18px 22px; font-weight:700; font-size:14.5px; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:12px; user-select:none; }
.faq-q .faq-arrow { color:var(--green); font-size:20px; font-weight:400; flex-shrink:0; transition:.3s; }
.faq-body { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-body.open { max-height:500px; }
.faq-body p { padding:0 22px 18px; font-size:13.5px; color:var(--text-muted); line-height:1.75; }

/* ═══ CTA STRIP ═══ */
.cta-strip { background:linear-gradient(135deg,var(--green-dark),var(--green-mid)); color:#fff; padding:72px 20px; text-align:center; }
.cta-strip h2 { font-family:'Amiri',serif; font-size:clamp(26px,4vw,44px); margin-bottom:14px; }
.cta-strip p  { font-size:15.5px; opacity:.88; max-width:540px; margin:0 auto 30px; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ═══ INFO CARDS ═══ */
.info-card { display:flex; gap:16px; align-items:flex-start; padding:20px; background:var(--bg); border-radius:var(--radius); }
.info-icon { font-size:28px; flex-shrink:0; margin-top:2px; }
.info-card strong { display:block; margin-bottom:4px; font-size:15px; }
.info-card a { color:var(--green); font-weight:700; font-size:16px; }
.info-card p { font-size:13px; color:var(--text-muted); margin-top:4px; }

/* ═══ FORM ═══ */
.form-wrap { background:var(--bg); border-radius:var(--radius); padding:32px 28px; }
.form-wrap h3 { font-size:20px; font-weight:800; margin-bottom:22px; }
.field-group { display:flex; flex-direction:column; gap:14px; }
.field-group input,.field-group select,.field-group textarea { padding:13px 16px; border:1.5px solid #dde0d8; border-radius:10px; font-size:14px; width:100%; background:#fff; color:var(--text); transition:.2s; }
.field-group input:focus,.field-group select:focus,.field-group textarea:focus { border-color:var(--green); box-shadow:0 0 0 3px rgba(26,124,79,.12); }
.field-group textarea { height:100px; resize:vertical; }

/* ═══ FEAT LIST ═══ */
.feat-list { list-style:none; display:flex; flex-direction:column; gap:11px; margin-top:18px; }
.feat-list li { display:flex; align-items:flex-start; gap:10px; font-size:14.5px; }
.feat-list li .chk { color:var(--green); font-weight:900; font-size:16px; flex-shrink:0; }

/* ═══ SPLIT ═══ */
.split { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; }
.split-img { border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); }
.split-img img { width:100%; height:380px; object-fit:cover; }

/* ═══ FEAT BOXES ═══ */
.feat-boxes { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:20px; }
.feat-box { padding:16px; background:var(--bg); border-radius:10px; }
.feat-box strong { display:block; color:var(--green); font-size:14px; margin-bottom:4px; }
.feat-box p { font-size:12.5px; color:var(--text-muted); }

/* ═══ HIGHLIGHT CARDS ═══ */
.highlight-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:32px; }
.highlight-card { text-align:center; padding:28px 18px; background:var(--green-light); border-radius:var(--radius); }
.highlight-card .hc-icon { font-size:38px; margin-bottom:12px; }
.highlight-card h3 { font-size:15px; font-weight:700; margin-bottom:8px; }
.highlight-card p { font-size:13px; color:var(--text-muted); line-height:1.6; }

/* ═══ STATS BAR (animated counters) ═══ */
.stats-bar { background:var(--green); padding:40px 20px; }
.stats-inner { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; max-width:1180px; margin:0 auto; text-align:center; }
.stat-item strong { display:block; font-size:32px; font-weight:900; color:var(--gold); }
.stat-item span   { font-size:13px; color:rgba(255,255,255,.85); }
.hero-stat strong[data-count], .stat-item strong[data-count] { font-variant-numeric: tabular-nums; }

/* ═══ FOOTER ═══ */
.footer { background:var(--green-dark); color:#fff; padding:60px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; }
.footer-brand p { font-size:13.5px; opacity:.78; line-height:1.75; margin-top:12px; max-width:280px; }
.footer-col h4 { font-weight:800; margin-bottom:16px; font-size:14px; color:var(--gold); letter-spacing:.5px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a { font-size:13px; opacity:.75; transition:.2s; }
.footer-col ul li a:hover { opacity:1; color:var(--gold); }
.footer-contact-item { display:flex; align-items:center; gap:8px; font-size:13px; opacity:.78; margin-bottom:9px; }
.footer-contact-item a { color:#fff; }
.social-row { display:flex; gap:10px; margin-top:18px; }
.soc-btn { width:36px; height:36px; background:rgba(255,255,255,.12); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; transition:.2s; }
.soc-btn:hover { background:var(--gold); color:#1a1a1a; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.14); padding:20px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; font-size:12.5px; opacity:.65; margin-top:40px; }

/* ═══ STICKY WHATSAPP ═══ */
@keyframes waPulse { 0%,100% { box-shadow:0 0 0 0 rgba(37,211,102,.55); } 55% { box-shadow:0 0 0 13px rgba(37,211,102,0); } }

/* ═══ COMPARISON TABLE ═══ */
.compare-table { width:100%; border-collapse:collapse; margin-top:40px; background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.compare-table th { background:var(--green); color:#fff; padding:14px 18px; text-align:left; font-size:13.5px; }
.compare-table td { padding:13px 18px; font-size:13.5px; border-bottom:1px solid #f0f0f0; }
.compare-table tr:last-child td { border-bottom:none; }
.compare-table tr:nth-child(even) td { background:var(--bg); }
.compare-table .yes { color:var(--green); font-weight:800; }
.compare-table .no  { color:#ccc; }

/* ═══ ENROLL MODAL ═══ */
.enroll-overlay { position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:1000; display:none; align-items:center; justify-content:center; padding:20px; }
.enroll-overlay.open { display:flex; }
.enroll-box { background:#fff; border-radius:var(--radius); padding:36px 32px; max-width:560px; width:100%; max-height:90vh; overflow-y:auto; position:relative; box-shadow:var(--shadow-lg); animation:popIn .25s ease; }
@keyframes popIn { from { opacity:0; transform:scale(.94) translateY(10px); } to { opacity:1; transform:scale(1) translateY(0); } }
.enroll-close { position:absolute; top:14px; right:16px; font-size:24px; cursor:pointer; color:var(--text-muted); line-height:1; }
.enroll-close:hover { color:var(--text); }
.enroll-box h2 { font-family:'Amiri',serif; font-size:26px; margin-bottom:6px; }
.enroll-box .plan-label { display:inline-block; background:var(--green-light); color:var(--green); font-weight:800; font-size:13px; padding:4px 14px; border-radius:20px; margin-bottom:20px; }
.enroll-box .trial-days { display:inline-flex; align-items:center; gap:6px; background:var(--gold-light); color:#8a6d1f; font-weight:800; font-size:12.5px; padding:5px 14px; border-radius:20px; margin-bottom:14px; }

/* ═══ SCROLL-REVEAL ANIMATIONS (lightweight, IntersectionObserver-driven) ═══ */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity:1; transform:translateY(0); }
.reveal-stagger > * { opacity:0; transform:translateY(18px); transition:opacity .55s ease, transform .55s ease; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay:.03s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay:.09s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay:.15s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay:.21s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay:.27s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay:.33s; }
.reveal-stagger.in-view > * { opacity:1; transform:translateY(0); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity:1; transform:none; transition:none; }
  }

/* Animated gradient underline for emphasized words */
.glow-underline { position:relative; }
.glow-underline::after {
  content:''; position:absolute; left:0; bottom:-4px; height:3px; width:100%;
  background:linear-gradient(90deg, var(--gold), transparent, var(--gold));
  background-size:200% 100%; animation:underlineFlow 3s linear infinite; border-radius:2px; opacity:.6;
}
@keyframes underlineFlow { 0% { background-position:0% 0; } 100% { background-position:200% 0; } }

/* Floating badge animation (free trial / 3-day trial pill) */
.float-badge { animation:floatY 3.5s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }

/* ═══ RESPONSIVE ═══ */
@media (max-width:1024px) {
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .courses-grid { grid-template-columns:repeat(2,1fr); }
  .teachers-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .stats-inner { grid-template-columns:repeat(2,1fr); gap:20px; }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .topbar { flex-direction:column; align-items:center; text-align:center; gap:6px; padding:8px 16px; }
  .topbar-left { justify-content:center; gap:12px; }
  .hero-inner { grid-template-columns:1fr; padding:52px 20px 60px; gap:0; }
  .hero-img { display:none; }
  .hero-inner h1 { font-size:clamp(26px,7vw,38px); }
  .hero-inner p  { font-size:14.5px; }
  .hero-btns { flex-direction:column; align-items:flex-start; }
  .hero-btns .btn { width:100%; justify-content:center; }
  .hero-stats { gap:18px; }
  .hero-stat strong { font-size:24px; }
  .why-grid, .courses-grid, .testi-grid, .blog-grid, .pricing-grid { grid-template-columns:1fr; }
  .teachers-grid, .highlight-cards, .feat-boxes, .process-steps { grid-template-columns:1fr 1fr; }
  .split { grid-template-columns:1fr; gap:28px; }
  .split-img img { height:240px; }
  .stats-inner { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-brand p { max-width:100%; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .section-pad { padding:52px 0; }
  .page-hero { padding:52px 20px; }
  .process-steps { grid-template-columns:1fr 1fr; gap:20px; }
  .enroll-box { padding:26px 20px; }
  .press-inner { gap:20px; }
}
@media (max-width:480px) {
  .teachers-grid, .highlight-cards, .process-steps { grid-template-columns:1fr; }
  .feat-boxes { grid-template-columns:1fr; }
  .hero-btns .btn { font-size:14px; padding:12px 20px; }
  .form-wrap { padding:22px 16px; }
  .price-card { padding:24px 18px; }
  .footer-grid { grid-template-columns:1fr; }
  .section-title { font-size:clamp(22px,6vw,30px); }
  .stats-inner { grid-template-columns:1fr 1fr; }
  .topbar { font-size:11.5px; }
}


/* ═══ LOGO SVG ═══ */
.logo-svg { flex-shrink:0; border-radius:11px; }

/* ═══ WHATSAPP STICKY BUTTON (proper brand look) ═══ */
.sticky-wa {
  position:fixed; bottom:26px; right:26px; z-index:9999;
  width:58px; height:58px; border-radius:50%;
  background:#25d366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 22px rgba(37,211,102,.5);
  transition:.25s; border:3px solid #fff;
}
.sticky-wa:hover { background:#1ebe5d; transform:scale(1.08) translateY(-2px); box-shadow:0 10px 30px rgba(37,211,102,.6); }

/* ═══ ICON NUMBER BADGES (replaces mismatched emoji icons) ═══ */
.icon-num {
  display:flex; align-items:center; justify-content:center;
  font-family:'Amiri', serif; font-weight:700; font-size:22px !important;
  color:#fff; background:linear-gradient(135deg,var(--green),var(--green-mid));
}
.info-icon.icon-num, .hc-icon.icon-num { color:#fff; }

/* ═══ WHY SECTION (homepage/about/course pages) ═══ */
.why-section { background:#fff; }

/* ═══ COUNTRIES WE SERVE — redesigned professional section ═══ */
.countries-section { background:linear-gradient(180deg,#fff 0%, var(--bg) 100%); }
.country-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:48px;
}
.country-card {
  background:#fff; border-radius:var(--radius); padding:28px 22px;
  box-shadow:var(--shadow); border:1px solid rgba(0,0,0,.05);
  display:flex; flex-direction:column; align-items:flex-start;
  transition:.25s; text-decoration:none;
}
.country-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(26,124,79,.25); }
.country-flag-badge {
  width:52px; height:52px; border-radius:50%; overflow:hidden;
  box-shadow:0 0 0 3px #fff, 0 2px 10px rgba(0,0,0,.18);
  margin-bottom:16px; flex-shrink:0;
}
.country-flag-badge svg { width:100%; height:100%; object-fit:cover; display:block; }
.country-card h3 { font-size:18px; font-weight:800; color:var(--text); margin-bottom:8px; }
.country-cities { font-size:12.5px; color:var(--text-muted); line-height:1.6; margin-bottom:18px; min-height:40px; }
.country-link { font-size:13.5px; font-weight:800; color:var(--green); display:inline-flex; align-items:center; gap:4px; margin-top:auto; }
.country-link .arrow { transition:.2s; }
.country-card:hover .country-link .arrow { transform:translateX(4px); }

.worldwide-strip {
  margin-top:28px; background:linear-gradient(120deg,var(--green-dark),var(--green));
  border-radius:var(--radius); padding:26px 32px;
  display:flex; align-items:center; gap:22px; flex-wrap:wrap;
  box-shadow:var(--shadow);
}
.worldwide-strip-icon { flex-shrink:0; width:40px; }
.worldwide-strip-text { flex:1; min-width:240px; }
.worldwide-strip-text h3 { color:#fff; font-size:17px; font-weight:800; margin-bottom:4px; }
.worldwide-strip-text p { color:rgba(255,255,255,.85); font-size:13.5px; line-height:1.6; }
.worldwide-strip-btn { flex-shrink:0; white-space:nowrap; }

@media (max-width:992px) {
  .country-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px) {
  .country-grid { grid-template-columns:1fr; }
  .worldwide-strip { flex-direction:column; text-align:center; }
  .worldwide-strip-text { min-width:0; }
}

/* ═══ COURSE CARDS — fully clickable ═══ */
.course-card[onclick] { cursor:pointer; }

/* ═══ BLOG CARDS — fully clickable (home page) ═══ */
.blog-card[onclick] { cursor:pointer; }
