:root {
  --navy: #0d1b4b;
  --navy-deep: #070e2b;
  --navy-mid: #142260;
  --gold: #c9a227;
  --gold-light: #e8c44a;
  --gold-pale: #f5e49c;
  --gold-dim: #7a5c0f;
  --white: #ffffff;
  --cream: #fdf8ee;
  --text-light: #e8e4d8;
  --text-muted: #8a9cc4;
  --border: rgba(201,162,39,0.25);
}



.hero-title 
.hero-tagline 
.hero-desc 
.hero-actions 
.hero-stats 
.hero-right 

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background:#070e2b;
  color: var(--text-light);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background:#070e2b; }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  height: 74px;
  background: rgba(7,14,43,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,162,39,0.25);
  transition: all 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.nav-logo img { height: 52px; width: 52px; object-fit: contain; border-radius: 4px; background: transparent; padding: 0; }
.nav-logo-text { font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 700; color: #e8c44a; letter-spacing: 0.04em; line-height: 1.2; }
.nav-logo-sub { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; color:#8a9cc4; letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-links a {
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500;
  color:#8a9cc4; text-decoration: none; padding: 0.45rem 0.85rem;
  border-radius: 6px; letter-spacing: 0.04em; transition: all 0.2s;
  position: relative;
}
.nav-links a:hover { color: #e8c44a; }
.nav-links a.active { color: #e8c44a; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--navy-deep) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }

/* ─── PAGES ─── */
.page { display: none; min-height: 100vh; opacity: 1; }
.page.active { display: block; opacity: 1; }

/* ─── HERO ─── */
.hero-outer { position: relative; overflow: hidden; background:#070e2b; }

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(20,34,96,0.8) 0%, var(--navy-deep) 70%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,162,39,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,162,39,0.04) 0%, transparent 40%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 4rem 4rem;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8c44a;
  margin-bottom: 1.6rem;
  
}
.hero-badge::before { content: '★'; color:#c9a227; }

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
  
}
.hero-title span {
  background: linear-gradient(135deg, #e8c44a, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-tagline {
  font-family: 'Crimson Pro', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-pale);
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
  
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color:#8a9cc4;
  max-width: 520px;
  margin-bottom: 2.2rem;
  
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap;  }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, #e8c44a, var(--gold));
  color: var(--navy-deep);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(201,162,39,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,162,39,0.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: #e8c44a;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201,162,39,0.4);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover { background: rgba(201,162,39,0.08); border-color:#c9a227; }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem;
  
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem; font-weight: 700;
  color: #e8c44a;
  line-height: 1;
}
.stat-label { font-size: 0.72rem; color:#8a9cc4; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; }

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
}
.hero-logo-wrap {
  position: relative;
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 60%, rgba(201,162,39,0.4) 80%, transparent 100%);
  animation: spin 8s linear infinite;
  opacity: 1;
}
.hero-logo-ring {
  position: absolute; inset: 0;
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50%;
  opacity: 1;
}
.hero-logo-ring:nth-child(2) { inset: -30px; border-color: rgba(201,162,39,0.15); animation: spin 15s linear infinite reverse; }
.hero-logo-img {
  width: 300px; height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(201,162,39,0.4)) drop-shadow(0 0 8px rgba(201,162,39,0.2));
  position: relative; z-index: 2;
  border-radius: 16px;
}

/* ─── SECTION COMMONS ─── */
.content-section { padding: 6rem 4rem; max-width: 1300px; margin: 0 auto; opacity: 1 !important; visibility: visible !important; }

.section-label {
  opacity: 1;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color:#c9a227; font-weight: 600; margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gold-dim); }

.section-title {
  opacity: 1;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title span { color: #e8c44a; }

.section-desc {
  opacity: 1;
  font-size: 0.95rem; line-height: 1.8; color:#8a9cc4; max-width: 600px;
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.25), transparent);
  margin: 0 4rem;
}

/* ─── WHY ACT ─── */
.why-grid {
  opacity: 1 !important; visibility: visible !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.why-card:hover { border-color: rgba(201,162,39,0.4); transform: translateY(-4px); background: rgba(255,255,255,0.05); }
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600; color: #e8c44a; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.88rem; line-height: 1.7; color:#8a9cc4; }

/* ─── PROGRAMS ─── */
.programs-page { background:#070e2b; }
.programs-intro { max-width: 1300px; margin: 0 auto; padding: 6rem 4rem 2rem; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1300px; margin: 2rem auto 0; padding: 0 4rem 6rem;
}
.program-card {
  background: linear-gradient(145deg, rgba(20,34,96,0.6), rgba(7,14,43,0.8));
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.program-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,0.04), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.program-card:hover { border-color: rgba(201,162,39,0.5); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.program-card:hover::after { opacity: 1; }
.program-tag {
  display: inline-block;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: #e8c44a; font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 1.2rem;
}
.program-card h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.program-card p { font-size: 0.88rem; line-height: 1.7; color:#8a9cc4; margin-bottom: 1.5rem; }
.program-features { list-style: none; margin-bottom: 2rem; }
.program-features li {
  font-size: 0.84rem; color: var(--text-light); padding: 0.4rem 0;
  display: flex; align-items: center; gap: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.program-features li::before { content: '✦'; color:#c9a227; font-size: 0.6rem; flex-shrink: 0; }
.program-enroll {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #e8c44a; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; transition: gap 0.2s;
}
.program-enroll:hover { gap: 0.8rem; }

/* ─── FREE RESOURCES ─── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.resource-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.resource-card:hover { border-color: rgba(201,162,39,0.4); background: rgba(201,162,39,0.05); transform: translateY(-3px); }
.resource-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.resource-card h3 { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 600; color: #e8c44a; margin-bottom: 0.5rem; }
.resource-card p { font-size: 0.82rem; line-height: 1.6; color:#8a9cc4; }

/* ─── ABOUT ─── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-logo-side {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
.about-logo {
  width: 260px; height: 260px; object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(201,162,39,0.3));
  border-radius: 16px;
}
.about-award {
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 12px;
  padding: 1.2rem 1.8rem;
  text-align: center;
}
.about-award-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.about-award-title { font-family: 'Cinzel', serif; font-size: 0.9rem; color: #e8c44a; margin-bottom: 0.3rem; }
.about-award-sub { font-size: 0.75rem; color:#8a9cc4; }

.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { font-size: 0.93rem; line-height: 1.9; color:#8a9cc4; margin-bottom: 1.2rem; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.highlight-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 10px;
  padding: 1.2rem;
}
.highlight-num { font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700; color: #e8c44a; }
.highlight-label { font-size: 0.75rem; color:#8a9cc4; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.2rem; }

/* ─── TESTIMONIALS ─── */
.testimonials-page { background:#070e2b; }
.testimonials-wrap { max-width: 1300px; margin: 0 auto; padding: 6rem 4rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(201,162,39,0.35); background: rgba(255,255,255,0.05); }
.testimonial-stars { color:#c9a227; font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial-text { font-family: 'Crimson Pro', serif; font-size: 1.05rem; line-height: 1.7; color: var(--text-light); font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 700; color: #e8c44a; font-size: 0.85rem;
  border: 1px solid rgba(201,162,39,0.25);
}
.author-name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.author-detail { font-size: 0.75rem; color:#8a9cc4; }

/* ─── CONTACT ─── */
.contact-page { background:#070e2b; }
.contact-wrap { max-width: 1300px; margin: 0 auto; padding: 6rem 4rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; margin-top: 3rem; align-items: start; }
.contact-info h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 1rem; }
.contact-info p { font-size: 0.9rem; line-height: 1.8; color:#8a9cc4; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { font-size: 1.2rem; margin-top: 0.1rem; flex-shrink: 0; }
.contact-detail-text a { color: #e8c44a; text-decoration: none; font-size: 0.9rem; }
.contact-detail-text a:hover { text-decoration: underline; }
.contact-detail-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color:#8a9cc4; margin-bottom: 0.2rem; }

.social-links { display: flex; gap: 0.8rem; margin-top: 2rem; }
.social-link {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid rgba(201,162,39,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; color:#8a9cc4;
  transition: all 0.2s;
}
.social-link:hover { border-color:#c9a227; color:#c9a227; background: rgba(201,162,39,0.08); }

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 20px;
  padding: 2.5rem;
}
.contact-form h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }
.contact-form-sub { font-size: 0.82rem; color:#8a9cc4; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color:#8a9cc4; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:#c9a227; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,156,196,0.5); }
.form-group select option { background:#070e2b; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ─── FAQ ─── */
.faq-section {
  opacity: 1 !important; visibility: visible !important; padding: 4rem; max-width: 1300px; margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; transition: background 0.2s;
  font-size: 0.88rem; font-weight: 600; color: var(--text-light);
}
.faq-question:hover { background: rgba(201,162,39,0.05); }
.faq-toggle { color:#c9a227; font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s;
  font-size: 0.85rem; line-height: 1.7; color:#8a9cc4;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1.2rem; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ─── RULES ─── */
.rules-section {
  opacity: 1 !important; visibility: visible !important; padding: 4rem; max-width: 1300px; margin: 0 auto; }
.rules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin-top: 2rem; }
.rule-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid var(--gold-dim);
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem; line-height: 1.5; color:#8a9cc4;
}
.rule-item::before { content: '—'; color: var(--gold-dim); flex-shrink: 0; }

/* ─── FOOTER ─── */
footer {
  background: rgba(7,14,43,0.95);
  border-top: 1px solid rgba(201,162,39,0.25);
  padding: 4rem 4rem 2rem;
}
.footer-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand 
.footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; text-decoration: none; }
.footer-logo img { height: 56px; width: 56px; object-fit: contain; border-radius: 6px; background: transparent; padding: 0; }
.footer-logo-text { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: #e8c44a; line-height: 1.2; }
.footer-logo-sub { font-size: 0.65rem; color:#8a9cc4; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-desc { font-size: 0.84rem; line-height: 1.7; color:#8a9cc4; margin-bottom: 1.5rem; }
.footer-tagline { font-family: 'Crimson Pro', serif; font-style: italic; color: var(--gold-pale); font-size: 0.95rem; letter-spacing: 0.06em; }

.footer-col h4 { font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 600; color: #e8c44a; margin-bottom: 1.2rem; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { color:#8a9cc4; text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
.footer-col a:hover { color: #e8c44a; }

.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  border-top: 1px solid rgba(201,162,39,0.25);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color:#8a9cc4; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color:#8a9cc4; text-decoration: none; }
.footer-bottom-links a:hover { color: #e8c44a; }

/* ─── FLOATING WHATSAPP ─── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none; color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ─── ANIMATIONS ─── */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
}

/* ─── UNIVERSAL VISIBILITY GUARANTEE ─── */
body * { opacity: 1; }
/* Hero ring animations are exceptions - they use opacity via their own CSS */
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
}

/* ─── PROG PILLS ─── */
.prog-pills {
  opacity: 1 !important; visibility: visible !important;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}
.prog-pill {
  cursor: pointer;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 110px;
}
.prog-pill:hover {
  border-color: rgba(201,162,39,0.55);
  background: rgba(201,162,39,0.13);
}
.pill-icon { font-size: 1.5rem; }
.pill-label {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  color: #e8c44a;
  margin-top: 0.5rem;
  font-weight: 600;
}
.prog-pills-cta { margin-top: 2rem; }

/* ─── FREE SESSION BANNER ─── */
.free-session-banner {
  margin-top: 3rem;
  background: rgba(201,162,39,0.06);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ─── VIDEO TESTIMONIALS ─── */
.video-section {
  opacity: 1 !important; visibility: visible !important;
  padding: 5rem 4rem;
  max-width: 1300px;
  margin: 0 auto;
}
.video-grid {
  opacity: 1 !important; visibility: visible !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.video-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.25);
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,39,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #0d1b4b;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-thumb .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,14,43,0.55);
  transition: background 0.3s;
  cursor: pointer;
  z-index: 2;
}
.video-thumb .play-overlay:hover { background: rgba(7,14,43,0.2); }
.play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c44a, #c9a227);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(201,162,39,0.5);
  transition: transform 0.2s;
}
.play-overlay:hover .play-btn { transform: scale(1.1); }
.video-thumb .thumb-img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.video-info {
  padding: 1.2rem 1.4rem;
}
.video-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  color: #e8c44a;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.video-info p {
  font-size: 0.78rem;
  color: #8a9cc4;
  line-height: 1.5;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #142260, #070e2b);
  gap: 0.5rem;
}
.video-placeholder span { font-size: 2.5rem; }
.video-placeholder p { font-size: 0.72rem; color: #8a9cc4; letter-spacing: 0.08em; text-transform: uppercase; }

/* When iframe is loaded, hide overlay */
.video-card.playing .play-overlay { display: none; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 74px; left: 0; right: 0;
    background: rgba(7,14,43,0.98);
    border-bottom: 1px solid rgba(201,162,39,0.25);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.3rem;
  }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: 100px 1.5rem 3rem; gap: 2rem; text-align: center; }
  .hero-desc { margin: 0 auto 2.2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { order: -1; }
  .hero-logo-wrap { width: 240px; height: 240px; }
  .hero-logo-img { width: 200px; height: 200px; }

  .content-section { padding: 4rem 1.5rem; }
  .why-grid {
  opacity: 1 !important; visibility: visible !important; grid-template-columns: 1fr; }
  .programs-intro { padding: 4rem 1.5rem 1rem; }
  .programs-grid { grid-template-columns: 1fr; padding: 0 1.5rem 4rem; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-wrap { padding: 4rem 1.5rem; }
  .contact-wrap { padding: 4rem 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .faq-section {
  opacity: 1 !important; visibility: visible !important; padding: 2rem 1.5rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .rules-section {
  opacity: 1 !important; visibility: visible !important; padding: 2rem 1.5rem; }
  .rules-grid { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .resources-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .prog-pills {
  opacity: 1 !important; visibility: visible !important; gap: 0.7rem; }
  .prog-pill { min-width: calc(50% - 0.35rem); flex: 1 1 calc(50% - 0.35rem); }
  .free-session-banner { padding: 1.5rem; flex-direction: column; text-align: center; align-items: center; }
  .divider { margin: 0 1.5rem; }
  .video-grid {
  opacity: 1 !important; visibility: visible !important; grid-template-columns: 1fr; }
  .video-section {
  opacity: 1 !important; visibility: visible !important; padding: 3rem 1.5rem; }
}

/* ── WordPress Core Overrides ── */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.elementor-page { padding-top: 74px; }
#main-content { min-height: 80vh; }

/* WordPress menu items */
.nav-links li { list-style: none; display: inline-block; }
.nav-links li a { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500;
  color: #8a9cc4; text-decoration: none; padding: 0.45rem 0.85rem;
  border-radius: 6px; letter-spacing: 0.04em; transition: all 0.2s; }
.nav-links li a:hover { color: #e8c44a; }
.nav-links li.current-menu-item > a { color: #e8c44a; }

/* Custom logo fix */
.custom-logo-link img { height: 52px; width: 52px; object-fit: contain; }
.nav-logo .custom-logo-link { display: flex; }

/* Blog / single post styles */
.single-post-wrap { padding: 120px 4rem 6rem; max-width: 900px; margin: 0 auto; }
.post-title { font-family: 'Cinzel', serif; font-size: 2rem; color: #ffffff; margin-bottom: 1rem; }
.post-meta { font-size: 0.82rem; color: #8a9cc4; margin-bottom: 2rem; display: flex; gap: 1rem; }
.post-thumbnail { border-radius: 12px; overflow: hidden; margin-bottom: 2rem; }
.post-thumbnail img { width: 100%; height: auto; }
.post-content { font-size: 1rem; line-height: 1.9; color: #e8e4d8; }
.post-content h2, .post-content h3 { font-family: 'Cinzel', serif; color: #e8c44a; margin: 2rem 0 1rem; }
.post-content p { margin-bottom: 1.2rem; }
.post-content a { color: #e8c44a; }

/* Elementor compatibility */
.elementor-section { position: relative; }
.e-con, .elementor-container { max-width: 1300px !important; }

@media (max-width: 900px) {
  .single-post-wrap { padding: 100px 1.5rem 4rem; }
}
