/* ==========================================================================
   AARSH INSTITUTE — SAMPORNA · CLASS 10 · SESSION 2026–27
   Flagship admissions landing page
   Design language: Dark editorial academic — a single gold "exam spine"
   running through the page as the countdown to Boards.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* ---- Brand tokens ---- */
  --ink:        #0a0a0c;
  --ink-2:      #111114;
  --panel:      #16161a;
  --panel-2:    #1d1d22;
  --hairline:   rgba(245,243,238,0.10);
  --hairline-strong: rgba(245,243,238,0.18);

  --gold:       #fdbe00;
  --gold-dim:   #a67e10;
  --gold-glow:  rgba(253,190,0,0.35);

  --maroon:     #7a0c0f;
  --maroon-deep:#3d0608;
  --maroon-glow:rgba(122,12,15,0.45);

  --paper:      #f5f3ee;
  --paper-dim:  #cfcdc6;
  --muted:      #93938f;
  --muted-2:    #6b6b68;

  --black:      #000000;
  --white:      #ffffff;

  --success:    #4caf6d;
  --danger:     #e2513c;

  /* ---- Type ---- */
  --f-display: 'Poppins', 'Inter', sans-serif;
  --f-body:    'Inter', 'Poppins', sans-serif;

  /* ---- Rhythm ---- */
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(64px, 10vw, 140px);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.16,.84,.44,1);
  --max: 1280px;
}

/* ---------------------------------- Reset -------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}
body{
  margin:0; background:var(--ink); color:var(--paper);
  font-family:var(--f-body); font-size:16px; line-height:1.6;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul,ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:2px; }

.container{ max-width:var(--max); margin:0 auto; padding-inline:var(--gutter); }
.section{ padding-block:var(--section-pad); position:relative; }
.section--tight{ padding-block:calc(var(--section-pad) * 0.6); }
.section--panel{ background:var(--panel); }
.section--maroon{
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(122,12,15,0.55), transparent 60%),
    var(--ink-2);
}
.section-border-top{ border-top:1px solid var(--hairline); }

/* ---------------------------------- Type --------------------------------- */
.eyebrow{
  font-family:var(--f-body); font-weight:700; font-size:12.5px; letter-spacing:.22em;
  text-transform:uppercase; color:var(--gold); display:flex; align-items:center; gap:12px;
  margin-bottom:18px;
}
.eyebrow::before{ content:""; width:26px; height:1px; background:var(--gold); display:inline-block; }
.eyebrow--num{ font-variant-numeric:tabular-nums; }

.section-title{
  font-family:var(--f-display); font-weight:600; letter-spacing:-0.01em;
  font-size:clamp(28px, 4vw, 48px); line-height:1.12; color:var(--paper); max-width:16ch;
}
.section-kicker{
  font-size:clamp(16px,1.6vw,19px); color:var(--paper-dim); max-width:56ch; margin-top:18px; line-height:1.65;
}
.section-head{ display:flex; flex-direction:column; margin-bottom:56px; }
.section-head--split{ flex-direction:row; justify-content:space-between; align-items:flex-end; gap:32px; flex-wrap:wrap; }

.text-gold{ color:var(--gold); }
.text-maroon{ color:#ff8b83; }
.text-muted{ color:var(--muted); }
.serif-accent{ font-family:var(--f-display); font-style:normal; }

/* ------------------------------- Buttons --------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 30px; border-radius:999px; font-weight:600; font-size:15px;
  border:1px solid transparent; transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space:nowrap; position:relative; overflow:hidden;
}
.btn-primary{ background:var(--gold); color:#1a1200; box-shadow:0 0 0 0 var(--gold-glow); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 34px -10px var(--gold-glow); }
.btn-ghost{ background:transparent; color:var(--paper); border-color:var(--hairline-strong); }
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn-sm{ padding:12px 22px; font-size:13.5px; }
.ripple{ position:absolute; border-radius:50%; background:rgba(255,255,255,.5); transform:scale(0); pointer-events:none; animation:ripple .6s var(--ease); }
@keyframes ripple{ to{ transform:scale(3); opacity:0; } }

/* -------------------------------- Header ---------------------------------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:500;
  padding:18px var(--gutter); display:flex; align-items:center; justify-content:space-between;
  background:rgba(10,10,12,0.6); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent; transition:border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled{ border-bottom-color:var(--hairline); background:rgba(10,10,12,0.86); }
.brand{ display:flex; align-items:center; gap:12px; font-family:var(--f-display); font-weight:700; font-size:19px; letter-spacing:.01em; }
.brand-mark{ width:34px; height:34px; border-radius:9px; background:linear-gradient(145deg,var(--gold),var(--gold-dim)); display:flex; align-items:center; justify-content:center; color:#1a1200; font-weight:800; font-size:15px; }
.nav-desktop{ display:flex; align-items:center; gap:34px; }
.nav-desktop a{ font-size:14.5px; font-weight:500; color:var(--paper-dim); transition:color .25s; }
.nav-desktop a:hover, .nav-desktop a.active{ color:var(--gold); }
.header-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; background:none; border:1px solid var(--hairline-strong); border-radius:8px; padding:9px 11px; color:var(--paper); }
.nav-mobile{ position:fixed; inset:0 0 0 auto; width:min(88vw,360px); background:var(--panel); z-index:600; padding:28px; transform:translateX(100%); transition:transform .4s var(--ease); border-left:1px solid var(--hairline); overflow-y:auto; }
.nav-mobile.is-open{ transform:translateX(0); }
.nav-mobile a{ display:block; padding:16px 0; border-bottom:1px solid var(--hairline); font-size:17px; font-weight:500; }
.nav-mobile-close{ background:none; border:none; color:var(--paper); font-size:26px; margin-bottom:20px; }
.nav-scrim{ position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:590; opacity:0; pointer-events:none; transition:opacity .3s; }
.nav-scrim.is-open{ opacity:1; pointer-events:auto; }

/* --------------------------- Exam Countdown Spine -------------------------
   Signature element: a persistent vertical rail (desktop) tracking scroll
   progress through the year of preparation, echoing the "one exam, one
   year of discipline" thesis. */
.exam-spine{
  position:fixed; right:22px; top:50%; transform:translateY(-50%); z-index:400;
  width:3px; height:280px; border-radius:3px; background:var(--hairline);
  display:none;
}
.exam-spine__fill{ position:absolute; left:0; top:0; width:100%; height:0%; background:linear-gradient(180deg,var(--gold),var(--maroon)); border-radius:3px; transition:height .1s linear; }
.exam-spine__label{ position:absolute; right:14px; top:0; font-size:11px; letter-spacing:.14em; color:var(--muted); writing-mode:vertical-rl; text-transform:uppercase; white-space:nowrap; }
@media(min-width:1200px){ .exam-spine{ display:block; } }

/* ---------------------------------- Hero ---------------------------------- */
.hero{
  min-height:100svh; display:flex; align-items:flex-end; position:relative;
  padding-top:140px; padding-bottom:80px; overflow:hidden;
  background:var(--ink);
}
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__bg img{ width:100%; height:100%; object-fit:cover; opacity:.55; }
.hero__scrim{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.35) 35%, rgba(10,10,12,.92) 92%),
    linear-gradient(90deg, rgba(10,10,12,.85) 0%, rgba(10,10,12,.25) 55%, rgba(10,10,12,.85) 100%);
}
.hero__content{ position:relative; z-index:2; width:100%; }
.hero__eyebrow{ display:flex; align-items:center; gap:14px; margin-bottom:26px; }
.hero__badge{ font-size:12px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); border:1px solid var(--gold-dim); padding:8px 16px; border-radius:999px; }
.hero__session{ font-size:13px; color:var(--muted); letter-spacing:.05em; }
.hero__title{
  font-family:var(--f-display); font-weight:700; letter-spacing:-0.015em;
  font-size:clamp(42px, 8.4vw, 104px); line-height:0.98; color:var(--paper);
}
.hero__title em{ font-style:normal; color:transparent; -webkit-text-stroke:1.5px var(--gold); }
.hero__line{ display:block; overflow:hidden; }
.hero__sub{ margin-top:28px; font-size:clamp(17px,2vw,22px); color:var(--paper-dim); max-width:52ch; font-weight:400; line-height:1.55; }
.hero__ctas{ display:flex; flex-wrap:wrap; gap:16px; margin-top:44px; }
.hero__meta{ display:flex; gap:40px; margin-top:64px; flex-wrap:wrap; }
.hero__meta-item{ display:flex; flex-direction:column; gap:4px; }
.hero__meta-num{ font-family:var(--f-display); font-weight:700; font-size:clamp(24px,2.6vw,32px); color:var(--gold); font-variant-numeric:tabular-nums; }
.hero__meta-label{ font-size:12.5px; color:var(--muted); text-transform:uppercase; letter-spacing:.1em; }
.hero__scroll{ position:absolute; bottom:28px; left:var(--gutter); z-index:2; display:flex; align-items:center; gap:10px; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.hero__scroll-line{ width:1px; height:38px; background:linear-gradient(180deg,var(--gold),transparent); position:relative; overflow:hidden; }

/* ------------------------------ Card system -------------------------------- */
.grid{ display:grid; gap:26px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media(max-width:980px){ .grid-3,.grid-4{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:640px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; } }

.card{
  background:var(--panel); border:1px solid var(--hairline); border-radius:var(--radius-lg);
  padding:32px; transition:transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.card:hover{ transform:translateY(-4px); border-color:var(--hairline-strong); background:var(--panel-2); }
.card__icon{ width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:linear-gradient(145deg, rgba(253,190,0,.16), rgba(122,12,15,.22)); color:var(--gold); margin-bottom:22px; }
.card__title{ font-family:var(--f-display); font-weight:600; font-size:19px; margin-bottom:10px; }
.card__text{ font-size:14.5px; color:var(--muted); line-height:1.7; }
.card--maroon{ background:linear-gradient(160deg, var(--maroon), var(--maroon-deep)); border-color:rgba(255,255,255,.08); }
.card--num{ position:relative; }
.card__num{ position:absolute; top:24px; right:28px; font-family:var(--f-display); font-weight:700; font-size:34px; color:var(--hairline-strong); }

/* Reality / stat strip */
.stat-strip{ display:flex; flex-wrap:wrap; gap:0; border:1px solid var(--hairline); border-radius:var(--radius-lg); overflow:hidden; }
.stat-strip__item{ flex:1 1 220px; padding:36px 30px; border-right:1px solid var(--hairline); }
.stat-strip__item:last-child{ border-right:none; }
.stat-num{ font-family:var(--f-display); font-weight:700; font-size:clamp(32px,3.4vw,46px); color:var(--gold); font-variant-numeric:tabular-nums; }
.stat-label{ font-size:13.5px; color:var(--muted); margin-top:8px; }

/* Comparison table (why students lose marks) */
.loss-table{ width:100%; border-collapse:collapse; }
.loss-table th{ text-align:left; font-size:12.5px; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); padding:14px 18px; border-bottom:1px solid var(--hairline-strong); }
.loss-table td{ padding:20px 18px; border-bottom:1px solid var(--hairline); font-size:15px; vertical-align:top; }
.loss-table tr:last-child td{ border-bottom:none; }
.tag{ display:inline-flex; align-items:center; padding:5px 12px; border-radius:999px; font-size:12px; font-weight:600; }
.tag--risk{ background:rgba(226,81,60,.14); color:#ff8b7a; }
.tag--fix{ background:rgba(76,175,109,.14); color:#7fdba0; }

/* SAMPORNA framework ring */
.framework{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media(max-width:980px){ .framework{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .framework{ grid-template-columns:1fr; } }
.framework__letter{ font-family:var(--f-display); font-weight:700; font-size:44px; color:var(--gold); line-height:1; margin-bottom:16px; }

/* Blueprint timeline (vertical) */
.blueprint{ position:relative; padding-left:38px; }
.blueprint::before{ content:""; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background:linear-gradient(180deg,var(--gold),var(--maroon)); }
.blueprint__item{ position:relative; padding-bottom:44px; }
.blueprint__item:last-child{ padding-bottom:0; }
.blueprint__dot{ position:absolute; left:-38px; top:2px; width:20px; height:20px; border-radius:50%; background:var(--ink); border:2px solid var(--gold); }
.blueprint__phase{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
.blueprint__title{ font-family:var(--f-display); font-weight:600; font-size:20px; margin-bottom:8px; }
.blueprint__text{ color:var(--muted); font-size:14.5px; max-width:60ch; line-height:1.7; }

/* Chapter weightage bars */
.weightage__row{ display:grid; grid-template-columns:180px 1fr 60px; align-items:center; gap:18px; padding:14px 0; border-bottom:1px solid var(--hairline); }
.weightage__row:last-child{ border-bottom:none; }
.weightage__label{ font-size:14px; font-weight:500; }
.weightage__track{ height:8px; border-radius:999px; background:var(--hairline); overflow:hidden; }
.weightage__fill{ height:100%; border-radius:999px; background:linear-gradient(90deg,var(--maroon),var(--gold)); width:0%; transition:width 1.2s var(--ease); }
.weightage__pct{ font-variant-numeric:tabular-nums; font-weight:600; color:var(--gold); text-align:right; font-size:14px; }

/* Weekly planner grid */
.planner{ display:grid; grid-template-columns:repeat(7,1fr); gap:10px; }
@media(max-width:900px){ .planner{ grid-template-columns:repeat(4,1fr); } }
@media(max-width:560px){ .planner{ grid-template-columns:repeat(2,1fr); } }
.planner__day{ background:var(--panel); border:1px solid var(--hairline); border-radius:var(--radius-md); padding:18px 14px; min-height:150px; }
.planner__day-name{ font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.planner__task{ font-size:12.5px; color:var(--paper-dim); padding:6px 0; border-top:1px dashed var(--hairline); }
.planner__task:first-of-type{ border-top:none; }

/* Revision pyramid */
.pyramid{ display:flex; flex-direction:column; align-items:center; gap:8px; max-width:640px; margin-inline:auto; }
.pyramid__tier{ width:100%; padding:18px 24px; border-radius:var(--radius-md); text-align:center; color:#1a1200; font-weight:600; }
.pyramid__tier span{ display:block; font-size:12px; font-weight:500; color:rgba(26,18,0,.75); margin-top:4px; }

/* Readiness meter / dashboard */
.meter{ position:relative; width:220px; height:220px; margin-inline:auto; }
.meter svg{ transform:rotate(-90deg); }
.meter__value{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.meter__num{ font-family:var(--f-display); font-weight:700; font-size:40px; color:var(--gold); }
.meter__cap{ font-size:11px; letter-spacing:.1em; color:var(--muted); text-transform:uppercase; margin-top:4px; }

.dashboard{ display:grid; grid-template-columns:2fr 1fr; gap:24px; }
@media(max-width:900px){ .dashboard{ grid-template-columns:1fr; } }
.dashboard__chart{ background:var(--panel); border:1px solid var(--hairline); border-radius:var(--radius-lg); padding:30px; }
.bars{ display:flex; align-items:flex-end; gap:14px; height:220px; }
.bars__col{ flex:1; display:flex; flex-direction:column; align-items:center; gap:10px; height:100%; justify-content:flex-end; }
.bars__fill{ width:100%; border-radius:8px 8px 0 0; background:linear-gradient(180deg,var(--gold),var(--maroon)); height:0%; transition:height 1.2s var(--ease); }
.bars__label{ font-size:11.5px; color:var(--muted); }

/* Subject cards (math/science/eng/sst) */
.subject-card{ position:relative; }
.subject-card__glyph{ font-family:var(--f-display); font-weight:700; font-size:52px; color:var(--hairline-strong); position:absolute; top:20px; right:24px; }

/* Sample paper / mock board tiles */
.mock-tile{ display:flex; align-items:center; justify-content:space-between; padding:20px 26px; background:var(--panel); border:1px solid var(--hairline); border-radius:var(--radius-md); margin-bottom:12px; }
.mock-tile__left{ display:flex; align-items:center; gap:18px; }
.mock-tile__badge{ width:44px; height:44px; border-radius:10px; background:var(--maroon); display:flex; align-items:center; justify-content:center; font-weight:700; font-family:var(--f-display); }
.mock-tile__name{ font-weight:600; font-size:15px; }
.mock-tile__meta{ font-size:12.5px; color:var(--muted); margin-top:3px; }

/* Faculty */
.faculty-card{ text-align:left; }
.faculty-card__photo{ border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/5; margin-bottom:20px; background:var(--panel-2); }
.faculty-card__name{ font-family:var(--f-display); font-weight:600; font-size:19px; }
.faculty-card__role{ font-size:13px; color:var(--gold); margin-top:4px; }
.faculty-card__meta{ font-size:13px; color:var(--muted); margin-top:12px; line-height:1.6; }

/* Testimonials / stories */
.story-card{ background:var(--panel); border:1px solid var(--hairline); border-radius:var(--radius-lg); padding:30px; display:flex; flex-direction:column; gap:18px; }
.story-card__marks{ font-family:var(--f-display); font-weight:700; font-size:30px; color:var(--gold); }
.story-card__quote{ font-size:15px; color:var(--paper-dim); line-height:1.7; }
.story-card__name{ font-weight:600; font-size:14.5px; }
.story-card__school{ font-size:12.5px; color:var(--muted); }

.quote-card{ padding:28px 30px; background:var(--panel); border-left:3px solid var(--gold); border-radius:0 var(--radius-md) var(--radius-md) 0; }
.quote-card__text{ font-size:15px; color:var(--paper-dim); font-style:italic; line-height:1.7; }
.quote-card__by{ margin-top:14px; font-size:13.5px; color:var(--gold); font-weight:600; }

/* Gallery */
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
@media(max-width:768px){ .gallery{ grid-template-columns:1fr 1fr; } }
.gallery__item{ border-radius:var(--radius-md); overflow:hidden; aspect-ratio:4/3; background:var(--panel-2); position:relative; }
.gallery__item img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.gallery__item:hover img{ transform:scale(1.06); }

/* Study material */
.material-row{ display:flex; align-items:center; justify-content:space-between; padding:22px 0; border-bottom:1px solid var(--hairline); }
.material-row:last-child{ border-bottom:none; }
.material-row__title{ font-weight:600; font-size:15.5px; }
.material-row__sub{ font-size:13px; color:var(--muted); margin-top:4px; }

/* Scholarship */
.scholarship-card{ text-align:center; }
.scholarship-card__pct{ font-family:var(--f-display); font-weight:700; font-size:40px; color:var(--gold); }

/* FAQ accordion */
.faq{ border-top:1px solid var(--hairline); }
.faq__item{ border-bottom:1px solid var(--hairline); }
.faq__q{ width:100%; text-align:left; background:none; border:none; color:var(--paper); padding:24px 4px; display:flex; align-items:center; justify-content:space-between; font-size:16.5px; font-weight:500; gap:20px; }
.faq__q:hover{ color:var(--gold); }
.faq__icon{ flex:none; width:22px; height:22px; position:relative; }
.faq__icon::before,.faq__icon::after{ content:""; position:absolute; background:currentColor; top:50%; left:50%; transform:translate(-50%,-50%); transition:transform .3s var(--ease); }
.faq__icon::before{ width:14px; height:2px; }
.faq__icon::after{ width:2px; height:14px; }
.faq__item.is-open .faq__icon::after{ transform:translate(-50%,-50%) rotate(90deg) scaleY(0); }
.faq__a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq__a-inner{ padding:0 4px 26px; color:var(--muted); font-size:14.5px; line-height:1.75; max-width:70ch; }

/* Admission steps */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
@media(max-width:900px){ .steps{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; padding-top:8px; }
.step__num{ font-family:var(--f-display); font-weight:700; font-size:15px; color:var(--ink); background:var(--gold); width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.step__title{ font-weight:600; font-size:15.5px; margin-bottom:8px; }
.step__text{ font-size:13.5px; color:var(--muted); line-height:1.65; }


/* ==========================================================
   CONTACT SECTION
========================================================== */

.contact-wrap{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:45px;
    align-items:start;
    margin-top:50px;
}

/* ==========================================================
   FORM
========================================================== */

.class5-form{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px;
}

.class5-field{
    display:flex;
    flex-direction:column;
    margin-bottom:22px;
}

.class5-field label{
    color:#fff;
    font-weight:600;
    margin-bottom:10px;
}

.class5-field input,
.class5-field textarea{

    width:100%;
    background:#1b1b1b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:16px 18px;
    color:#fff;
    font-size:15px;
    transition:.3s;

}

.class5-field textarea{

    resize:vertical;
    min-height:150px;

}

.class5-field input::placeholder,
.class5-field textarea::placeholder{

    color:#8f8f8f;

}

.class5-field input:focus,
.class5-field textarea:focus{

    outline:none;
    border-color:#FDBE00;
    box-shadow:0 0 0 4px rgba(253,190,0,.12);

}

.class5-form-note{

    color:#bfbfbf;
    line-height:1.8;
    font-size:.92rem;
    margin-bottom:25px;

}

/* ==========================================================
   BUTTON
========================================================== */

.class5-btn{

    width:100%;
    border:none;
    border-radius:16px;
    background:#FDBE00;
    color:#000;
    padding:18px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;

}

.class5-btn:hover{

    transform:translateY(-3px);
    box-shadow:0 20px 40px rgba(253,190,0,.25);

}

#formMessage{

    margin-top:16px;
    text-align:center;
    font-size:15px;

}

/* ==========================================================
   RIGHT INFO
========================================================== */

.contact-info__row{

    display:flex;
    gap:16px;
    align-items:flex-start;
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:18px;
    margin-bottom:18px;

}

.contact-info__icon{

    width:52px;
    height:52px;
    border-radius:50%;
    background:#FDBE00;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;

}

.contact-info__title{

    color:#fff;
    font-size:17px;
    font-weight:700;
    margin-bottom:5px;

}

.contact-info__text{

    color:#cfcfcf;
    line-height:1.7;

}

.contact-info__text a{

    color:#fff;
    text-decoration:none;

}

.contact-info__text a:hover{

    color:#FDBE00;

}

/* ==========================================================
   MAP
========================================================== */

.map-embed{

    margin-top:20px;
    overflow:hidden;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.08);

}

.map-embed iframe{

    width:100%;
    height:280px;
    border:0;
    display:block;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:992px){

.contact-wrap{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.class5-form{

    padding:25px;

}

.contact-info__row{

    padding:16px;

}

.map-embed iframe{

    height:220px;

}

}

/* ==========================================
   THANK YOU MODAL
========================================== */

.thankyou-modal{
    position:fixed;
    inset:0;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.78);
    backdrop-filter:blur(8px);
    padding:20px;
    z-index:99999;
}

.thankyou-modal.show{
    display:flex;
    animation:thankyouFade .35s ease;
}

.thankyou-box{
    width:100%;
    max-width:560px;
    background:#111;
    border:1px solid rgba(253,190,0,.18);
    border-radius:24px;
    padding:42px;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,.55);
}

.thankyou-icon{
    width:90px;
    height:90px;
    margin:0 auto 24px;
    border-radius:50%;
    background:#FDBE00;
    color:#000;
    font-size:42px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.thankyou-box h3{
    color:#fff;
    font-size:2rem;
    margin-bottom:14px;
}

.thankyou-box p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:30px;
}

.thankyou-actions{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:28px;
}

.thankyou-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:14px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    color:#fff;
    transition:.3s;
}

.thankyou-btn:hover{
    transform:translateY(-3px);
}

.thankyou-btn.whatsapp{
    background:#25D366;
}

.thankyou-btn.instagram{
    background:#E4405F;
}

.thankyou-btn.facebook{
    background:#1877F2;
}

.thankyou-btn.youtube{
    background:#FF0000;
}

.thankyou-close{
    width:100%;
    border:none;
    border-radius:14px;
    background:#FDBE00;
    color:#000;
    padding:16px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.thankyou-close:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 40px rgba(253,190,0,.28);
}

@keyframes thankyouFade{

    from{
        opacity:0;
        transform:scale(.96);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

@media(max-width:768px){

    .thankyou-box{
        padding:28px 22px;
    }

    .thankyou-actions{
        grid-template-columns:1fr;
    }

    .thankyou-icon{
        width:72px;
        height:72px;
        font-size:34px;
    }

    .thankyou-box h3{
        font-size:1.6rem;
    }

}

/* Sticky CTA bar */
.sticky-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:450; padding:14px var(--gutter);
  background:rgba(10,10,12,.92); backdrop-filter:blur(14px); border-top:1px solid var(--hairline-strong);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  transform:translateY(100%); transition:transform .45s var(--ease);
}
.sticky-cta.is-visible{ transform:translateY(0); }
.sticky-cta__text{ font-size:14px; color:var(--paper-dim); display:none; }
.sticky-cta__phone{ font-weight:700; color:var(--gold); font-size:15px; }
@media(min-width:700px){ .sticky-cta__text{ display:block; } }

/* Final CTA */
.final-cta{
  border-radius:var(--radius-lg); padding:clamp(40px,7vw,90px) clamp(24px,6vw,80px); text-align:center; position:relative; overflow:hidden;
  background: radial-gradient(120% 160% at 50% 0%, rgba(253,190,0,.16), transparent 60%), linear-gradient(160deg,var(--maroon),var(--maroon-deep));
}
.final-cta__title{ font-family:var(--f-display); font-weight:700; font-size:clamp(30px,4.6vw,54px); max-width:18ch; margin-inline:auto; line-height:1.08; }
.final-cta__sub{ margin-top:20px; color:var(--paper-dim); font-size:17px; max-width:50ch; margin-inline:auto; }
.final-cta__row{ display:flex; justify-content:center; gap:16px; margin-top:38px; flex-wrap:wrap; }

/* Exit popup */
.exit-popup{ position:fixed; inset:0; z-index:800; display:flex; align-items:center; justify-content:center; padding:24px; background:rgba(0,0,0,.7); opacity:0; pointer-events:none; transition:opacity .35s; }
.exit-popup.is-visible{ opacity:1; pointer-events:auto; }
.exit-popup__box{ background:var(--panel); border:1px solid var(--hairline-strong); border-radius:var(--radius-lg); padding:40px; max-width:440px; width:100%; position:relative; transform:translateY(16px); transition:transform .4s var(--ease); }
.exit-popup.is-visible .exit-popup__box{ transform:translateY(0); }
.exit-popup__close{ position:absolute; top:16px; right:16px; background:none; border:none; color:var(--muted); font-size:22px; }
.exit-popup__title{ font-family:var(--f-display); font-weight:600; font-size:24px; margin-bottom:12px; }
.exit-popup__text{ font-size:14.5px; color:var(--muted); margin-bottom:24px; line-height:1.6; }



/* Reveal animation hooks (GSAP toggles .is-revealed) */
.reveal{ opacity:0; transform:translateY(28px); }
.reveal.is-revealed{ opacity:1; transform:none; transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-stagger > *{ opacity:0; transform:translateY(24px); }
.reveal-stagger.is-revealed > *{ opacity:1; transform:none; transition:opacity .7s var(--ease), transform .7s var(--ease); }

/* Skip link */
.skip-link{ position:absolute; left:-9999px; top:0; background:var(--gold); color:#1a1200; padding:14px 20px; z-index:1000; font-weight:600; border-radius:0 0 8px 0; }
.skip-link:focus{ left:0; }

/* Utility */
/*.mt-0{ margin-top:0 !important; }
.text-center{ text-align:center; }
.hidden{ display:none !important; }*/
@media(max-width:900px){ .nav-desktop, .header-cta{ display:none; } .nav-toggle{ display:inline-flex; } }



