/* ============================================
   ACADEMY OF NURTURING AND DISCIPLINE
   Eid Campaign Page — style.css (clean)
   ============================================ */

:root {
  --green-light:  #588B7D;
  --green-mid:    #2A5C50;
  --green-core:   #0F3D33;
  --green-deep:   #08261F;
  --green-dark:   #021410;

  --gold-pale:    #F2E1A1;
  --gold-light:   #E3C664;
  --gold-core:    #C5A028;
  --gold-deep:    #967816;

  --ivory-bright: #F2EFE6;
  --ivory-mid:    #E6DECD;
  --ivory-warm:   #C2B59B;

  --font-display: 'Cinzel', serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-elegant: 'EB Garamond', serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--green-dark);
  color: var(--ivory-bright);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ============================================
   INTRO LOADING SCREEN
   ============================================ */
#intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.9s ease;
}
#intro-screen.fade-out { opacity: 0; pointer-events: none; }

.intro-logo {
  width: 120px;
  animation: intro-pulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(197,160,40,0.6));
}
@keyframes intro-pulse {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(197,160,40,0.5)); }
  50%     { transform: scale(1.05); filter: drop-shadow(0 0 50px rgba(197,160,40,0.9)); }
}

.intro-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.5em;
  color: var(--gold-core);
  text-transform: uppercase;
  animation: fade-in 0.8s ease forwards 0.4s;
  opacity: 0;
}

.intro-bar {
  width: 160px;
  height: 1px;
  background: rgba(197,160,40,0.2);
  position: relative;
  overflow: hidden;
}
.intro-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(to right, transparent, var(--gold-core), transparent);
  animation: intro-bar-slide 2s ease forwards 0.3s;
}
@keyframes intro-bar-slide {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ============================================
   CANVAS LAYERS
   ============================================ */
#particles-canvas,
#lantern-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
#particles-canvas { opacity: 0.4; }
#lantern-canvas   { opacity: 1; }

/* ============================================
   STICKY NAV
   ============================================ */
#sticky-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(2,20,16,0.95);
  border-bottom: 1px solid rgba(197,160,40,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
#sticky-nav.visible { transform: translateY(0); }

.nav-logo {
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(197,160,40,0.3));
}
.nav-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold-core);
  text-transform: uppercase;
  display: none;
}

/* Smaller nav button */
.btn-primary--nav {
  padding: 10px 28px;
  font-size: 0.8rem;
}

/* ============================================
   HERO
   ============================================ */
.hero-scroll-zone {
  position: relative;
  height: 300vh; /* JS will override to correct total */
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--green-deep);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, transparent 20%, rgba(2,20,16,0.38) 60%, rgba(2,20,16,0.82) 100%),
    linear-gradient(to bottom, rgba(2,20,16,0.25) 0%, transparent 25%, transparent 65%, rgba(2,20,16,0.75) 100%);
  z-index: 2;
  pointer-events: none;
}

.lantern-flicker-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 35% 50% at 15% 62%, rgba(255,175,50,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 28% 40% at 85% 58%, rgba(255,155,35,0.07) 0%, transparent 70%);
  animation: flicker 3.5s ease-in-out infinite;
}
@keyframes flicker {
  0%,100% { opacity:1; }
  22%  { opacity:0.82; }
  45%  { opacity:0.96; }
  60%  { opacity:0.78; }
  78%  { opacity:1; }
  90%  { opacity:0.87; }
}

/* HERO TEXT LAYERS */
/* ---- ACT 1 — headline high in frame, above gift box ---- */
#hero-act1 {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(60px, 8vh, 120px);
  text-align: center;
  pointer-events: none;
}
.hero-title-act1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ivory-bright);
  text-shadow: 0 2px 40px rgba(0,0,0,.85);
  text-align: center;
  max-width: 14ch;
}
.hero-title-act1 .gold { color: var(--gold-light); }

/* ---- ACT 3 — absolute positioning anchored to logo visual center (~48% from left) ---- */
#hero-act3 {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

/* Headline — top, optically centered on logo */
.act3-headline-wrap {
  position: absolute;
  top: clamp(18px, 3.5vh, 55px);
  left: 50%;
  transform: translateX(-52%) translateY(14px);
  text-align: center;
  opacity: 0;
  white-space: nowrap;
}
.act3-headline {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.9;
  margin: 0;
  padding: 0;
}
.act3-hl-line1 {
  display: block;
  font-size: 64px;
  color: rgb(245, 240, 232);
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  text-shadow: rgba(0,0,0,0.5) 0 2px 24px;
}
.act3-hl-line2 {
  display: block;
  font-size: 76.8px;
  color: rgb(212, 175, 55);
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  text-shadow: rgba(0,0,0,0.6) 0px 2px 32px, rgba(212,175,55,0.3) 0 0 40px;
  line-height: 0.95;
}
.act3-hl-line1 { line-height: 0.95; }
/* ── Shared gold glow utility ── */
.gold-glow-text {
  color: #F5DC6A;
  text-shadow: 0 0 14px rgba(212,175,55,0.95), 0 0 35px rgba(212,175,55,0.55), 0 0 65px rgba(212,175,55,0.28);
}
/* Hero "A Gift for You." glow (act0 + act3) */
.act-gift-glow {
  color: #F5DC6A !important;
  text-shadow: 0 0 14px rgba(212,175,55,0.95), 0 0 35px rgba(212,175,55,0.55), 0 0 65px rgba(212,175,55,0.28) !important;
}
/* Scroll text gold */
.scroll-text.gold-glow-text {
  color: #F5DC6A;
  text-shadow: 0 0 14px rgba(212,175,55,0.95), 0 0 35px rgba(212,175,55,0.55), 0 0 65px rgba(212,175,55,0.28);
}
/* Counter number glow */
.spots-num-glow {
  color: #F5DC6A !important;
  text-shadow: 0 0 20px rgba(212,175,55,0.95), 0 0 45px rgba(212,175,55,0.6), 0 0 80px rgba(212,175,55,0.3) !important;
}
/* Counter box glow */
.spots-display-glow {
  box-shadow: 0 0 25px rgba(212,175,55,0.45), 0 0 60px rgba(212,175,55,0.2), inset 0 0 20px rgba(212,175,55,0.05) !important;
  border: 1px solid rgba(212,175,55,0.35) !important;
  align-items: center !important;
}
.act3-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ivory-bright);
  text-shadow: 0 2px 50px rgba(0,0,0,.9), 0 0 80px rgba(0,0,0,.6);
  white-space: nowrap;
}
.act3-title .gold { color: var(--gold-light); }

/* Subtitle (yellow) — left side, ~46% from top, toward logo base */
.act3-sub--left {
  position: absolute;
  top: 46%;
  left: 8%;
  max-width: 210px;
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: var(--ivory-mid);
  line-height: 1.8;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  text-shadow: 0 1px 20px rgba(0,0,0,.95);
}

/* Date (orange) — right side, higher (~30% from top), near lantern top */
.act3-sub--right {
  position: absolute;
  top: 30%;
  right: 5%;
  max-width: 190px;
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: var(--ivory-mid);
  line-height: 1.8;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  text-shadow: 0 1px 20px rgba(0,0,0,.95);
}

/* Button (red) — nudged left to align with logo visual center */
.act3-cta-wrap {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translateX(-56%) translateY(14px);
  opacity: 0;
  pointer-events: all;
}
.act3-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green-dark);
  background: linear-gradient(135deg, #F2E1A1 0%, #E3C664 25%, #C5A028 55%, #E3C664 78%, #F2E1A1 100%);
  background-size: 200% auto;
  padding: 18px 52px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-position .4s ease, transform .2s ease, box-shadow .3s ease;
  box-shadow: 0 4px 30px rgba(197,160,40,.5), 0 0 0 1px rgba(197,160,40,.35);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.act3-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}
.act3-btn:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 8px 50px rgba(197,160,40,.7), 0 0 0 1px rgba(197,160,40,.5); }
.act3-btn:hover::before { transform: translateX(100%); }

/* Tagline — below button, following logo center */
.act3-tagline {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translateX(-52%) translateY(10px);
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--gold-core);
  text-transform: uppercase;
  opacity: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
  white-space: nowrap;
}
.act3-dot { width: 3px; height: 3px; background: var(--gold-core); border-radius: 50%; flex-shrink: 0; }
.act3-spots { font-size: 0.68rem; letter-spacing: 0.28em; gap: 14px; color: var(--gold-light); text-transform: uppercase; text-shadow: 0 0 16px rgba(212,175,55,0.5); }

/* act3-bottom is a transparent wrapper — JS positions the children absolutely */
.act3-bottom { display: block; position: static; width: 0; height: 0; overflow: visible; }

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: scroll-indicator-in 1s ease forwards 2.2s;
}
@keyframes scroll-indicator-in {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.scroll-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--gold-core);
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(212,175,55,0.9), 0 1px 8px rgba(0,0,0,0.6);
}
.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, #D4AF37, transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(212,175,55,0.5);
}
@keyframes scroll-pulse { 0%,100%{opacity:.5;} 50%{opacity:1;} }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display:inline-block;
  font-family:var(--font-display);
  font-size:1rem;
  font-weight:600;
  letter-spacing:0.3em;
  text-transform:uppercase;
  text-decoration:none;
  color:var(--green-dark);
  background:linear-gradient(135deg,var(--gold-pale) 0%,var(--gold-light) 30%,var(--gold-core) 60%,var(--gold-light) 80%,var(--gold-pale) 100%);
  background-size:200% auto;
  padding:18px 52px;
  border:none;
  border-radius:2px;
  cursor:pointer;
  transition:background-position .4s ease,transform .2s ease,box-shadow .3s ease;
  box-shadow:0 4px 30px rgba(197,160,40,.4),0 0 0 1px rgba(197,160,40,.3);
  position:relative;
  overflow:hidden;
}
.btn-primary::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,transparent 40%,rgba(255,255,255,.22) 50%,transparent 60%);
  transform:translateX(-100%);
  transition:transform .5s ease;
}
.btn-primary:hover { background-position:right center; transform:translateY(-2px); box-shadow:0 8px 50px rgba(197,160,40,.6),0 0 0 1px rgba(197,160,40,.5); }
.btn-primary:hover::before { transform:translateX(100%); }

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section { position:relative; padding:100px 40px; z-index:5; }
.section-inner { max-width:1000px; margin:0 auto; }

.section-label {
  font-family:var(--font-display);
  font-size: 0.78rem;
  letter-spacing:0.5em;
  text-transform:uppercase;
  color:var(--gold-core);
  margin-bottom:18px;
  display:block;
}
.section-title {
  font-family:var(--font-display);
  font-size:clamp(1.8rem,4vw,3rem);
  font-weight:600;
  color:var(--ivory-bright);
  line-height:1.2;
  margin-bottom:40px;
}
.section-title.centered { text-align:center; }

.gold-rule {
  width:80px;
  height:1px;
  background:linear-gradient(to right,transparent,var(--gold-core),transparent);
  margin:28px auto;
}

/* ============================================
   EMPATHY
   ============================================ */
.empathy {
  background:linear-gradient(170deg,var(--green-dark) 0%,var(--green-deep) 50%,var(--green-dark) 100%);
  position:relative;
  overflow:hidden;
}
.empathy::before {
  content:'';
  position:absolute;
  inset:0;
  background-image:url('gifts-table.jpg');
  background-size:cover;
  background-position:center;
  opacity:0.08;
  z-index:0;
}
.empathy-inner { position:relative; z-index:1; max-width:780px; margin:0 auto; text-align:center; }
.empathy-inner .section-label { text-shadow: 0 0 18px rgba(212,175,55,0.8), 0 0 40px rgba(212,175,55,0.4); }
.empathy-block { margin-bottom: 60px; }
.empathy-lead {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .02em;
  margin-bottom: 12px;
  font-style: normal;
  text-align: center;
  text-shadow: 0 0 18px rgba(212,175,55,0.7), 0 0 40px rgba(212,175,55,0.3);
}
.empathy-body {
  font-family: var(--font-elegant);
  font-size: clamp(1.15rem, 2vw, 1.25rem);
  font-style: italic;
  color: #ffffff;
  line-height: 2;
  text-align: center;
}
.empathy-unity {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.3;
  margin: 0 0 20px;
  text-align: center;
  text-shadow: 0 0 18px rgba(212,175,55,0.7), 0 0 40px rgba(212,175,55,0.3);
}
.empathy-close { font-family:var(--font-elegant); font-size:1.35rem; font-style:italic; color:var(--ivory-mid); line-height:2; }

/* ============================================
   WHY DIFFERENT
   ============================================ */
.why { background:linear-gradient(160deg,var(--green-core) 0%,var(--green-deep) 100%); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:56px; }
.why-card {
  background: linear-gradient(160deg, rgba(8,46,34,0.97) 0%, rgba(4,24,18,1) 100%);
  border: none;
  border-radius: 6px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow:
    0 0 0 2px #8B6010,
    0 0 0 3.5px #F5DC6A,
    0 0 0 4.5px #C8980A,
    0 0 0 5.5px rgba(212,175,55,0.3),
    0 8px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.why-card::before { display: none; }
.why-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 2px #9B7010,
    0 0 0 3.5px #FFE87A,
    0 0 0 4.5px #D4AF37,
    0 0 0 6px rgba(212,175,55,0.4),
    0 12px 60px rgba(0,0,0,0.6),
    0 0 30px rgba(212,175,55,0.1),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.why-card-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.5));
}
.why-card-icon svg { width: 68px; height: 68px; }
.why-card-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 16px;
  margin-bottom: 12px;
  line-height: 1.35;
  text-shadow: 0 0 20px rgba(212,175,55,0.4);
}
.why-card-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(245,240,232,0.92);
  line-height: 1.8;
  text-align: center;
  margin: 0;
}
.why-number { display: none; }
.why-ornament {
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-ornament--top { margin-bottom: 40px; }
.why-ornament--bottom { margin-top: 40px; }

/* ============================================
   OFFER SECTION
   ============================================ */
.offer { position:relative; overflow:hidden; padding:120px 40px; }
.offer-parallax {
  position:absolute; inset:-25% -5%;
  background-image:url('gifts-hall.jpg');
  background-size:cover; background-position:center;
  will-change:transform; z-index:0;
}
.offer-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(2,20,16,.93) 0%,rgba(8,38,31,.89) 50%,rgba(2,20,16,.93) 100%);
  z-index:1;
}
.offer-inner { position:relative; z-index:2; max-width:1100px; margin:0 auto; text-align:center; }
.offer-intro { font-family:var(--font-elegant); font-size:1.05rem; font-style:italic; color:var(--ivory-mid); max-width:680px; margin:0 auto 65px; line-height:2; }
.offer-cards { display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:start; }
.offer-card {
  border:1px solid rgba(197,160,40,.22);
  padding:46px 38px;
  position:relative;
  overflow:hidden;
  text-align:left;
  background:linear-gradient(145deg,rgba(15,61,51,.97) 0%,rgba(8,38,31,.99) 100%);
  transition:transform .3s ease;
}
.offer-card-premium {
  border-color:rgba(197,160,40,.45);
  box-shadow:0 0 60px rgba(197,160,40,.08);
  background:linear-gradient(145deg,rgba(20,55,40,.97) 0%,rgba(10,45,28,.99) 100%);
}
.offer-card:hover { transform:translateY(-6px); }

/* Gift animation */
.gift-anim-wrapper { display:inline-block; position:relative; text-align:center; }
.gift-box-outer { position:relative; display:inline-block; }
.gift-box-body {
  border-radius:3px;
  position:relative;
  box-shadow:0 8px 30px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
  transition:transform .4s ease;
}
.gift-ribbon-h { position:absolute; top:50%; left:0; right:0; transform:translateY(-50%); }
.gift-ribbon-v { position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%); }
.gift-lid {
  position:absolute;
  left:-5px; right:-5px;
  border-radius:3px;
  box-shadow:0 3px 15px rgba(0,0,0,.4);
  transform-origin:center bottom;
  transition:transform .6s cubic-bezier(.34,1.56,.64,1), top .6s ease;
  top:-12px;
  height:18px;
}
.gift-bow {
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  font-size:1.4rem;
  transition:transform .6s cubic-bezier(.34,1.56,.64,1), top .6s ease;
  top:-30px;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.4));
}
.gift-anim-wrapper.open .gift-lid { transform:rotateX(-110deg) translateY(-20px); top:-40px; }
.gift-anim-wrapper.open .gift-bow { transform:translateX(-50%) translateY(-30px) rotate(-15deg); top:-55px; }

.gift-sparkles {
  position:absolute;
  top:0; left:50%;
  transform:translateX(-50%);
  pointer-events:none;
  opacity:0;
  transition:opacity .1s ease .3s;
}
.gift-anim-wrapper.open .gift-sparkles { opacity:1; animation:sparkle-burst .8s ease forwards .3s; }
@keyframes sparkle-burst {
  0%   { opacity:0; transform:translateX(-50%) scale(0.5); }
  40%  { opacity:1; transform:translateX(-50%) scale(1.2); }
  100% { opacity:0; transform:translateX(-50%) scale(1.8); }
}

.gift-visual { text-align:center; margin-bottom:34px; padding-top:20px; }
.gift-stack-visual { display:inline-flex; align-items:flex-end; gap:5px; }

.gift-stack-label {
  font-family:var(--font-display);
  font-size:.68rem;
  letter-spacing:.2em;
  color:var(--gold-deep);
  text-transform:uppercase;
  margin-top:18px;
  display:block;
  text-align:center;
}

.offer-tier-label { font-family:var(--font-display); font-size:.68rem; letter-spacing:.4em; text-transform:uppercase; color:var(--gold-core); margin-bottom:10px; display:block; }
.offer-tier-name { font-family:var(--font-display); font-size:clamp(1.2rem,2.5vw,1.7rem); font-weight:600; color:var(--ivory-bright); margin-bottom:8px; line-height:1.2; }
.offer-features { list-style:none; margin-bottom:28px; }
.offer-features li {
  padding:11px 0;
  border-bottom:1px solid rgba(197,160,40,.08);
  font-family:var(--font-elegant);
  font-size:.98rem;
  color:var(--ivory-mid);
  display:flex;
  align-items:flex-start;
  gap:12px;
  line-height:1.6;
}
.offer-features li::before { content:'◆'; color:var(--gold-core); font-size:.45rem; margin-top:7px; flex-shrink:0; }
.offer-features strong { color:var(--gold-light); font-style:normal; font-weight:600; }

.offer-premium-note {
  background:linear-gradient(135deg,rgba(197,160,40,.07),rgba(197,160,40,.04));
  border-left:2px solid var(--gold-core);
  padding:14px 18px;
  margin-bottom:22px;
  font-family:var(--font-elegant);
  font-style:italic;
  font-size:.92rem;
  color:var(--ivory-mid);
  line-height:1.8;
}

.offer-footer { margin-top:56px; text-align:center; padding-top:38px; border-top:1px solid rgba(197,160,40,.12); }
.offer-footer p { font-family:var(--font-elegant); font-style:italic; color:var(--ivory-warm); font-size:.92rem; line-height:2; }

/* ============================================
   URGENCY
   ============================================ */
.urgency {
  background:linear-gradient(135deg,var(--green-deep) 0%,var(--green-core) 50%,var(--green-deep) 100%);
  position:relative;
  overflow:hidden;
  padding:100px 40px;
}
.urgency::before {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 60% 80% at 50% 50%,rgba(197,160,40,.04) 0%,transparent 70%);
}
.urgency-inner { position:relative; max-width:780px; margin:0 auto; text-align:center; }

.spots-display {
  display:inline-flex;
  align-items:baseline;
  gap:12px;
  background:rgba(8,38,31,.7);
  border:1px solid rgba(197,160,40,.3);
  padding:20px 40px;
  margin:30px 0;
  border-radius:2px;
}
.spots-number {
  font-family:var(--font-display);
  font-size:3.5rem;
  font-weight:700;
  color:var(--gold-light);
  line-height:1;
  text-shadow:0 0 40px rgba(197,160,40,.4);
}
.spots-label {
  font-family:var(--font-display);
  font-size: 0.85rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--ivory-warm);
}

.urgency-title { font-family:var(--font-display); font-size:clamp(1.5rem,4vw,2.6rem); font-weight:600; color:var(--gold-light); line-height:1.3; margin-bottom:28px; text-shadow:0 0 60px rgba(197,160,40,.25); }
.urgency-body { font-family:var(--font-elegant); font-style:italic; font-size: clamp(1.15rem, 2vw, 1.25rem); color:var(--ivory-mid); line-height:2; margin-bottom:36px; }
.urgency-close { font-family:var(--font-display); font-size:clamp(.95rem,2.5vw,1.35rem); font-weight:600; color:var(--ivory-bright); letter-spacing:.02em; line-height:1.6; }

/* ============================================
   SOCIAL PROOF
   ============================================ */
.proof {
  background:linear-gradient(170deg,var(--green-dark) 0%,var(--green-deep) 100%);
  position:relative;
  overflow:hidden;
}
.proof::before {
  content:'';
  position:absolute;
  inset:0;
  background-image:url('gifts-corridor.jpg');
  background-size:cover;
  background-position:center;
  opacity:.06;
  z-index:0;
}
.proof-inner { position:relative; z-index:1; max-width:1200px; margin:0 auto; text-align:center; }
.proof-title-glow { text-shadow:0 0 30px rgba(212,175,55,0.35), 0 0 60px rgba(212,175,55,0.18); }
.proof-title-glow .gold { color:rgb(212,175,55); }
.proof-intro { font-family:var(--font-elegant); font-style:italic; font-size:1rem; color:var(--ivory-warm); max-width:660px; margin:0 auto 40px; line-height:2; }
.proof-closing { max-width:720px; margin:0 auto 16px; text-align:center; font-family:var(--font-elegant); font-size:1.05rem; font-style:italic; color:rgb(194,181,155); line-height:1.9; }

/* Carousel */
.tc-carousel-wrap { display:flex; align-items:center; gap:16px; max-width:1200px; margin:0 auto 32px; padding:0 8px; }
@media (max-width: 768px) {
  .tc-prev, .tc-next { display: none !important; }
  .tc-carousel-wrap { padding: 0 !important; gap: 0 !important; }
  .tc-viewport {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 16px 20px !important;
  }
  .tc-viewport::-webkit-scrollbar { display: none !important; }
  .tc-track {
    display: flex !important;
    gap: 16px !important;
    transform: none !important;
    transition: none !important;
    width: max-content !important;
  }
  .tc-card {
    flex: 0 0 calc(100vw - 40px) !important;
    width: calc(100vw - 40px) !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    box-sizing: border-box !important;
  }
}
.tc-viewport { flex:1; overflow:hidden; padding:16px 4px; }
.tc-track { display:flex; gap:28px; transition:transform 0.45s cubic-bezier(0.4,0,0.2,1); align-items:flex-start; }
.tc-card {
  flex:0 0 calc((100% - 56px) / 3);
  background:linear-gradient(160deg, rgba(8,46,34,0.97) 0%, rgba(4,24,18,1) 100%);
  border-radius:6px;
  padding:18px 18px 16px;
  box-shadow:
    0 0 0 2px #8B6010,
    0 0 0 3.5px #F5DC6A,
    0 0 0 4.5px #C8980A,
    0 0 0 5.5px rgba(212,175,55,0.3),
    0 8px 40px rgba(0,0,0,0.5),
    0 0 28px 6px rgba(212,175,55,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
  display:flex;
  flex-direction:column;
  gap:8px;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.tc-card:hover {
  transform:translateY(-4px);
  box-shadow:
    0 0 0 2px #9B7010,
    0 0 0 3.5px #FFE87A,
    0 0 0 4.5px #D4AF37,
    0 0 0 6px rgba(212,175,55,0.4),
    0 12px 60px rgba(0,0,0,0.6),
    0 0 40px 10px rgba(212,175,55,0.20),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.tc-quote { width:30px; height:auto; flex-shrink:0; }
.tc-heading { font-family:'Cormorant Garamond',serif; font-size:1.22rem; font-weight:700; color:rgb(212,175,55); line-height:1.3; margin:0; }
.tc-body { font-family:'Cormorant Garamond',serif; font-size:1.08rem; font-style:italic; color:rgb(194,181,155); line-height:1.85; margin:0; }
.tc-author { display:flex; align-items:center; gap:10px; padding-top:8px; border-top:1px solid rgba(212,175,55,0.15); }
.tc-avatar { width:38px; height:38px; flex-shrink:0; }
.tc-initial {
  width:38px; height:38px; border-radius:50%;
  background:linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(139,96,16,0.35) 100%);
  border:1.5px solid rgba(212,175,55,0.5);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:700;
  color:rgb(212,175,55);
  box-shadow:0 0 8px rgba(212,175,55,0.2);
}
.tc-name { font-family:'Cormorant Garamond',serif; font-size:1rem; font-weight:700; color:rgb(212,175,55); }
.tc-meta { font-size:0.68rem; letter-spacing:0.1em; color:rgba(212,175,55,0.55); text-transform:uppercase; margin-top:2px; }
.tc-arrow {
  background:transparent; border:1px solid rgba(212,175,55,0.4); color:rgb(212,175,55);
  width:44px; height:44px; border-radius:50%; font-size:1.2rem; cursor:pointer; flex-shrink:0;
  transition:background 0.2s, border-color 0.2s;
}
.tc-arrow:hover { background:rgba(212,175,55,0.1); border-color:rgba(212,175,55,0.7); }
.tc-arrow:disabled { opacity:0.25; cursor:default; }
.tc-dots { display:flex; justify-content:center; gap:8px; margin-bottom:40px; }
.tc-dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(212,175,55,0.2); border:1px solid rgba(212,175,55,0.4);
  cursor:pointer; transition:background 0.2s; padding:0;
}
.tc-dot.active { background:rgb(212,175,55); }

/* ============================================
   HOW
   ============================================ */
.how { background:var(--green-dark); }
.steps { max-width:740px; margin:56px auto 0; }
.step { display:grid; grid-template-columns:72px 1fr; gap:28px; padding:36px 0; border-bottom:1px solid rgba(197,160,40,.09); align-items:start; }
.step:last-child { border-bottom:none; }
.step-number { font-family:var(--font-display); font-size:3.2rem; font-weight:700; color:var(--gold-deep); opacity:.32; line-height:1; text-align:right; }
.step-title { font-family:var(--font-display); font-size:1rem; font-weight:600; color:var(--gold-light); margin-bottom:9px; letter-spacing:.02em; }
.step-body { font-family:var(--font-elegant); font-size:1rem; color:var(--ivory-mid); line-height:1.9; }

/* ============================================
   SCHEDULE
   ============================================ */
.schedule { background:linear-gradient(160deg,var(--green-core) 0%,var(--green-deep) 100%); }
.schedule-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin:46px 0; }
.schedule-stat { background:rgba(8,38,31,.8); border:1px solid rgba(197,160,40,.13); padding:36px 22px; text-align:center; }
.schedule-stat-icon { font-size:1.9rem; margin-bottom:14px; display:block; }
.schedule-stat-value { font-family:var(--font-display); font-size:1.3rem; font-weight:600; color:var(--gold-light); display:block; margin-bottom:5px; }
.schedule-stat-label { font-family:var(--font-display); font-size:.65rem; letter-spacing:.2em; text-transform:uppercase; color:var(--ivory-warm); }
.schedule-body { font-family:var(--font-elegant); font-style:italic; font-size:1.02rem; color:var(--ivory-mid); line-height:2; max-width:680px; margin:0 auto; text-align:center; }

/* ============================================
   FAQ
   ============================================ */
.faq { background:var(--green-dark); }
.faq-list { max-width:780px; margin:46px auto 0; }
.faq-item { border-bottom:1px solid rgba(197,160,40,.1); }
.faq-question { width:100%; background:none; border:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:22px 0; text-align:left; }
.faq-q-text { font-family:var(--font-display); font-size:1rem; font-weight:500; color:var(--ivory-bright); letter-spacing:.02em; line-height:1.5; }
.faq-icon { width:24px;height:24px;border:1px solid rgba(197,160,40,.38);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--gold-core);font-size:1rem;flex-shrink:0;transition:transform .3s ease,background .3s ease;line-height:1; }
.faq-item.open .faq-icon { transform:rotate(45deg); background:rgba(197,160,40,.13); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-answer-inner { font-family:var(--font-elegant); font-size:.98rem; color:var(--ivory-mid); line-height:1.9; padding:0 0 22px; }
.faq-item.open .faq-answer { max-height:500px; }

/* ============================================
   REGISTRATION
   ============================================ */
.registration { position:relative; overflow:hidden; padding:120px 40px; }
.registration-parallax {
  position:absolute; inset:-25% -5%;
  background-image:url('gifts-table.jpg');
  background-size:cover; background-position:center;
  will-change:transform; z-index:0;
}
.registration-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(2,20,16,.96) 0%,rgba(8,38,31,.93) 50%,rgba(2,20,16,.96) 100%);
  z-index:1;
}
.registration-inner { position:relative; z-index:2; max-width:700px; margin:0 auto; }

.form-header { text-align:center; margin-bottom:55px; }
.form-sub { font-family:var(--font-elegant); font-style:italic; font-size:.98rem; color:var(--ivory-warm); margin-top:10px; }

.form-section-label {
  font-family:var(--font-display);
  font-size:.62rem;
  letter-spacing:.5em;
  text-transform:uppercase;
  color:var(--gold-deep);
  margin:38px 0 18px;
  display:flex;
  align-items:center;
  gap:14px;
}
.form-section-label::before, .form-section-label::after {
  content:'';
  flex:1;
  height:1px;
  background:linear-gradient(to right,transparent,rgba(197,160,40,.28),transparent);
}

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-field { margin-bottom:18px; }

.form-field label {
  display:block;
  font-family:var(--font-display);
  font-size:.67rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold-core);
  margin-bottom:7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width:100%;
  background:rgba(8,38,31,.82);
  border:1px solid rgba(197,160,40,.18);
  border-radius:2px;
  padding:13px 17px;
  font-family:var(--font-elegant);
  font-size:1rem;
  color:var(--ivory-bright);
  outline:none;
  transition:border-color .3s ease, box-shadow .3s ease;
  -webkit-appearance:none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color:rgba(197,160,40,.55);
  box-shadow:0 0 0 3px rgba(197,160,40,.07);
}
.form-field select option { background:var(--green-dark); color:var(--ivory-bright); }

.form-field input.input-error,
.form-field select.input-error { border-color:rgba(220,80,80,.5); }

.form-phone-row { display:grid; grid-template-columns:130px 1fr; gap:10px; }

.radio-group { display:flex; flex-direction:column; gap:8px; }

.radio-option {
  display:flex;
  align-items:center;
  gap:12px;
  padding:11px 15px;
  background:rgba(8,38,31,.48);
  border:1px solid rgba(197,160,40,.1);
  cursor:pointer;
  transition:border-color .2s, background .2s, box-shadow .2s;
  user-select:none;
}
.radio-option:hover { border-color:rgba(197,160,40,.38); background:rgba(15,61,51,.6); }

.radio-check {
  width:18px; height:18px;
  border:1px solid rgba(197,160,40,.35);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:.6rem;
  color:var(--gold-light);
  flex-shrink:0;
  transition:background .2s, border-color .2s;
  opacity:0;
}

.radio-option.selected {
  border-color:rgba(197,160,40,.55);
  background:rgba(15,61,51,.85);
  box-shadow:0 0 0 3px rgba(197,160,40,.07);
}
.radio-option.selected .radio-check {
  opacity:1;
  background:rgba(197,160,40,.18);
  border-color:var(--gold-core);
}

/* Time slot grid */
.time-slots-container {
  display:none;
}
.time-slots-container.visible {
  display:block;
}

.time-slots-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(110px,1fr));
  gap:8px;
}

.time-slot-option {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 10px;
  background:rgba(8,38,31,.48);
  border:1px solid rgba(197,160,40,.1);
  cursor:pointer;
  text-align:center;
  font-family:var(--font-display);
  font-size:.72rem;
  letter-spacing:.1em;
  color:var(--ivory-warm);
  transition:border-color .2s, background .2s, box-shadow .2s;
  user-select:none;
}
.time-slot-option .radio-check { display:none; }
.time-slot-option:hover { border-color:rgba(197,160,40,.38); background:rgba(15,61,51,.6); }
.time-slot-option.selected {
  border-color:rgba(197,160,40,.55);
  background:rgba(15,61,51,.85);
  color:var(--gold-light);
  box-shadow:0 0 0 3px rgba(197,160,40,.07);
}

/* Gift code field */
.gift-code-field {
  display:none;
}
.gift-code-field.visible {
  display:block;
}

/* Field errors */
.field-error {
  font-family:var(--font-display);
  font-size:.62rem;
  letter-spacing:.15em;
  color:rgba(220,100,100,.9);
  margin-top:6px;
  display:none;
}
.field-error.visible { display:block; }

.form-field.field-error-active label { color:rgba(220,100,100,.8); }

.form-textarea {
  min-height:110px;
  resize:vertical;
}

.form-submit { margin-top:46px; text-align:center; }
.form-note {
  font-family:var(--font-elegant);
  font-style:italic;
  font-size:.82rem;
  color:var(--ivory-warm);
  margin-top:16px;
  line-height:1.8;
  opacity:.75;
}

/* ============================================
   CLOSING
   ============================================ */
.closing {
  background:linear-gradient(170deg,var(--green-deep) 0%,var(--green-dark) 100%);
  position:relative;
  overflow:hidden;
  padding:120px 40px;
  text-align:center;
}
.closing::before {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 65% 70% at 50% 50%,rgba(197,160,40,.04) 0%,transparent 70%);
}
.closing-inner { position:relative; z-index:1; max-width:820px; margin:0 auto; }
.closing-title {
  font-family:var(--font-display);
  font-size:clamp(2rem,5vw,3.8rem);
  font-weight:600;
  color:var(--gold-light);
  line-height:1.15;
  margin-bottom:30px;
  text-shadow:0 0 80px rgba(197,160,40,.2);
}
.closing-body { margin:40px 0; }
.closing-body p {
  font-family:var(--font-elegant);
  font-style:italic;
  font-size: clamp(1.15rem, 2vw, 1.25rem);
  color:var(--ivory-mid);
  line-height:2;
  margin-bottom:20px;
}
.closing-pivot {
  font-family:var(--font-display);
  font-size:clamp(1.2rem,3vw,1.9rem);
  font-weight:600;
  color:var(--gold-light);
  font-style:normal !important;
  letter-spacing:.04em;
  margin:30px 0 !important;
}
.closing-tagline {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin:44px 0;
  font-family:var(--font-display);
  font-size:.78rem;
  letter-spacing:.3em;
  color:var(--gold-core);
  text-transform:uppercase;
}
.closing-tagline-item { }
.closing-tagline-dot { width:4px;height:4px;background:var(--gold-core);border-radius:50%;display:inline-block; }

/* ============================================
   AYAH
   ============================================ */
.ayah {
  background:linear-gradient(135deg,var(--green-dark) 0%,var(--green-core) 50%,var(--green-dark) 100%);
  padding:100px 40px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.ayah::before {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 50% 60% at 50% 50%,rgba(197,160,40,.06) 0%,transparent 70%);
}
.ayah-inner { position:relative; z-index:1; max-width:780px; margin:0 auto; }
.ayah-arabic {
  font-family:'Scheherazade New','Amiri','Noto Naskh Arabic',serif;
  font-size:clamp(2rem,4.5vw,3rem);
  color:var(--gold-light);
  line-height:2.4;
  margin-bottom:28px;
  direction:rtl;
  text-shadow:none;
  letter-spacing:0.12em;
  word-spacing:0.3em;
}
.ayah-white {
  font-family:'Scheherazade New','Amiri',serif;
  color:rgb(230, 222, 205);
}
.ayah-gold-glow {
  font-family:'Scheherazade New','Amiri',serif;
  color:#F5DC6A;
  text-shadow:0 0 18px rgba(212,175,55,0.95),0 0 40px rgba(212,175,55,0.6),0 0 80px rgba(212,175,55,0.3);
}
.ayah-phrase-glow {
  color:#F5DC6A;
  text-shadow:0 0 14px rgba(212,175,55,0.95),0 0 35px rgba(212,175,55,0.55),0 0 65px rgba(212,175,55,0.28);
}
.ayah-ref-glow {
  color:#F5DC6A !important;
  text-shadow:0 0 14px rgba(212,175,55,0.95),0 0 35px rgba(212,175,55,0.55),0 0 65px rgba(212,175,55,0.28);
}
.ayah-word-gold {
  color:#F5DC6A;
  font-family:'Scheherazade New','Amiri',serif;
  font-size:1.25em;
  direction:rtl;
  display:inline-block;
  letter-spacing:0.1em;
  text-shadow:0 0 14px rgba(212,175,55,0.95),0 0 30px rgba(212,175,55,0.55),0 0 55px rgba(212,175,55,0.28);
}
.ayah-closing-glow {
  color:#F5DC6A !important;
  text-shadow:0 0 14px rgba(212,175,55,0.95),0 0 35px rgba(212,175,55,0.55),0 0 65px rgba(212,175,55,0.28);
}
.ayah-translation {
  font-family:var(--font-elegant);
  font-style:italic;
  font-size:clamp(1rem,2.5vw,1.35rem);
  color:var(--ivory-mid);
  line-height:2;
  margin-bottom:14px;
}
.ayah-reference {
  font-family:var(--font-display);
  font-size:.68rem;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--gold-core);
  margin-bottom:36px;
}
.ayah-body { margin-top:36px; }
.ayah-body p {
  font-family:var(--font-elegant);
  font-size:1.05rem;
  color:var(--ivory-mid);
  line-height:2;
  margin-bottom:20px;
}

/* ============================================
   SHARING
   ============================================ */
.sharing {
  background:linear-gradient(160deg,var(--green-core) 0%,var(--green-deep) 100%);
  padding:100px 40px;
  text-align:center;
}
.sharing-inner { max-width:680px; margin:0 auto; }
.sharing-body {
  font-family:var(--font-elegant);
  font-style:italic;
  font-size:1.05rem;
  color:var(--ivory-mid);
  line-height:2;
  margin-bottom:24px;
}
.sharing-close {
  display:block;
  font-family:var(--font-display);
  font-size:.78rem;
  letter-spacing:.15em;
  color:var(--gold-core);
  text-transform:uppercase;
  margin-bottom:38px;
}

.share-buttons { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }
.btn-share {
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-family:var(--font-display);
  font-size:.72rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  padding:14px 30px;
  border:1px solid rgba(197,160,40,.35);
  background:rgba(8,38,31,.6);
  color:var(--gold-light);
  cursor:pointer;
  transition:background .2s, border-color .2s, transform .2s;
  border-radius:2px;
}
.btn-share:hover { background:rgba(15,61,51,.85); border-color:rgba(197,160,40,.6); transform:translateY(-2px); }
.btn-share-wa { border-color:rgba(37,211,102,.4); color:#25d366; }
.btn-share-wa:hover { background:rgba(37,211,102,.08); border-color:rgba(37,211,102,.7); }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.12s; }
.reveal-delay-2 { transition-delay:.24s; }
.reveal-delay-3 { transition-delay:.36s; }
.reveal-delay-4 { transition-delay:.48s; }

/* ============================================
   UTILITY
   ============================================ */
.gold { color:var(--gold-light); }

@keyframes fade-in {
  from { opacity:0; transform:translateY(6px); }
  to   { opacity:1; transform:none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:900px) {
  .offer-cards { grid-template-columns:1fr; }
}

@media (max-width:768px) {
  body { font-size:17px; }
  .section { padding:70px 24px; }
  .offer, .registration { padding:80px 24px; }
  .urgency { padding:70px 24px; }
  .closing { padding:80px 24px; }
  .ayah, .sharing { padding:70px 24px; }

  .hero-scroll-zone { height:400vh; }

  /* Act 1 mobile */
  #hero-act1 { padding-top: clamp(40px, 6vh, 80px); }
  .hero-title-act1 { font-size: clamp(2rem, 7vw, 3rem); white-space: normal; }

  /* Act 3 mobile — vertical stack */
  .act3-headline-wrap {
    top: 2% !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(14px) !important;
    white-space: normal !important;
    text-align: center !important;
    width: 94% !important;
  }
  .act3-headline {
    text-align: center !important;
    white-space: normal !important;
    line-height: 0.9 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  .act3-hl-line1 {
    font-size: clamp(1.3rem, 6vw, 1.9rem) !important;
    display: block !important;
    line-height: 0.95 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .act3-hl-line2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem) !important;
    display: block !important;
    line-height: 0.95 !important;
    margin: 0 !important;
    margin-top: -5px !important;
    padding: 0 !important;
  }
  .act3-sub--left {
    top: 14.17% !important;
    bottom: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(14px) !important;
    width: 94% !important;
    max-width: 94% !important;
    text-align: center !important;
    font-size: clamp(0.85rem, 3vw, 0.98rem) !important;
    padding: 8px 12px !important;
    box-sizing: border-box !important;
  }
  .act3-sub--right { display: none !important; }
  #act3-date {
    top: 54% !important;
    bottom: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(14px) !important;
    width: 94% !important;
    max-width: 94% !important;
    text-align: center !important;
    font-size: clamp(0.9rem, 3.2vw, 1rem) !important;
    padding: 7px 10px !important;
    box-sizing: border-box !important;
  }
  #act3-date br { display: none !important; }
  #act3-date .act3-date-inner { white-space: nowrap !important; display: inline !important; }
  .act3-cta-wrap {
    top: 72% !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(14px) !important;
  }
  .act3-btn { padding: 20px 60px !important; font-size: 0.82rem !important; letter-spacing: 0.2em !important; }
  .act3-tagline {
    top: auto !important;
    bottom: 9.76% !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    font-size: 0.65rem !important;
    gap: 6px !important;
    line-height: 1.8 !important;
  }

  .form-row { grid-template-columns:1fr; }
  .schedule-stats { grid-template-columns:1fr; gap:2px; }

  .time-slots-grid { grid-template-columns:repeat(auto-fill,minmax(90px,1fr)); }

  .closing-tagline { gap:14px; }
  .share-buttons { flex-direction:column; align-items:center; }

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

  .step { grid-template-columns:50px 1fr; gap:18px; }

  /* Loading screen — single centered line */
  .intro-text {
    letter-spacing: 0.18em !important;
    font-size: 0.72rem !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
}

@media (max-width:480px) {
  .section { padding:60px 18px; }
  .offer { padding:70px 18px; }
  .registration { padding:70px 18px; }
  #sticky-nav { padding:10px 18px; }
  .btn-primary { padding:16px 36px; font-size:.75rem; }
}

@media (min-width:900px) {
  .nav-name { display:block; }
}

/* ---- QURANIC AYAH ---- */
.quran-ayah {
  display: block;
  font-family: 'Amiri', 'Traditional Arabic', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #D4AF37;
  text-align: center;
  direction: rtl;
  line-height: 2.2;
  letter-spacing: 0.02em;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(212,175,55,0.25);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  margin: 0.5rem 0;
}

/* ============================================
   HERO-MATCHED BUTTON OVERRIDES — all CTAs
   ============================================ */
.btn-primary,
.btn-primary--nav {
  font-family: var(--font-display) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  text-decoration: none;
  color: var(--green-dark) !important;
  background: linear-gradient(135deg, #F2E1A1 0%, #E3C664 25%, #C5A028 55%, #E3C664 78%, #F2E1A1 100%) !important;
  background-size: 200% auto !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer;
  transition: background-position .4s ease, transform .2s ease, box-shadow .3s ease !important;
  box-shadow: 0 4px 24px rgba(197,160,40,.45), 0 0 0 1px rgba(197,160,40,.3) !important;
}
.btn-primary:hover,
.btn-primary--nav:hover:hover {
  background-position: right center !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(197,160,40,.6), 0 0 0 1px rgba(197,160,40,.4) !important;
  color: var(--green-dark) !important;
}

/* ---- FORM SUBMIT BUTTON FIX ---- */
.form-submit-wrap { text-align: center; margin-top: 46px; }
.form-submit,
input[type="submit"].form-submit,
button.form-submit {
  width: auto !important;
  display: inline-block !important;
  padding: 18px 64px !important;
}

/* ---- GIFT OF ARABIC GLOW (high specificity) ---- */
#offer-panel-act2 .offer-panel-inner {
  box-shadow: 0 0 50px rgba(212,175,55,0.5), 0 0 100px rgba(212,175,55,0.2) !important;
  border-color: rgba(212,175,55,0.6) !important;
  border-top-color: rgba(212,175,55,0.95) !important;
}

/* ---- FORM SECTION RESERVE BUTTON ---- */
.form-submit { text-align: center !important; }
.form-submit .btn-primary button {
  display: inline-block !important;
  width: auto !important;
  font-family: var(--font-display) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  color: var(--green-dark) !important;
  background: linear-gradient(135deg, #F2E1A1 0%, #E3C664 25%, #C5A028 55%, #E3C664 78%, #F2E1A1 100%) !important;
  background-size: 200% auto !important;
  padding: 18px 52px !important;
  border: none !important;
  border-radius: 2px !important;
  box-shadow: 0 4px 30px rgba(197,160,40,.5), 0 0 0 1px rgba(197,160,40,.35) !important;
  transition: background-position .4s ease, transform .2s ease, box-shadow .3s ease !important;
}
.form-submit .btn-primary:hover button:hover {
  background-position: right center !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(197,160,40,.6), 0 0 0 1px rgba(197,160,40,.4) !important;
}

/* ========================================================
   WHY GRID — 6 cards, SVG icons, no numbers
   ======================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2rem;
  margin-top: 3rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-top: 2px solid rgba(212,175,55,0.45);
  border-radius: 4px;
  padding: 2rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.why-number { display: none; }
.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-bottom: 0.3rem;
}
.why-icon svg { width: 100%; height: 100%; }
.why-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.35;
  font-variant: small-caps;
  letter-spacing: 0.03em;
}
.why-card-body {
  font-size: 0.97rem;
  color: rgba(245,240,232,0.88);
  line-height: 1.75;
}

/* ========================================================
   HERO BACKDROP — dark panel behind floating text
   ======================================================== */
.act3-backdrop {
  background: rgba(6, 20, 12, 0.62) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  border-radius: 6px !important;
  padding: 0.7em 1.1em !important;
  border: 1px solid rgba(212,175,55,0.15) !important;
}

/* ========================================================
   OFFER ACT1 — label glow, headline small white,
   offer details bold+glow
   ======================================================== */
.offer-label-glow {
  font-size: 0.82rem !important;
  letter-spacing: 0.28em !important;
  color: #F2E1A1 !important;
  text-shadow:
    0 0 12px rgba(212,175,55,0.9),
    0 0 28px rgba(212,175,55,0.5),
    0 0 50px rgba(212,175,55,0.25) !important;
  font-weight: 700 !important;
}
.offer-headline-small-white {
  font-size: 1.1rem !important;
  color: rgba(245,240,232,0.82) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin-bottom: 0.8rem !important;
}
.offer-details-glow .offer-detail-title {
  text-shadow:
    0 0 10px rgba(212,175,55,0.8),
    0 0 22px rgba(212,175,55,0.4) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}
.offer-details-glow li {
  font-size: 0.95rem !important;
  margin-bottom: 0.55rem !important;
  color: rgba(245,240,232,0.92) !important;
}

/* ========================================================
   SCHEDULE SECTION — SVG icons, bigger text
   ======================================================== */
.schedule-stat-icon {
  width: 80px !important;
  height: 80px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 18px !important;
  font-size: 0 !important;
  overflow: visible !important;
}
.schedule-stat-icon svg { width: 72px !important; height: 72px !important; display: block; overflow: visible; }
.schedule-stat-value {
  font-size: 1.45rem !important;
}
.schedule-stat-label {
  font-size: 0.8rem !important;
  letter-spacing: 0.16em !important;
}
.schedule-body {
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
}

/* ========================================================
   FORM — brighter text colours
   ======================================================== */
.form-field input,
.form-field select,
.form-field textarea,
.eid-form input[type="text"],
.eid-form input[type="email"],
.eid-form input[type="tel"],
.eid-form select {
  color: rgba(245,240,232,0.95) !important;
  font-size: 1rem !important;
}
.eid-form input::placeholder,
.eid-form select::placeholder {
  color: rgba(245,240,232,0.5) !important;
}
.form-field label,
.eid-form label {
  color: rgba(245,240,232,0.9) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.18em !important;
}
.program-option {
  color: rgba(245,240,232,0.9) !important;
  font-size: 1rem !important;
}

/* ========================================================
   FORM SUCCESS — confirmation + sharing
   ======================================================== */
.success-inner {
  text-align: center;
  padding: 2rem 1rem 3rem;
  max-width: 640px;
  margin: 0 auto;
}
.success-checkmark {
  margin-bottom: 1.5rem;
}
.success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  font-variant: small-caps;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.success-body {
  font-size: 1rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}
.success-share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.success-share-divider { display: none; }
.success-share-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.success-share-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ivory);
  font-variant: small-caps;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}
.success-share-body {
  font-size: 0.97rem;
  color: rgba(245,240,232,0.82);
  line-height: 1.8;
  margin-bottom: 0.6rem;
  text-align: left;
}
.success-share-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
}
.share-btn-wa {
  background: linear-gradient(135deg, #F2E1A1 0%, #E3C664 25%, #C5A028 55%, #E3C664 78%, #F2E1A1 100%);
  color: #0d3d26;
}
.share-btn-copy {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.5) !important;
  color: var(--gold-light);
}
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* ========================================================
   GOA PANEL GLOW — final pseudo-element approach
   ======================================================== */
#offer-panel-act2 .offer-panel-inner {
  position: relative;
  border: 1px solid rgba(212,175,55,0.55) !important;
  border-top: 2px solid #D4AF37 !important;
}
#offer-panel-act2 .offer-panel-inner::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: transparent;
  box-shadow:
    0 0 18px 4px rgba(212,175,55,0.65),
    0 0 40px 10px rgba(212,175,55,0.3),
    0 0 80px 20px rgba(212,175,55,0.12);
  z-index: -1;
  pointer-events: none;
}

/* ============================================================
   BATCH UPDATE — testimonials, why-grid, offer panels, hero
   ============================================================ */

/* --- WHY GRID — responsive breakpoints only --- */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* --- OFFER PANELS — label & title styling --- */
.offer-label-glow {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.65rem, 0.9vw, 0.78rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #F5DC6A 0%, #D4AF37 50%, #A8832A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
}
.offer-headline-small-white,
.offer-title-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  margin-bottom: 12px;
  font-style: italic;
}
.offer-details-glow li { margin-bottom: 6px; }
.offer-detail-title {
  font-weight: 700;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #F0D060;
  text-shadow: 0 0 8px rgba(212,175,55,0.6), 0 0 16px rgba(212,175,55,0.3);
}
.offer-detail-sub {
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  color: #E8DEC8;
}

/* --- HERO ACT3 OVERLAY BACKDROP PANELS --- */
.act3-date-wrap,
#act3-date {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border: none;
  color: rgb(212,175,55);
}
.act3-sub,
#act3-subtitle {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border: none;
  color: rgb(212,175,55);
}

/* Inner spans — the visible panel */
.act3-date-inner,
.act3-sub-inner {
  display: inline-block;
  background: rgba(6,20,12,0.55);
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.4),
    0 0 18px 6px rgba(212,175,55,0.30),
    0 0 40px 10px rgba(212,175,55,0.14);
  border-radius: 4px;
  padding: 10px 16px;
  color: rgb(212,175,55);
}

/* --- SCROLL HINT — centre under logo --- */
.hero-scroll-hint,
[class*="scroll-hint"],
.scroll-label {
  left: 50% !important;
  transform: translateX(-50%) !important;
  text-align: center;
}

/* --- GLOBAL FONT SIZE & BRIGHTNESS BOOST --- */
.section-title { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.section-body, .empathy-body, p.offer-body { 
  font-size: clamp(1rem, 1.3vw, 1.15rem); 
  color: #EDE5D0;
  line-height: 1.9;
}
.form-label, .form-group label {
  color: #D4AF37 !important;
  font-size: 0.72rem !important;
  letter-spacing: 2.5px !important;
}
input, select, textarea {
  color: #EDE5D0 !important;
  font-size: 1rem !important;
}
input::placeholder, textarea::placeholder {
  color: rgba(220,208,185,0.55) !important;
}

/* === GOA PANEL GLOW — pseudo-element approach === */
#offer-panel-act2 .offer-panel-inner {
  position: relative;
  border: 1px solid rgba(212,175,55,0.55) !important;
  border-top: 2px solid #D4AF37 !important;
  box-shadow: none !important;
}
#offer-panel-act2 .offer-panel-inner::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: transparent;
  box-shadow:
    0 0 18px 4px rgba(212,175,55,0.7),
    0 0 40px 10px rgba(212,175,55,0.35),
    0 0 80px 20px rgba(212,175,55,0.15);
  z-index: -1;
  pointer-events: none;
}

/* ---- OFFER PANEL HIERARCHY ---- */
.offer-panel-sublabel {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  margin-bottom: 14px;
  font-weight: 400;
}
.offer-panel-title-gold {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #D4AF37;
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow:
    0 0 20px rgba(212,175,55,0.8),
    0 0 40px rgba(212,175,55,0.4),
    0 0 60px rgba(212,175,55,0.2);
}

/* ============================================
   OFFER SECTION — NEW 3-ACT PARALLAX
   ============================================ */

/* Hide old panels */
.offer-panel,
.offer-panel-inner,
.offer-panel-act1,
.offer-panel-act2 {
  display: none !important;
}

/* Intro overlay */
.offer-intro-overlay {
  position: absolute;
  top: 84px;
  left: 0; right: 0;
  padding: 24px 40px 0;
  text-align: center;
  pointer-events: none;
  z-index: 20;
}
.offer-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: inherit;
  text-shadow: none;
  margin: 0 0 14px;
  line-height: 1.2;
}
.offer-intro-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(245,240,232,0.82);
  line-height: 1.85;
  font-style: italic;
  max-width: 680px;
  margin: 0 auto;
}

/* Cards */
.onew-card {
  position: absolute;
  top: 320px;
  width: 420px;
  max-width: 42%;
  border-radius: 6px;
  padding: 32px 28px 28px;
  background: linear-gradient(160deg, #0e3d22 0%, #072615 100%);
  box-shadow:
    0 0 0 2px #8B6010,
    0 0 0 3.5px #F5DC6A,
    0 0 0 4.5px #C8980A,
    0 0 0 5.5px rgba(212,175,55,0.25),
    0 10px 50px rgba(0,0,0,0.7);
  opacity: 0 !important;
  pointer-events: none;
  z-index: 5;
  will-change: transform, opacity;
}
.onew-card.visible {
  opacity: unset !important;
}
.onew-card.visible { pointer-events: auto; }

/* Card 1: right side */
#onew-c1 {
  left: 48%;
}

/* Card 2: left side, featured */
#onew-c2 {
  left: 18%;
  box-shadow:
    0 0 0 2px #9B7010,
    0 0 0 3.5px #FFE87A,
    0 0 0 4.5px #D4AF37,
    0 0 0 6px rgba(212,175,55,0.4),
    0 0 40px 8px rgba(212,175,55,0.45),
    0 0 80px 16px rgba(212,175,55,0.25),
    0 0 140px 24px rgba(212,175,55,0.12),
    0 10px 60px rgba(0,0,0,0.7);
}

.onew-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F5DC6A 0%, #D4AF37 50%, #C8980A 100%);
  color: #0a2818;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(212,175,55,0.7);
}
.onew-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700; color: #F5DC6A;
  text-shadow: 0 0 20px rgba(212,175,55,0.6), 0 0 40px rgba(212,175,55,0.25);
  margin-bottom: 5px; line-height: 1.2;
}
.onew-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem; color: rgba(245,240,232,0.85);
  letter-spacing: 0.03em;
  margin: 0 0 10px;
}
.onew-div {
  width: 36px; height: 1.5px;
  background: linear-gradient(90deg, #D4AF37, rgba(212,175,55,0.2));
  margin-bottom: 14px;
}
.onew-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem; font-style: italic;
  color: rgba(245,240,232,0.78);
  line-height: 1.7; margin-bottom: 14px;
}
.onew-points {
  list-style: none; padding: 0; margin: 0 0 20px;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 4px; overflow: hidden;
}
.onew-points li {
  padding: 10px 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem; color: #F5F0E8; line-height: 1.5;
  border-bottom: 1px solid rgba(212,175,55,0.12);
  display: flex; align-items: flex-start; gap: 9px;
  background: rgba(212,175,55,0.04);
}
.onew-points li:last-child { border-bottom: none; }
.onew-points li::before {
  content: '\2736'; color: #D4AF37; font-size: 0.52rem;
  margin-top: 3px; flex-shrink: 0;
  text-shadow: 0 0 8px rgba(212,175,55,0.8);
}
.onew-points strong { color: #F5DC6A; font-weight: 700; }
.onew-btn {
  display: block; width: 100%; padding: 13px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; color: #0a2818;
  background: linear-gradient(135deg, #F2E1A1 0%, #E3C664 25%, #C5A028 55%, #E3C664 78%, #F2E1A1 100%);
  background-size: 200% auto;
  border-radius: 3px;
  transition: background-position 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(212,175,55,0.35);
}
.onew-btn:hover {
  background-position: right center;
  box-shadow: 0 6px 28px rgba(212,175,55,0.55);
}


/* =====================================================
   MOBILE OFFER CARDS — floating scroll-driven cards
   ===================================================== */
@media (max-width: 768px) {
  #onew-c1, #onew-c2 { display: none !important; }

  #mc-eid {
    position: fixed;
    bottom: 24px;
    left: 50%;
    width: 88%;
    max-width: 360px;
    transform: translateX(calc(-50% + 120vw));
    z-index: 9999;
    background: linear-gradient(160deg, rgba(10,45,24,0.88) 0%, rgba(4,22,12,0.92) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    border: none !important;
    outline: none !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.55);
    padding: 18px 18px 22px;
    max-height: 76vh;
    overflow-y: auto;
    pointer-events: none;
    will-change: transform;
  }
  #mc-eid.mc-active { pointer-events: auto; }
  #mc-eid::before {
    content: '';
    display: block;
    width: 36px; height: 3px;
    background: rgba(212,175,55,0.3);
    border-radius: 2px;
    margin: 0 auto 14px;
  }
  #mc-eid .onew-title { font-size: 1.3rem !important; line-height: 1.15 !important; margin-bottom: 2px !important; }
  #mc-eid .onew-sub   { font-size: 0.78rem !important; margin-bottom: 12px !important; opacity: 0.75; }
  #mc-eid .onew-div   { margin-bottom: 12px !important; }
  #mc-eid .onew-points { list-style: none !important; padding: 0 !important; margin-bottom: 18px !important; }
  #mc-eid .onew-points li { font-size: 0.78rem !important; padding: 7px 0 !important; border-bottom: 1px solid rgba(212,175,55,0.1) !important; }
  #mc-eid .onew-btn { display: block !important; width: 100% !important; text-align: center !important; box-sizing: border-box !important; margin-top: 4px !important; }

  @keyframes goldPulse {
    0%   { box-shadow: 0 0 14px 5px rgba(212,175,55,0.45), 0 0 35px 12px rgba(212,175,55,0.2), 0 0 70px 25px rgba(180,130,10,0.1); }
    50%  { box-shadow: 0 0 22px 8px rgba(255,210,60,0.7),  0 0 55px 20px rgba(212,175,55,0.32), 0 0 110px 45px rgba(180,130,10,0.16); }
    100% { box-shadow: 0 0 14px 5px rgba(212,175,55,0.45), 0 0 35px 12px rgba(212,175,55,0.2), 0 0 70px 25px rgba(180,130,10,0.1); }
  }

  #mc-gift {
    position: fixed;
    bottom: 24px;
    left: 50%;
    width: 88%;
    max-width: 360px;
    transform: translateX(calc(-50% - 120vw));
    z-index: 9999;
    background: linear-gradient(160deg, rgba(10,45,24,0.88) 0%, rgba(4,22,12,0.92) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    border: none !important;
    outline: none !important;
    padding: 18px 18px 22px;
    max-height: 76vh;
    overflow-y: auto;
    pointer-events: none;
    will-change: transform;
    animation: goldPulse 2.2s ease-in-out infinite;
  }
  #mc-gift.mc-active { pointer-events: auto; }
  #mc-gift::before {
    content: '';
    display: block;
    width: 36px; height: 3px;
    background: rgba(212,175,55,0.3);
    border-radius: 2px;
    margin: 0 auto 14px;
  }
  #mc-gift .onew-tag   { display: inline-block !important; position: relative !important; top: auto !important; margin-bottom: 10px !important; font-size: 0.68rem !important; letter-spacing: 0.14em !important; padding: 4px 12px !important; }
  #mc-gift .onew-title { font-size: 1.3rem !important; line-height: 1.15 !important; margin-bottom: 2px !important; }
  #mc-gift .onew-sub   { font-size: 0.78rem !important; margin-bottom: 12px !important; opacity: 0.75; }
  #mc-gift .onew-div   { margin-bottom: 12px !important; }
  #mc-gift .onew-desc  { font-size: 0.8rem !important; line-height: 1.55 !important; margin-bottom: 14px !important; font-style: italic; }
  #mc-gift .onew-points { list-style: none !important; padding: 0 !important; margin-bottom: 18px !important; }
  #mc-gift .onew-points li { font-size: 0.78rem !important; padding: 7px 0 !important; border-bottom: 1px solid rgba(212,175,55,0.1) !important; }
  #mc-gift .onew-btn { display: block !important; width: 100% !important; text-align: center !important; box-sizing: border-box !important; margin-top: 4px !important; }

  .gp {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    background: radial-gradient(circle, rgba(255,242,160,1) 0%, rgba(212,175,55,0.55) 50%, transparent 100%);
    will-change: transform, opacity;
  }
}

/* ── MOBILE TESTIMONIAL SWIPE HINT ── */
@media (max-width: 768px) {
  @keyframes swipeNudge {
    0%   { transform: translateX(0px);  opacity: 0; }
    15%  { opacity: 1; }
    50%  { transform: translateX(12px); opacity: 1; }
    75%  { transform: translateX(4px);  opacity: 0.7; }
    100% { transform: translateX(0px);  opacity: 0; }
  }
  @keyframes tcHintFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  #tc-swipe-hint {
    position: absolute;
    bottom: 14px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
    animation: tcHintFadeIn 0.6s ease forwards;
    z-index: 10;
  }
  #tc-swipe-hint .hint-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(212,175,55,0.7);
  }
  #tc-swipe-hint .hint-arrow {
    display: flex;
    align-items: center;
    animation: swipeNudge 1.8s ease-in-out infinite;
  }
  #tc-swipe-hint .hint-arrow svg {
    width: 22px;
    height: 22px;
  }
}

/* ============================================
   TIME SELECTOR WIDGET (tsw)
   Replaces static brothers/sisters slot grids.
   Students pick timezone first; all times
   shown in their local schedule automatically.
   ============================================ */

.tsw-wrap {
  margin-bottom: 0;
}

/* Step containers */
.tsw-step {
  margin-bottom: 0;
}
.tsw-step--slots {
  margin-top: 4px;
}

/* Timezone row */
.tsw-tz-row {
  position: relative;
}
.tsw-tz-row select {
  width: 100%;
  padding: 12px 44px 12px 14px;
  background: rgba(7,22,14,0.97);
  border: 1px solid rgba(197,160,40,0.35);
  border-top: 2px solid var(--gold-core, #D4AF37);
  color: var(--ivory-warm, #F5F0E8);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.83rem;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s;
}
.tsw-tz-row select:focus {
  border-color: var(--gold-light, #F5DC6A);
}
.tsw-tz-row select option,
.tsw-tz-row select optgroup {
  background: #071510;
  color: var(--ivory-warm, #F5F0E8);
}
.tsw-chevron {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gold-core, #D4AF37);
  opacity: 0.6;
}

/* Live clock strip */
.tsw-clock {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: rgba(212,175,55,0.04);
  border-left: 2px solid var(--gold-core, #D4AF37);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}
.tsw-clock.open { max-height: 48px; opacity: 1; padding: 10px 14px; }

.tsw-clock-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-core, #D4AF37); flex-shrink: 0;
  animation: tswBlink 2.2s ease-in-out infinite;
}
@keyframes tswBlink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.35; transform:scale(0.65); }
}
.tsw-clock-lbl {
  font-size: 0.53rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.48);
  white-space: nowrap;
  flex-shrink: 0;
}
.tsw-clock-val {
  font-family: var(--font-elegant, 'Cormorant Garamond', serif);
  font-size: 0.98rem;
  color: var(--gold-light, #F5DC6A);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Slot grid */
.tsw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 9px;
  margin-top: 4px;
}

.tsw-placeholder {
  grid-column: 1 / -1;
  padding: 28px 20px;
  border: 1px dashed rgba(197,160,40,0.18);
  text-align: center;
  font-size: 0.67rem;
  color: rgba(245,240,232,0.25);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* Slot card */
.tsw-card {
  position: relative;
  background: rgba(7,22,14,0.97);
  border: 1px solid rgba(197,160,40,0.15);
  padding: 15px 11px 13px;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  outline: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  overflow: hidden;
}
.tsw-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(197,160,40,0.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.2s;
}
.tsw-card:hover {
  border-color: rgba(197,160,40,0.4);
  background: rgba(197,160,40,0.04);
  transform: translateY(-1px);
}
.tsw-card:hover::after { opacity: 1; }
.tsw-card.sel {
  border-color: var(--gold-core, #D4AF37);
  border-top-width: 2px;
  background: rgba(197,160,40,0.08);
}
.tsw-card.sel::after { opacity: 1; }

.tsw-card-time {
  display: block;
  font-family: var(--font-elegant, 'Cormorant Garamond', serif);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 700;
  color: var(--ivory-warm, #F5F0E8);
  line-height: 1.05;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.tsw-card.sel .tsw-card-time { color: var(--gold-light, #F5DC6A); }

.tsw-card-days {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  color: rgba(245,240,232,0.58);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.tsw-card.sel .tsw-card-days { color: rgba(245,220,106,0.75); }

.tsw-card-shift {
  display: inline-block;
  font-size: 0.47rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border: 1px solid rgba(197,160,40,0.28);
  color: var(--gold-core, #D4AF37);
  background: rgba(197,160,40,0.07);
  margin-bottom: 6px;
}

.tsw-card-ny {
  display: block;
  font-size: 0.54rem;
  color: rgba(197,160,40,0.34);
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(197,160,40,0.1);
  padding-top: 6px;
  transition: color 0.2s;
}
.tsw-card.sel .tsw-card-ny { color: rgba(197,160,40,0.52); }

.tsw-card-chk {
  position: absolute; top: 7px; right: 7px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--gold-core, #D4AF37);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.175,0.885,0.32,1.275);
}
.tsw-card.sel .tsw-card-chk { opacity: 1; transform: scale(1); }

/* Confirm panel */
.tsw-confirm {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.6s ease, opacity 0.5s ease, margin 0.4s ease;
}
.tsw-confirm.open {
  max-height: 600px;
  opacity: 1;
  margin-top: 24px;
}

.tsw-cfm-box {
  background: rgba(7,22,14,0.98);
  border: 1px solid rgba(197,160,40,0.5);
  border-top: 3px solid var(--gold-core, #D4AF37);
  padding: 24px 22px 22px;
}

.tsw-cfm-eye {
  font-size: 0.52rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(197,160,40,0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tsw-cfm-eye::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(197,160,40,0.25);
}

.tsw-cfm-days {
  font-family: var(--font-elegant, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold-light, #F5DC6A);
  line-height: 1;
  margin-bottom: 3px;
}
.tsw-cfm-time {
  font-family: var(--font-elegant, 'Cormorant Garamond', serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--ivory-warm, #F5F0E8);
  line-height: 1.1;
  margin-bottom: 6px;
}
.tsw-cfm-region {
  font-family: var(--font-elegant, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--gold-core, #D4AF37);
  margin-bottom: 14px;
}
.tsw-cfm-note {
  font-size: 0.64rem;
  color: rgba(245,240,232,0.38);
  line-height: 1.65;
  letter-spacing: 0.02em;
  padding: 9px 12px;
  background: rgba(197,160,40,0.04);
  border-left: 2px solid rgba(197,160,40,0.2);
  margin-bottom: 18px;
}
.tsw-cfm-note strong { color: rgba(197,160,40,0.65); font-weight: 500; }

.tsw-cfm-btn {
  display: block; width: 100%;
  padding: 13px 20px;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-align: center;
  color: #0a3020;
  background: linear-gradient(120deg, #F2E1A1 0%, #E3C664 25%, #C5A028 55%, #E3C664 78%, #F2E1A1 100%);
  background-size: 220% auto;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(197,160,40,0.28);
  transition: background-position 0.5s ease, transform 0.15s, box-shadow 0.2s;
}
.tsw-cfm-btn:hover {
  background-position: right center;
  transform: translateY(-1px);
  box-shadow: 0 7px 36px rgba(197,160,40,0.44);
}
.tsw-cfm-btn:active { transform: translateY(0); }

/* Confirmed success state */
.tsw-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(197,160,40,0.06);
  border-left: 2px solid var(--gold-core, #D4AF37);
  font-family: var(--font-elegant, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-light, #F5DC6A);
  line-height: 1.6;
}
.tsw-success.on { display: flex; }

/* ============================================
   MULTI-STEP REGISTRATION WIZARD (dark theme)
   ============================================ */
.reg-progress { display:flex; align-items:center; justify-content:center; gap:0; padding:1.5rem 1.5rem 0; max-width:480px; margin:0 auto; }
.reg-ps { width:32px; height:32px; border-radius:50%; background:rgba(197,160,40,0.15); display:flex; align-items:center; justify-content:center; font-family:'Montserrat',sans-serif; font-size:0.75rem; font-weight:600; color:rgba(245,240,232,0.35); transition:all 0.3s; flex-shrink:0; }
.reg-ps.active { background:var(--gold-core,#D4AF37); color:#0d3d26; }
.reg-ps.done { background:rgba(197,160,40,0.5); color:#0d3d26; }
.reg-pl { flex:1; height:2px; background:rgba(197,160,40,0.15); transition:background 0.3s; }
.reg-pl.done { background:rgba(197,160,40,0.5); }

.reg-form-wrap { max-width:580px; margin:0 auto; padding:1.5rem 0 0; }
.reg-step { display:none; }
.reg-step.active { display:block; animation:regFadeUp 0.35s ease both; }
@keyframes regFadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

.reg-step-title { font-family:'Cormorant Garamond',serif; font-size:1.75rem; font-weight:600; color:var(--gold-light,#F5DC6A); margin-bottom:0.4rem; }
.reg-step-sub { font-size:0.95rem; color:rgba(245,240,232,0.65); margin-bottom:1.5rem; line-height:1.7; }
.reg-step-sub strong { color:var(--gold-core,#D4AF37); }

/* Type cards */
.reg-type-cards { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:1rem; }
.reg-type-card { background:rgba(7,22,14,0.95); border:2px solid rgba(197,160,40,0.2); padding:2rem 1.25rem; text-align:center; cursor:pointer; transition:all 0.25s; }
.reg-type-card:hover { border-color:rgba(197,160,40,0.45); transform:translateY(-2px); }
.reg-type-card.selected { border-color:var(--gold-core,#D4AF37); background:rgba(197,160,40,0.08); }
.reg-type-icon { margin-bottom:0.75rem; display:flex; justify-content:center; }
.reg-type-icon svg { width:56px; height:56px; }
.reg-type-title { font-family:'Cormorant Garamond',serif; font-size:1.4rem; font-weight:600; color:var(--gold-light,#F5DC6A); margin-bottom:0.3rem; }
.reg-type-desc { font-size:0.88rem; color:rgba(245,240,232,0.5); }

/* Fields */
.reg-field { margin-bottom:1.15rem; }
.reg-field label { display:block; font-family:'Montserrat',sans-serif; font-size:0.78rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase; color:rgba(245,240,232,0.75); margin-bottom:0.4rem; }
.reg-field input, .reg-field select { width:100%; padding:0.75rem 0.9rem; border:1px solid rgba(197,160,40,0.25); background:rgba(7,22,14,0.97); font-family:'Source Sans 3','Cormorant Garamond',serif; font-size:1rem; color:rgba(245,240,232,0.95); transition:border-color 0.2s; outline:none; }
.reg-field input:focus, .reg-field select:focus { border-color:var(--gold-light,#F5DC6A); }
.reg-field input.err, .reg-field select.err { border-color:#c53030; }
.reg-field select option { background:#071510; color:rgba(245,240,232,0.9); }
.reg-field input::placeholder { color:rgba(245,240,232,0.35); }
.reg-err { font-size:0.82rem; color:#e53e3e; margin-top:0.25rem; display:none; }
.reg-field-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.reg-field-section { font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:600; color:var(--gold-core,#D4AF37); margin:1.5rem 0 0.75rem; padding-bottom:0.4rem; border-bottom:1px solid rgba(197,160,40,0.2); }

/* "Select all that apply" helper */
.reg-helper { font-family:'Montserrat',sans-serif; font-size:0.78rem; font-weight:700; letter-spacing:0.08em; color:rgba(212,175,55,0.7); margin-bottom:0.6rem; }

/* Phone */
.reg-phone-wrap { display:flex; gap:0.5rem; }
.reg-phone-code { width:130px!important; min-width:130px; max-width:130px; padding:0.75rem 0.5rem; border:1px solid rgba(197,160,40,0.25); background:rgba(7,22,14,0.97); font-size:0.95rem; color:rgba(245,240,232,0.95); outline:none; }
.reg-phone-code:focus { border-color:var(--gold-light,#F5DC6A); }
.reg-phone-code.err { border-color:#c53030; }
.reg-phone-num { flex:1; min-width:0; padding:0.75rem 0.9rem; border:1px solid rgba(197,160,40,0.25); background:rgba(7,22,14,0.97); font-size:1rem; color:rgba(245,240,232,0.95); outline:none; }
.reg-phone-num:focus { border-color:var(--gold-light,#F5DC6A); }
.reg-phone-num.err { border-color:#c53030; }
.reg-phone-num::placeholder { color:rgba(245,240,232,0.35); }
.reg-phone-hint { font-size:0.82rem; color:rgba(197,160,40,0.5); margin-top:0.25rem; }
.reg-phone-hint.err-active { color:#e53e3e; }

/* Gender / program toggles */
.reg-gender-opts { display:grid; grid-template-columns:1fr 1fr; gap:0.75rem; }
.reg-gender-opt { padding:0.75rem; border:2px solid rgba(197,160,40,0.2); text-align:center; cursor:pointer; font-family:'Montserrat',sans-serif; font-size:0.92rem; font-weight:500; color:rgba(245,240,232,0.6); transition:all 0.2s; background:rgba(7,22,14,0.95); }
.reg-gender-opt:hover { border-color:rgba(197,160,40,0.4); }
.reg-gender-opt.selected { border-color:var(--gold-core,#D4AF37); color:var(--gold-light,#F5DC6A); background:rgba(197,160,40,0.08); font-weight:600; }

.reg-program-opts { display:grid; grid-template-columns:1fr 1fr; gap:0.75rem; }
.reg-program-opt { padding:1rem 0.75rem; border:2px solid rgba(197,160,40,0.2); text-align:center; cursor:pointer; transition:all 0.2s; background:rgba(7,22,14,0.95); }
.reg-program-opt:hover { border-color:rgba(197,160,40,0.4); }
.reg-program-opt.selected { border-color:var(--gold-core,#D4AF37); background:rgba(197,160,40,0.08); }
.reg-prog-title { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:600; color:var(--gold-light,#F5DC6A); margin-bottom:0.2rem; }
.reg-prog-desc { font-size:0.82rem; color:rgba(245,240,232,0.5); }

/* Level */
.reg-level-field { animation:regFadeUp 0.35s ease both; }
.reg-level-opts { display:grid; gap:0.6rem; }
.reg-level-opt { padding:0.85rem 1.1rem; border:2px solid rgba(197,160,40,0.2); cursor:pointer; transition:all 0.2s; background:rgba(7,22,14,0.95); }
.reg-level-opt:hover { border-color:rgba(197,160,40,0.4); }
.reg-level-opt.selected { border-color:var(--gold-core,#D4AF37); background:rgba(197,160,40,0.08); }
.reg-level-title { font-weight:600; font-size:1rem; color:rgba(245,240,232,0.9); margin-bottom:0.15rem; }
.reg-level-desc { font-size:0.85rem; color:rgba(245,240,232,0.5); }

/* Availability */
.reg-avail-opts { display:grid; gap:0.6rem; margin-top:0.5rem; }
.reg-avail-opt { display:flex; align-items:center; gap:0.85rem; padding:1rem 1.15rem; border:2px solid rgba(197,160,40,0.2); cursor:pointer; transition:all 0.2s; background:rgba(7,22,14,0.95); }
.reg-avail-opt:hover { border-color:rgba(197,160,40,0.4); }
.reg-avail-opt.selected { border-color:var(--gold-core,#D4AF37); background:rgba(197,160,40,0.08); }
.reg-avail-check { width:22px; height:22px; border:2px solid rgba(197,160,40,0.3); border-radius:5px; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all 0.2s; }
.reg-avail-opt.selected .reg-avail-check { background:var(--gold-core,#D4AF37); border-color:var(--gold-core,#D4AF37); }
.reg-avail-opt.selected .reg-avail-check::after { content:'\2713'; color:#0d3d26; font-size:0.8rem; font-weight:700; }
.reg-avail-range { font-size:1rem; color:rgba(245,240,232,0.85); font-weight:600; }

/* Results grid */
.reg-results-grid { display:grid; gap:0.6rem; }
.reg-result-card { background:rgba(7,22,14,0.95); border:2px solid rgba(197,160,40,0.2); padding:1rem 1.1rem; cursor:pointer; transition:all 0.25s; display:flex; align-items:center; gap:0.85rem; }
.reg-result-card:hover { border-color:rgba(197,160,40,0.4); }
.reg-result-card.selected { border-color:var(--gold-core,#D4AF37); background:rgba(197,160,40,0.08); }
.reg-result-check { width:22px; height:22px; border:2px solid rgba(197,160,40,0.3); border-radius:5px; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all 0.2s; }
.reg-result-card.selected .reg-result-check { background:var(--gold-core,#D4AF37); border-color:var(--gold-core,#D4AF37); }
.reg-result-card.selected .reg-result-check::after { content:'\2713'; color:#0d3d26; font-size:0.85rem; font-weight:700; }
.reg-result-time { font-family:'Cormorant Garamond',serif; font-size:1.35rem; font-weight:700; color:var(--gold-light,#F5DC6A); }
.reg-result-meta { font-size:0.85rem; color:rgba(245,240,232,0.45); }
.reg-no-results { text-align:center; padding:2.5rem 1rem; color:rgba(245,240,232,0.4); font-size:1rem; }

/* Buttons */
.reg-btn-row { display:flex; gap:0.75rem; margin-top:1.75rem; }
.reg-btn { flex:1; padding:0.85rem 1.25rem; border:none; font-family:'Montserrat',sans-serif; font-size:0.88rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; cursor:pointer; transition:all 0.25s; text-align:center; }
.reg-btn-primary { background:linear-gradient(135deg,#F2E1A1 0%,#E3C664 25%,#C5A028 55%,#E3C664 78%,#F2E1A1 100%); background-size:200% auto; color:#0d3d26; box-shadow:0 4px 24px rgba(197,160,40,0.35); }
.reg-btn-primary:hover { background-position:right center; transform:translateY(-1px); box-shadow:0 7px 36px rgba(197,160,40,0.5); }
.reg-btn-primary:disabled { background:rgba(197,160,40,0.15); color:rgba(245,240,232,0.3); cursor:not-allowed; box-shadow:none; }
.reg-btn-back { background:transparent; color:rgba(245,240,232,0.5); border:1px solid rgba(197,160,40,0.25); }
.reg-btn-back:hover { border-color:rgba(197,160,40,0.5); color:rgba(245,240,232,0.8); }

/* Placement box */
.reg-placement-box { text-align:center; padding:2rem 1.25rem; background:rgba(7,22,14,0.95); border:1px solid rgba(197,160,40,0.3); border-top:2px solid var(--gold-core,#D4AF37); margin-bottom:1.5rem; }
.reg-placement-icon { margin-bottom:0.75rem; display:flex; justify-content:center; }
.reg-placement-icon svg { width:56px; height:56px; }
.reg-placement-title { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:600; color:var(--gold-light,#F5DC6A); margin-bottom:0.5rem; }
.reg-placement-msg { font-size:0.95rem; color:rgba(245,240,232,0.65); line-height:1.7; max-width:420px; margin:0 auto; }

/* Confirmation */
.reg-confirm-box { text-align:center; padding:2rem 1rem; }
.reg-confirm-icon { margin:0 auto 1.25rem; display:flex; justify-content:center; }
.reg-confirm-icon svg { width:68px; height:68px; }
.reg-confirm-title { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:600; color:var(--gold-light,#F5DC6A); margin-bottom:0.5rem; }
.reg-confirm-msg { color:rgba(245,240,232,0.7); font-size:1rem; max-width:440px; margin:0 auto; line-height:1.8; }
.reg-confirm-share { margin-top:2.5rem; padding-top:1.5rem; border-top:1px solid rgba(197,160,40,0.2); }
.reg-share-label { font-family:'Montserrat',sans-serif; font-size:0.68rem; letter-spacing:0.25em; text-transform:uppercase; color:rgba(197,160,40,0.6); margin-bottom:1rem; }
.reg-share-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

@media(max-width:500px){
  .reg-type-cards,.reg-field-row,.reg-gender-opts,.reg-program-opts{grid-template-columns:1fr}
  .reg-form-wrap{padding:1.25rem 0 0}
  .reg-result-card{flex-wrap:wrap;gap:0.5rem}
}