/* =========================================================
   MEDINA VOYAGE — Design tokens
   Palette: black + white + grey, with warm orange as the single accent
   (matches the Medina Baitullah Score header/brand system).
   Variable names kept from the original build (--navy/--gold/--cream)
   but now map to black / orange / white so most of the stylesheet
   didn't need touching — only the values changed.
   Display: Fraunces (elegant, slightly warm serif)
   Body: Plus Jakarta Sans
   Signature motif: the "Roadmap Arc" — a dotted arc connecting
   Niat → Persiapan → Perjalanan → Keberangkatan.
   ========================================================= */

:root{
  --navy: #141414;       /* black */
  --navy-2: #262626;     /* black, soft */
  --navy-3: #333333;
  --gold: #EA7A2E;       /* orange accent */
  --gold-light: #F3A468;
  --gold-pale: #FBE4CE;
  --cream: #FFFFFF;      /* dominant background: white */
  --cream-2: #F2F2F2;    /* grey-light, secondary section bg */
  --ink: #141414;
  --ink-soft: #6E6E6E;   /* grey */
  --green: #EA7A2E;      /* alias kept for old references, now orange */
  --white: #FFFFFF;
  --line: rgba(20,20,20,0.12);
  --line-on-dark: rgba(255,255,255,0.14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-card: 0 10px 30px -12px rgba(20,20,20,0.25);
  --shadow-pop: 0 20px 50px -18px rgba(20,20,20,0.4);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
}
p{ margin: 0 0 1em; }
:focus-visible{ outline: 3px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
}

.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section{ padding: 88px 0; }
.section--tight{ padding: 56px 0; }
.section--dark{ background: var(--navy); color: rgba(255,255,255,0.88); }
.section--dark h2, .section--dark h3{ color: var(--white); }
.section--cream2{ background: var(--cream-2); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 14px;
}
.eyebrow::before{ content:""; width: 22px; height: 2px; background: var(--gold); display:inline-block; }

.section-head{ max-width: 640px; margin-bottom: 44px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(28px,4vw,40px); }
.section-head p{ color: var(--ink-soft); font-size: 17px; }
.section--dark .section-head p{ color: rgba(255,255,255,0.72); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 26px; border-radius: 999px; font-weight:700; font-size:15px;
  border: 1.5px solid transparent; cursor:pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-gold{ background: linear-gradient(180deg, var(--gold-light), var(--gold)); color: var(--navy); box-shadow: 0 10px 24px -8px rgba(234,122,46,.55); }
.btn-gold:hover{ box-shadow: 0 14px 30px -8px rgba(234,122,46,.65); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,.5); color: inherit; }
.btn-outline:hover{ border-color: var(--gold); }
.btn-navy{ background: var(--navy); color: var(--white); }
.btn-navy:hover{ background: var(--navy-2); }
.btn-wa{ background: #1F8A4C; color:#fff; }
.btn-wa:hover{ background:#187038; }
.btn-block{ width:100%; }
.btn-sm{ padding: 10px 18px; font-size: 13.5px; }

/* ---------- Navbar ---------- */
.navbar{
  position: sticky; top:0; z-index: 90;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar .container{ display:flex; align-items:center; justify-content:space-between; height: 78px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{ width:44px; height:44px; object-fit: contain; flex: none; }
.brand-name{ font-family: var(--font-display); font-weight:700; font-size:19px; color: #fff; line-height:1; letter-spacing:.02em; }
.brand-name small{ display:block; font-family: var(--font-body); font-weight:600; font-size:10px; letter-spacing:.08em; color: var(--gold); text-transform:uppercase; margin-top:5px; }

.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ font-size:14.5px; font-weight:600; color: rgba(255,255,255,.82); position:relative; padding: 4px 0; }
.nav-links a::after{ content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px; background: var(--gold); transform: scaleX(0); transform-origin:left; transition: transform .2s ease; }
.nav-links a:hover{ color:#fff; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ transform: scaleX(1); }
.nav-links a[aria-current="page"]{ color:#fff; }
.nav-cta{ display:flex; align-items:center; gap:14px; }

.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ display:block; width:24px; height:2px; background: #fff; margin:5px 0; transition: all .25s ease; }

@media (max-width: 980px){
  .nav-links{
    position: fixed; inset: 78px 0 0 0; background: var(--navy);
    flex-direction:column; align-items:flex-start; gap:0; padding: 12px 24px 24px;
    transform: translateY(-8px); opacity:0; pointer-events:none; transition: all .25s ease;
    overflow-y:auto; border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .nav-links a{ width:100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle{ display:block; }
  .nav-cta .btn span.long{ display:none; }
}

/* ---------- WA Floating Button ---------- */
.wa-float{
  position: fixed; right: 20px; bottom: 20px; z-index: 95;
  display:flex; align-items:center; gap:10px;
  background: #1F8A4C; color:#fff; padding: 14px 20px; border-radius: 999px;
  box-shadow: 0 14px 34px -10px rgba(31,138,76,.6);
  font-weight:700; font-size: 14px;
}
.wa-float:hover{ background:#187038; }
.wa-float svg{ width:22px; height:22px; flex:none; }
@media (max-width:600px){
  .wa-float span{ display:none; }
  .wa-float{ padding:15px; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative; overflow:hidden; padding: 76px 0 110px; color:#fff;
  background:
    radial-gradient(120% 140% at 15% -10%, rgba(38,38,38,0.55) 0%, rgba(20,20,20,0.78) 55%, rgba(15,15,15,0.94) 100%),
    linear-gradient(180deg, rgba(15,15,15,.55), rgba(15,15,15,.88)),
    url('../img/hero-bg.jpg') center 30%/cover no-repeat;
}
.hero::before{
  content:""; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background-image: radial-gradient(rgba(234,122,46,0.16) 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero .container{ position:relative; display:grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items:center; }
.hero-eyebrow{ color: var(--gold-light); }
.hero h1{ color:#fff; font-size: clamp(34px,4.6vw,58px); letter-spacing:-.01em; }
.hero h1 em{ font-style:normal; color: var(--gold-light); }
.hero p.lead{ font-size: 18px; color: rgba(255,255,255,.78); max-width: 520px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top: 28px; }
.hero-badges{ display:flex; flex-wrap:wrap; gap:22px; margin-top: 46px; }
.hero-badge{ display:flex; align-items:center; gap:10px; font-size:13.5px; color: rgba(255,255,255,.8); }
.hero-badge .dot{ width:8px; height:8px; border-radius:50%; background: var(--gold-light); }

.hero-art{ position:relative; }
.roadmap-card{
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-l); padding: 30px; backdrop-filter: blur(6px);
}
.roadmap-card h3{ color:#fff; font-size:18px; margin-bottom: 22px; }
.roadmap-steps{ position:relative; }
.roadmap-steps li{ display:flex; gap:16px; padding-bottom: 26px; position:relative; }
.roadmap-steps li::before{
  content:""; position:absolute; left:15px; top:34px; bottom:-6px; width:2px;
  background: repeating-linear-gradient(to bottom, var(--gold-light) 0 4px, transparent 4px 9px);
}
.roadmap-steps li:last-child{ padding-bottom:0; }
.roadmap-steps li:last-child::before{ display:none; }
.roadmap-num{ flex:none; width:32px; height:32px; border-radius:50%; background: var(--gold); color: var(--navy); font-weight:800; font-size:13px; display:flex; align-items:center; justify-content:center; }
.roadmap-steps b{ display:block; color:#fff; font-size:14.5px; }
.roadmap-steps span{ color: rgba(255,255,255,.65); font-size:13px; }

@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-art{ order:2; }
}

/* ---------- Marquee strip ---------- */
.strip{ background: var(--navy); border-top:1px solid var(--line-on-dark); border-bottom:1px solid var(--line-on-dark); }
.strip .container{ display:flex; flex-wrap:wrap; gap: 28px; justify-content:space-between; padding: 22px 24px; }
.strip-item{ display:flex; align-items:center; gap:10px; color: rgba(255,255,255,.85); font-size:13.5px; font-weight:600; }
.strip-item svg{ width:20px; height:20px; color: var(--gold-light); flex:none; }

/* ---------- Cards ---------- */
.grid{ display:grid; gap: 26px; }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
.grid-2{ grid-template-columns: repeat(2,1fr); }
@media (max-width: 980px){ .grid-4{ grid-template-columns: repeat(2,1fr); } .grid-3{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px){ .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; } }

.card{
  background: var(--white); border-radius: var(--radius-m); border: 1px solid var(--line);
  padding: 28px; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.card-icon{ width:48px; height:48px; border-radius: 14px; background: var(--gold-pale); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.card-icon svg{ width:24px; height:24px; color: var(--gold); }
.card h3{ font-size: 18px; margin-bottom:8px; }
.card p{ color: var(--ink-soft); font-size:14.5px; margin-bottom:0; }

/* ---------- Program tiers ---------- */
.tier-card{
  background: var(--white); border-radius: var(--radius-m); border: 1px solid var(--line);
  padding: 30px 26px; display:flex; flex-direction:column; position:relative; box-shadow: var(--shadow-card);
}
.tier-card.is-highlight{ border-color: var(--gold); box-shadow: 0 20px 44px -16px rgba(234,122,46,.45); transform: translateY(-8px); }
.tier-tag{ position:absolute; top:-13px; left:26px; background: var(--gold); color: var(--navy); font-size:11.5px; font-weight:800; padding:5px 14px; border-radius:999px; letter-spacing:.04em; }
.tier-name{ font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom:4px; }
.tier-tagline{ font-size:13.5px; color: var(--ink-soft); margin-bottom:18px; }
.tier-price{ font-family: var(--font-display); font-size: 30px; color: var(--gold); margin-bottom:2px; }
.tier-price span{ font-family: var(--font-body); font-size:13px; color: var(--ink-soft); font-weight:600; }
.tier-meta{ font-size:12.5px; color: var(--ink-soft); margin-bottom: 20px; padding-bottom:20px; border-bottom:1px dashed var(--line); }
.tier-benefits{ flex:1; margin-bottom: 24px; }
.tier-benefits li{ display:flex; gap:10px; font-size:13.8px; padding: 6px 0; color: var(--ink-soft); }
.tier-benefits svg{ width:16px; height:16px; color: var(--green); flex:none; margin-top:3px; }

/* ---------- Steps / flow ---------- */
.flow-grid{ display:grid; grid-template-columns: repeat(7,1fr); gap: 14px; counter-reset: step; }
@media (max-width: 980px){ .flow-grid{ grid-template-columns: repeat(4,1fr);} }
@media (max-width: 640px){ .flow-grid{ grid-template-columns: repeat(2,1fr);} }
.flow-step{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-s); padding:18px 14px; text-align:center; }
.flow-step .n{ width:28px; height:28px; border-radius:50%; background:var(--navy); color:#fff; font-weight:800; font-size:12.5px; display:flex; align-items:center; justify-content:center; margin: 0 auto 10px; }
.flow-step b{ display:block; font-size:12.8px; color: var(--navy); margin-bottom:4px; }
.flow-step span{ font-size:11.5px; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.testi-scroller{ display:flex; gap:22px; overflow-x:auto; scroll-snap-type: x mandatory; padding: 6px 4px 18px; }
.testi-scroller::-webkit-scrollbar{ height:6px; }
.testi-scroller::-webkit-scrollbar-thumb{ background: var(--line); border-radius:6px; }
.testi-card{ scroll-snap-align:start; flex: 0 0 min(360px,86vw); background: var(--white); border-radius: var(--radius-m); padding:26px; border:1px solid var(--line); box-shadow: var(--shadow-card); }
.testi-stars{ color: var(--gold); font-size:15px; margin-bottom:12px; letter-spacing:2px; }
.testi-quote{ font-size:14.8px; color: var(--ink-soft); font-style:italic; margin-bottom:18px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{ width:44px; height:44px; border-radius:50%; object-fit:cover; background: var(--cream-2); }
.testi-name{ font-weight:700; font-size:14px; color: var(--navy); }
.testi-role{ font-size:12px; color: var(--ink-soft); }

/* ---------- Gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
@media (max-width:900px){ .gallery-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:560px){ .gallery-grid{ grid-template-columns: 1fr;} }
.gallery-item{ position:relative; border-radius: var(--radius-m); overflow:hidden; aspect-ratio: 4/3; cursor:pointer; background: var(--cream-2); }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .35s ease; }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-cap{ position:absolute; left:0; right:0; bottom:0; padding: 14px 16px; font-size:12.5px; font-weight:600; color:#fff; background: linear-gradient(to top, rgba(20,20,20,.85), transparent); }

.lightbox{ position:fixed; inset:0; background: rgba(20,20,20,.92); z-index:200; display:none; align-items:center; justify-content:center; padding: 30px; }
.lightbox.open{ display:flex; }
.lightbox img{ max-width: 92vw; max-height: 82vh; border-radius: var(--radius-s); }
.lightbox-close{ position:absolute; top:22px; right:26px; color:#fff; font-size:32px; cursor:pointer; background:none; border:none; line-height:1; }
.lightbox-cap{ position:absolute; bottom:26px; left:0; right:0; text-align:center; color:#fff; font-size:14px; }

/* ---------- Blog ---------- */
.post-card{ background:var(--white); border-radius: var(--radius-m); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow-card); display:flex; flex-direction:column; }
.post-thumb{ aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy-2), var(--navy)); position:relative; overflow:hidden; }
.post-thumb img{ width:100%; height:100%; object-fit:cover; }
.post-cat{ position:absolute; top:14px; left:14px; background: rgba(255,255,255,.92); color: var(--navy); font-size:11px; font-weight:800; padding:5px 12px; border-radius:999px; text-transform:uppercase; letter-spacing:.04em; }
.post-body{ padding: 22px; display:flex; flex-direction:column; flex:1; }
.post-date{ font-size:12px; color: var(--gold); font-weight:700; text-transform:uppercase; letter-spacing:.05em; margin-bottom:8px; }
.post-body h3{ font-size:18.5px; margin-bottom:10px; }
.post-body p{ color: var(--ink-soft); font-size:14px; flex:1; }
.post-link{ font-weight:700; font-size:13.5px; color: var(--navy); display:inline-flex; align-items:center; gap:6px; margin-top:10px; }
.post-link svg{ width:14px; height:14px; transition: transform .2s ease; }
.post-card:hover .post-link svg{ transform: translateX(4px); }

.article-header{ background: var(--navy); color:#fff; padding: 70px 0 50px; }
.article-header .container{ max-width: 820px; }
.article-body{ max-width: 760px; margin: -30px auto 0; background:#fff; border-radius: var(--radius-m); box-shadow: var(--shadow-pop); padding: 44px; }
.article-body h2{ font-size:24px; margin-top:1.4em; }
.article-body p, .article-body li{ font-size:16px; color: var(--ink); }
.article-body ul, .article-body ol{ padding-left: 1.3em; margin-bottom:1em; }
.article-body ul{ list-style: disc; }
.article-body ol{ list-style: decimal; }

.paket-thumb{ position:relative; aspect-ratio: 4/5; border-radius:12px; margin-bottom:18px; overflow:hidden; background: linear-gradient(135deg, var(--navy-2), var(--navy)); }
.paket-thumb img{ width:100%; height:100%; object-fit:cover; object-position: center 15%; }

/* ---------- Ebook ---------- */
.ebook-card{ background:var(--white); border-radius: var(--radius-m); border:1px solid var(--line); padding: 22px; display:flex; gap:18px; box-shadow: var(--shadow-card); }
.ebook-cover{ flex:none; width:96px; aspect-ratio:3/4; border-radius: 10px; background: linear-gradient(160deg, var(--gold-light), var(--gold)); overflow:hidden; }
.ebook-cover img{ width:100%; height:100%; object-fit:cover; }
.ebook-info h3{ font-size:16.5px; margin-bottom:6px; }
.ebook-info p{ font-size:13.5px; color: var(--ink-soft); margin-bottom:12px; }
.ebook-meta{ font-size:11.5px; color: var(--gold); font-weight:700; text-transform:uppercase; letter-spacing:.04em; margin-bottom:8px; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items:start; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.field{ margin-bottom: 18px; }
.field label{ display:block; font-size:13px; font-weight:700; color: var(--navy); margin-bottom:7px; }
.field input, .field textarea, .field select{
  width:100%; padding: 13px 15px; border-radius: 10px; border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size:14.5px; background:#fff; color: var(--ink);
}
.field textarea{ min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--gold); outline:none; }
.contact-info-card{ background: var(--navy); color:#fff; border-radius: var(--radius-m); padding: 34px; }
.contact-info-card h3{ color:#fff; }
.contact-row{ display:flex; gap:14px; padding: 16px 0; border-bottom: 1px solid var(--line-on-dark); }
.contact-row:last-child{ border-bottom:none; }
.contact-row svg{ width:20px; height:20px; color: var(--gold-light); flex:none; margin-top:2px; }
.contact-row b{ display:block; font-size:13.5px; margin-bottom:2px; }
.contact-row span, .contact-row a{ font-size:13.5px; color: rgba(255,255,255,.75); }
.map-embed{ border:0; width:100%; height:260px; border-radius: var(--radius-m); margin-top:22px; }

/* ---------- Footer ---------- */
footer.site-footer{ background: #0F0F0F; color: rgba(255,255,255,.7); padding: 64px 0 26px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 46px; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h4{ color:#fff; font-size:14px; margin-bottom:16px; font-family: var(--font-body); text-transform:uppercase; letter-spacing:.06em; }
.footer-grid li{ margin-bottom:10px; font-size:13.8px; }
.footer-grid a:hover{ color: var(--gold-light); }
.footer-brand p{ font-size:13.8px; max-width:280px; }
.footer-social{ display:flex; gap:12px; margin-top:16px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; border:1px solid var(--line-on-dark); display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:16px; height:16px; }
.footer-bottom{ border-top:1px solid var(--line-on-dark); padding-top: 22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; }

/* ---------- FAQ ---------- */
.faq-list{ max-width: 780px; margin: 0 auto; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 22px 4px; font-family: var(--font-body); font-weight:700; font-size:15.5px; color: var(--navy);
}
.faq-q .faq-plus{ flex:none; width:24px; height:24px; border-radius:50%; border:1.5px solid var(--gold); color: var(--gold); display:flex; align-items:center; justify-content:center; font-size:16px; transition: transform .25s ease; }
.faq-item.open .faq-q .faq-plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-a p{ padding: 0 4px 22px; color: var(--ink-soft); font-size:14.5px; margin:0; }

/* ---------- Lead-capture modal (ebook download) ---------- */
.modal-overlay{ position:fixed; inset:0; background: rgba(20,20,20,.72); z-index:210; display:none; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open{ display:flex; }
.modal-box{ background:#fff; border-radius: var(--radius-m); max-width:440px; width:100%; padding:32px; position:relative; box-shadow: var(--shadow-pop); }
.modal-close{ position:absolute; top:16px; right:18px; background:none; border:none; font-size:26px; line-height:1; cursor:pointer; color: var(--ink-soft); }
.modal-box h3{ font-size:20px; margin-bottom:6px; }
.modal-box .modal-sub{ font-size:13.5px; color: var(--ink-soft); margin-bottom:22px; }
.modal-success{ display:none; text-align:center; padding: 10px 0; }
.modal-success.show{ display:block; }
.modal-success svg{ width:44px; height:44px; color: var(--gold); margin-bottom:14px; }
.modal-success p{ color: var(--ink-soft); font-size:14px; }

/* ---------- Misc utility ---------- */
.icon-circle svg{ width:17px; height:17px; }
.badge-sunnah{ display:inline-flex; align-items:center; gap:7px; background: rgba(59,110,82,.1); color: var(--green); font-size:12px; font-weight:700; padding:6px 14px; border-radius:999px; border:1px solid rgba(59,110,82,.25); }
.divider-arc{ height:40px; }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center; }
@media (max-width: 900px){ .two-col{ grid-template-columns:1fr; gap:34px; } }
.stat{ text-align:center; }
.stat b{ display:block; font-family: var(--font-display); font-size: 34px; color: var(--gold); }
.stat span{ font-size:12.5px; color: var(--ink-soft); }
.page-hero{ background: var(--navy); color:#fff; padding: 60px 0 46px; text-align:center; }
.page-hero .eyebrow{ justify-content:center; }
.page-hero h1{ color:#fff; font-size: clamp(30px,4vw,44px); }
.page-hero p{ color: rgba(255,255,255,.72); max-width:600px; margin: 0 auto; }
.filter-bar{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 34px; }
.filter-btn{ padding:9px 18px; border-radius:999px; border:1.5px solid var(--line); font-size:13px; font-weight:700; background:#fff; cursor:pointer; color: var(--ink-soft); }
.filter-btn.active{ background: var(--navy); border-color: var(--navy); color:#fff; }
.empty-state{ text-align:center; padding: 60px 20px; color: var(--ink-soft); }

.skip-link{ position:absolute; left:-999px; top:0; background:var(--gold); color:var(--navy); padding:10px 16px; z-index:999; }
.skip-link:focus{ left: 10px; top:10px; }
