/* ═══════════════════════════════════
   RESET & BASE — mobile-first
═══════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: #FFFDF9;
  color: #1C1008;
  font-family: 'Outfit', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img, video, iframe, table {
  max-width: 100%;
  height: auto;
}

:root {
  --saffron: #E8620A;
  --saffron-light: #FF8533;
  --saffron-deep: #C04F06;
  --saffron-glow: rgba(232,98,10,0.18);
  --saffron-faint: rgba(232,98,10,0.06);
  --gold: #C9932A;
  --gold-light: #F0C060;
  --cream: #FFFDF9;
  --warm-white: #FFF8F2;
  --surface: #F9F3EC;
  --surface2: #F2E9DC;
  --border: rgba(201,147,42,0.18);
  --border-warm: rgba(232,98,10,0.28);
  --ink: #1C1008;
  --ink-soft: #5A3A1A;
  --ink-dim: #9B7250;
  --ff-display: 'Playfair Display', serif;
  --ff-body: 'Outfit', sans-serif;
  --ff-italic: 'Cormorant', serif;
  --px: clamp(1rem, 5vw, 5%);
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 2px; }

/* ── Animations ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes floatY   { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes pulse    { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.8); } }
@keyframes ticker   { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes scrollDrop { 0% { opacity:1; top:6px; } 100% { opacity:0; top:18px; } }
@keyframes rotate360 { to { transform:rotate(360deg); } }
@keyframes shimmer  { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.3); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.2); }
  56%       { transform: scale(1); }
}
@keyframes slideInLeft  { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }

.reveal { opacity:0; transform:translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════
   FACILITY BAR
═══════════════════════════════════ */
.facility-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--saffron-deep) 0%, var(--saffron) 50%, var(--gold) 100%);
  padding: .38rem 0;
  overflow: hidden;
  width: 100%;
}
.facility-bar-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  will-change: transform;
}
.fbar-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 1.4rem;
  flex-shrink: 0;
}
.fbar-dot { width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.5); flex-shrink:0; }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
nav {
  position: fixed;
  top: 28px; left: 0; right: 0;
  z-index: 900;
  padding: .85rem var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,253,249,.95);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(232,98,10,.05);
  transition: padding .3s, box-shadow .3s;
  width: 100%;
  overflow: hidden;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
  min-width: 0;
}
.nav-logo-img {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 8px;
  object-fit: contain;
  border: 1px solid var(--border);
}
.nav-name {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-sub {
  font-family: var(--ff-body);
  font-size: 9px;
  color: var(--saffron);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex; gap: 1.8rem; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--saffron);
  transition: right .25s ease;
}
.nav-links a:hover { color: var(--saffron); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  background: var(--saffron) !important;
  color: #fff !important;
  padding: .5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--saffron-deep) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--saffron);
  border-radius: 2px;
  transition: all .35s cubic-bezier(.77,0,.18,1);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,253,249,.98);
  z-index: 950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  opacity: 0;
  transition: opacity .3s ease;
  padding: 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav.visible { opacity: 1; }
.mobile-nav a {
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  font-style: italic;
  transition: color .2s;
  text-align: center;
  padding: .3rem 1rem;
}
.mobile-nav a:hover { color: var(--saffron); }
.mobile-nav-cta {
  background: var(--saffron);
  color: #fff !important;
  font-family: var(--ff-body) !important;
  font-style: normal !important;
  font-size: 14px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .9rem 2.5rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
  margin-top: .5rem;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 8rem var(--px) 5rem;
  position: relative; overflow: hidden;
  background: var(--cream);
  width: 100%;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 50%, rgba(232,98,10,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 15% 85%, rgba(201,147,42,.05) 0%, transparent 60%),
    linear-gradient(180deg, #FFFCF7 0%, var(--cream) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,98,10,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,98,10,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(600px) rotateX(18deg) scale(1.4);
  transform-origin: center bottom;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.2) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.2) 50%, transparent 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,10,.1) 0%, transparent 65%);
  top: 5%; right: -10%;
  filter: blur(40px);
  animation: floatY 10s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,147,42,.08) 0%, transparent 65%);
  bottom: 10%; left: -5%;
  filter: blur(35px);
  animation: floatY 8s ease-in-out infinite reverse;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 840px;
  text-align: center;
  animation: fadeUp .9s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-warm);
  border-radius: 30px;
  padding: .38rem 1.1rem;
  margin-bottom: 2rem;
  background: rgba(232,98,10,.06);
  max-width: 100%;
  flex-wrap: nowrap;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--saffron);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-badge span {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
  white-space: nowrap;
}
.hero-logo-img {
  width: 110px; height: 110px;
  border-radius: 18px;
  object-fit: contain;
  border: 1.5px solid var(--border);
  animation: floatY 7s ease-in-out infinite;
  display: block; margin: 0 auto 1.6rem;
  box-shadow: 0 10px 40px rgba(232,98,10,.2);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 10vw, 6rem);
  font-weight: 700;
  line-height: .95;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: .4rem;
  word-break: break-word;
}
.hero-title em { font-style: italic; color: var(--saffron); }
.hero-eyebrow {
  font-family: var(--ff-italic);
  font-size: clamp(1.1rem, 4vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: block;
}
.hero-tagline {
  font-size: clamp(13px, 3.5vw, 16px);
  color: var(--ink-soft);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-weight: 300;
  padding: 0 .5rem;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0 .25rem;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  border-radius: 30px;
  padding: .32rem .9rem;
  font-family: var(--ff-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--saffron-deep);
  transition: all .25s;
  white-space: nowrap;
}
.hero-pill:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); transform: translateY(-2px); }
.hero-pill-icon { font-size: 13px; }
.hero-actions {
  display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 0 .5rem;
}
.btn-primary {
  background: var(--saffron);
  color: #fff;
  border: none;
  padding: .85rem 1.8rem;
  font-family: var(--ff-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,98,10,.3);
  white-space: nowrap;
  min-height: 44px;
  line-height: 1;
}
.btn-primary:hover { background: var(--saffron-deep); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(232,98,10,.35); }
.btn-outline {
  background: transparent;
  color: var(--saffron);
  border: 1.5px solid var(--border-warm);
  padding: .85rem 1.8rem;
  font-family: var(--ff-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 44px;
}
.btn-outline:hover { background: var(--saffron-faint); transform: translateY(-3px); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 5vw, 2.6rem); font-weight: 700;
  color: var(--saffron); line-height: 1;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label {
  font-family: var(--ff-body);
  font-size: clamp(8px, 2vw, 10px); letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ink-dim);
  font-weight: 500; margin-top: 2px;
}
.scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2;
  animation: fadeIn 1.5s .8s ease both;
}
.scroll-mouse {
  width: 20px; height: 32px;
  border: 1.5px solid var(--ink-dim);
  border-radius: 10px; position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute; top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--saffron); border-radius: 3px;
  animation: scrollDrop 2s ease-in-out infinite;
}
.scroll-text { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-dim); }

/* ═══════════════════════════════════
   PROMO BANNER SLIDER
═══════════════════════════════════ */
.promo-banner-section {
  padding: 0;
  width: 100%;
  overflow: hidden;
  display: block;
  line-height: 0;
  font-size: 0;
}

.promo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  line-height: 0;
  font-size: 0;
}

.promo-slide {
  display: none;
  width: 100%;
  position: relative;
  line-height: 0;
  font-size: 0;
}

.promo-slide.active {
  display: block;
}

.promo-slide-bg {
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
}

.promo-slide-bg img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: bottom;
  line-height: 0;
}

/* Arrows */
.promo-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  transition: all .25s;
  backdrop-filter: blur(6px);
}
.promo-nav-btn:hover {
  background: rgba(255,255,255,.32);
  transform: translateY(-50%) scale(1.08);
}
.promo-nav-prev { left: 1rem; }
.promo-nav-next { right: 1rem; }

/* Dots */
.promo-dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.promo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .3s;
  border: none;
  padding: 0;
}
.promo-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

/* ═══════════════════════════════════
   SECTIONS
═══════════════════════════════════ */
section {
  padding: 4rem var(--px);
  position: relative;
  width: 100%;
  overflow: hidden;
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.sec-label {
  font-family: var(--ff-body);
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--saffron);
  font-weight: 600;
}
.gold-rule {
  width: 44px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto;
}
.gold-rule.left { margin: 1rem 0; }
.sec-title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1.1;
  color: var(--ink); letter-spacing: -.5px;
  word-break: break-word;
}
.sec-title em { font-style: italic; color: var(--saffron); }
.sec-sub {
  font-size: 14px; color: var(--ink-soft);
  font-weight: 300; max-width: 500px;
  margin-top: .8rem; line-height: 1.75;
}
.sec-sub.center { margin: .8rem auto 0; text-align: center; }

/* ═══════════════════════════════════
   FACILITIES
═══════════════════════════════════ */
.facilities-section { background: var(--warm-white); }
.fac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.fac-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  transition: all .35s;
  position: relative; overflow: hidden;
}
.fac-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  transform: scaleX(0); transition: transform .4s;
}
.fac-card:hover { border-color: var(--border-warm); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(232,98,10,.1); }
.fac-card:hover::before { transform: scaleX(1); }
.fac-icon { font-size: 2rem; margin-bottom: .9rem; display: block; }
.fac-name {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--ink); margin-bottom: .35rem;
}
.fac-desc { font-size: 13px; color: var(--ink-soft); font-weight: 300; line-height: 1.6; }

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
.about-section { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual-wrap { position: relative; }
.about-visual {
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surface2), var(--cream));
}
.about-visual-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  animation: fadeIn .6s ease both;
}
.about-visual-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 0;
}
.about-visual-fallback::before {
  content: '';
  position: absolute; inset: 0;
  background: conic-gradient(from 0deg, transparent, rgba(232,98,10,.05) 60deg, transparent 120deg);
  animation: rotate360 14s linear infinite;
}
.about-visual-logo {
  width: 100px; height: 100px;
  border-radius: 14px;
  border: 1.5px dashed var(--border-warm);
  background: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; position: relative; z-index: 1;
}
.about-logo-hint {
  font-family: var(--ff-body);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-dim); position: relative; z-index: 1;
  text-align: center; padding: 0 1rem;
}
.about-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--saffron);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(232,98,10,.25);
  z-index: 5;
}
.about-badge-num { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.about-badge-txt { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; opacity: .85; font-weight: 600; }
.blockquote {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--saffron);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0;
  position: relative;
}
.blockquote::before {
  content: '\201C';
  position: absolute; top: -.5rem; left: 1.2rem;
  font-family: var(--ff-display); font-size: 4.5rem;
  color: var(--saffron); opacity: .15; line-height: 1;
}
.blockquote p {
  font-family: var(--ff-display);
  font-size: 1rem; font-style: italic;
  font-weight: 400; color: var(--ink);
  line-height: 1.65; position: relative; z-index: 1;
}
.blockquote-attr {
  margin-top: .8rem;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--saffron); font-weight: 600;
}
.check-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-top: 1.3rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-soft); font-weight: 400;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px; margin-top: 1px;
  background: rgba(232,98,10,.1);
  border: 1px solid var(--border-warm);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8620A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ═══════════════════════════════════
   COURSES
═══════════════════════════════════ */
.courses-section { background: var(--cream); }
.courses-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3rem; margin-top: 2.5rem;
}
.course-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  transition: all .4s;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 10px rgba(201,147,42,.04);
}
.course-card:hover {
  border-color: var(--border-warm);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(232,98,10,.1);
}
.course-card-shine {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s;
}
.course-card:hover .course-card-shine { opacity: 1; }
.course-icon {
  width: 50px; height: 50px;
  background: var(--warm-white);
  border: 1px solid var(--border); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
  transition: all .3s;
}
.course-card:hover .course-icon { background: rgba(232,98,10,.12); border-color: var(--saffron); transform: rotate(-8deg) scale(1.1); }
.course-tag {
  display: inline-block;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--saffron); background: rgba(232,98,10,.08);
  border: 1px solid rgba(232,98,10,.2);
  padding: .2rem .65rem; border-radius: 20px; margin-bottom: .8rem; font-weight: 600;
}
.course-name {
  font-family: var(--ff-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--ink); margin-bottom: .6rem;
}
.course-desc { font-size: 13px; color: var(--ink-soft); font-weight: 300; line-height: 1.6; margin-bottom: 1.2rem; }
.pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.pill {
  font-size: 11px; letter-spacing: .5px; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--border);
  padding: .22rem .7rem; border-radius: 20px; font-weight: 500;
  transition: all .2s;
}
.course-card:hover .pill { border-color: rgba(232,98,10,.2); color: var(--saffron-deep); }

/* ═══════════════════════════════════
   EXAMS
═══════════════════════════════════ */
.exams-section { background: var(--surface); }
.exam-badges {
  display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem;
}
.exam-badge {
  font-family: var(--ff-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--ink); background: var(--cream);
  border: 1px solid var(--border);
  padding: .6rem 1.2rem; border-radius: 8px;
  transition: all .25s; cursor: default;
  white-space: nowrap;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.exam-badge:hover {
  background: var(--saffron); color: #fff; border-color: var(--saffron);
  transform: translateY(-2px); box-shadow: 0 6px 18px rgba(232,98,10,.2);
}
.subjects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .9rem; margin-top: 2rem;
}
.subj-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.2rem;
  display: flex; align-items: center; gap: .9rem;
  transition: all .25s;
}
.subj-card:hover { border-color: var(--border-warm); background: var(--warm-white); transform: translateX(3px); }
.subj-icon { font-size: 1.5rem; flex-shrink: 0; }
.subj-name { font-family: var(--ff-display); font-size: 14px; font-weight: 700; color: var(--ink); }
.subj-sub { font-size: 11px; color: var(--ink-dim); font-weight: 300; }

/* ═══════════════════════════════════
   RESULTS
═══════════════════════════════════ */
.results-section { background: var(--cream); position: relative; overflow: hidden; }
.results-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,98,10,.05) 0%, transparent 70%);
  pointer-events: none;
}
.toppers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem; margin-top: 2.5rem; margin-bottom: 2.5rem;
}
.topper-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 1.5rem;
  text-align: center; position: relative;
  transition: all .4s; overflow: hidden;
}
.topper-card.gold { border-color: rgba(232,98,10,.35); background: linear-gradient(135deg, rgba(232,98,10,.05) 0%, var(--cream) 60%); }
.topper-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(232,98,10,.12); }
.rank-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--saffron); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  padding: .2rem .55rem; border-radius: 20px;
}
.rank-tag.silver { background: #A0A0A0; }
.rank-tag.bronze { background: #CD7F32; }
.topper-av {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--warm-white); border: 2px solid var(--border);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700;
  color: var(--saffron);
}
.topper-card.gold .topper-av { border-color: var(--saffron); box-shadow: 0 0 0 4px rgba(232,98,10,.1); }
.topper-name { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.topper-exam { font-size: 12px; color: var(--ink-dim); margin-bottom: .9rem; font-weight: 300; }
.topper-score { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700; color: var(--saffron); line-height: 1; }
.topper-score-lbl { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-dim); margin-top: .25rem; }
.result-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.rstat {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem 1rem;
  text-align: center; transition: all .3s;
}
.rstat:hover { border-color: var(--border-warm); box-shadow: 0 8px 20px rgba(232,98,10,.07); }
.rstat-num { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700; color: var(--saffron); display: block; }
.rstat-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-dim); margin-top: .35rem; }

/* ═══════════════════════════════════
   GALLERY
═══════════════════════════════════ */
.gallery-section { background: var(--surface); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem; margin-top: 2.5rem;
}
.g-item {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  position: relative; cursor: pointer; transition: all .4s;
  aspect-ratio: 4/3;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover { border-color: var(--border-warm); box-shadow: 0 8px 28px rgba(232,98,10,.13); }
.g-item:hover .g-overlay { opacity: 1; }
.g-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, var(--surface2), var(--cream));
}
.g-ph-icon { font-size: 1.8rem; opacity: .4; }
.g-ph-txt { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-dim); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(232,98,10,.08);
  opacity: 0; transition: opacity .3s;
  border: 2px solid rgba(232,98,10,.3);
  border-radius: 12px;
}
.g-item.g-hidden { display: none; }
.gallery-showmore-wrap {
  display: flex; flex-direction: column;
  align-items: center; margin-top: 2rem; gap: .6rem;
}
.btn-gallery-more {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream);
  border: 1.5px solid var(--border-warm);
  border-radius: 40px; padding: .75rem 2rem;
  font-family: var(--ff-body); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--saffron); cursor: pointer; transition: all .3s;
}
.btn-gallery-more:hover {
  background: var(--saffron); color: #fff; border-color: var(--saffron);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,98,10,.2);
}
.gallery-count-note { font-size: 11.5px; color: var(--ink-dim); font-weight: 300; }

/* ═══════════════════════════════════
   REVIEWS
═══════════════════════════════════ */
.reviews-section { background: var(--warm-white); }
.reviews-auth-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem 1.4rem; margin-top: 2rem;
}
.reviews-auth-info { display: flex; align-items: center; gap: .8rem; }
.auth-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(232,98,10,.1); border: 1.5px solid var(--border-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; font-family: var(--ff-body);
  color: var(--saffron); flex-shrink: 0; overflow: hidden;
}
.auth-user-name { font-family: var(--ff-body); font-size: 14px; font-weight: 600; color: var(--ink); }
.auth-user-email { font-size: 11px; color: var(--ink-dim); font-weight: 300; }
.auth-sign-in-hint { font-size: 13px; color: var(--ink-soft); font-weight: 300; }
.auth-sign-in-hint strong { color: var(--saffron); font-weight: 600; }
.btn-google {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--border-warm);
  border-radius: 8px; padding: .55rem 1.1rem;
  font-family: var(--ff-body); font-size: 12px; font-weight: 600;
  letter-spacing: .5px; color: var(--ink); cursor: pointer;
  transition: all .25s; white-space: nowrap; min-height: 40px;
}
.btn-google:hover { border-color: var(--saffron); background: var(--warm-white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,98,10,.15); }
.btn-google svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-signout {
  background: none; border: 1px solid var(--border);
  border-radius: 6px; padding: .4rem .9rem;
  font-family: var(--ff-body); font-size: 11px;
  color: var(--ink-dim); cursor: pointer; transition: all .2s; letter-spacing: .5px;
}
.btn-signout:hover { border-color: var(--border-warm); color: var(--saffron); }
.review-form-wrap {
  background: var(--cream); border: 1px solid var(--border-warm);
  border-radius: 16px; padding: 2rem; margin-top: 1.3rem;
  position: relative; overflow: hidden; display: none;
}
.review-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}
.review-form-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 1.3rem; }
.review-form-title span { font-style: italic; color: var(--saffron); }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-bottom: .4rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--warm-white);
  border: 1px solid var(--border); border-radius: 8px;
  padding: .75rem 1rem; font-family: var(--ff-body); font-size: 14px;
  color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(232,98,10,.1);
}
.form-textarea { min-height: 100px; resize: vertical; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.star-picker { display: flex; gap: 4px; align-items: center; }
.star-picker-btn {
  background: none; border: none; cursor: pointer; font-size: 1.5rem;
  line-height: 1; color: var(--border); transition: all .15s; padding: 2px;
  filter: grayscale(1);
}
.star-picker-btn.active, .star-picker-btn:hover { color: var(--gold); filter: grayscale(0); transform: scale(1.2); }
.form-submit-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-top: .5rem;
}
.review-submit-note { font-size: 12px; color: var(--ink-dim); font-weight: 300; }
.btn-submit-review {
  background: var(--saffron); color: #fff; border: none;
  padding: .75rem 1.8rem; font-family: var(--ff-body);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 7px; cursor: pointer; transition: all .25s;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(232,98,10,.25); min-height: 42px;
}
.btn-submit-review:hover { background: var(--saffron-deep); transform: translateY(-2px); }
.btn-submit-review:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-cancel-edit {
  background: none; border: 1.5px solid var(--border-warm);
  border-radius: 7px; padding: .75rem 1.2rem;
  font-family: var(--ff-body); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft);
  cursor: pointer; transition: all .25s;
  display: none; align-items: center; gap: 5px; min-height: 42px;
}
.btn-cancel-edit:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-faint); }
.form-success {
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25);
  border-radius: 10px; padding: 1rem 1.2rem; font-size: 13.5px;
  color: #166534; font-weight: 500; display: none; align-items: center; gap: 8px; margin-top: .8rem;
}
.form-error {
  background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2);
  border-radius: 8px; padding: .7rem 1rem; font-size: 12.5px;
  color: #991b1b; font-weight: 400; display: none; margin-top: .5rem;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem; margin-top: 2.5rem; align-items: stretch;
}
.review-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.8rem;
  position: relative; overflow: hidden; transition: all .4s;
  display: flex; flex-direction: column;
}
.review-card.featured { border-color: rgba(232,98,10,.28); background: linear-gradient(135deg, rgba(232,98,10,.04) 0%, var(--cream) 100%); }
.review-card::before {
  content: '\201C'; position: absolute; top: .5rem; right: 1rem;
  font-family: var(--ff-display); font-size: 5rem;
  color: rgba(232,98,10,.07); line-height: 1; pointer-events: none;
}
.review-card:hover { border-color: var(--border-warm); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(232,98,10,.09); }
.review-stars { display: flex; gap: 2px; margin-bottom: 1rem; flex-shrink: 0; }
.star { color: var(--gold); font-size: 13px; }
.review-text-wrap { flex: 1; position: relative; z-index: 1; margin-bottom: .6rem; }
.review-text {
  font-family: var(--ff-display); font-size: .98rem; font-style: italic;
  font-weight: 400; color: var(--ink); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.review-text.expanded { display: block; overflow: visible; }
.read-more-btn {
  background: none; border: none; padding: 0; margin-top: .35rem;
  font-family: var(--ff-body); font-size: 11.5px; font-weight: 600;
  letter-spacing: .5px; color: var(--saffron); cursor: pointer;
  display: none; align-items: center; gap: 4px; transition: opacity .2s;
  position: relative; z-index: 1;
}
.read-more-btn:hover { opacity: .75; }
.read-more-btn.visible { display: inline-flex; }
.review-author {
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid var(--border); padding-top: 1rem; margin-top: auto; flex-shrink: 0;
}
.rev-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(232,98,10,.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-body); font-size: 12px; font-weight: 700;
  color: var(--saffron); flex-shrink: 0; overflow: hidden;
}
.rev-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.rev-name { font-family: var(--ff-body); font-size: 13px; font-weight: 600; color: var(--ink); }
.rev-detail { font-size: 11px; color: var(--ink-dim); font-weight: 300; }
.rev-date { font-size: 10px; color: var(--ink-dim); font-weight: 300; margin-top: 1px; }
.rev-verified {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 9px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  color: var(--saffron); background: rgba(232,98,10,.07);
  border: 1px solid rgba(232,98,10,.2); padding: 1px 6px; border-radius: 20px; margin-left: 4px;
}
.rev-edit-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(232,98,10,.08); border: 1px solid var(--border-warm);
  border-radius: 6px; padding: .32rem .75rem;
  font-family: var(--ff-body); font-size: 11px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; color: var(--saffron);
  cursor: pointer; transition: all .2s; margin-left: auto; flex-shrink: 0; white-space: nowrap; min-height: 32px;
}
.rev-edit-btn:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,98,10,.25); }
.review-skeleton {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.8rem; overflow: hidden; position: relative;
}
.review-skeleton::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,.5) 50%, transparent 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
.skel-line { height: 12px; background: var(--surface2); border-radius: 6px; margin-bottom: .7rem; }
.skel-line.short { width: 40%; }
.skel-line.medium { width: 70%; }
.skel-line.long { width: 90%; }
.skel-circle { width: 38px; height: 38px; border-radius: 50%; background: var(--surface2); }
.reviews-show-more-wrap {
  display: flex; flex-direction: column; align-items: center; margin-top: 2.5rem; gap: .7rem;
}
.btn-show-more {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1.5px solid var(--border-warm);
  border-radius: 40px; padding: .75rem 2rem;
  font-family: var(--ff-body); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--saffron); cursor: pointer; transition: all .3s;
}
.btn-show-more:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,98,10,.2); }
.btn-show-more:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.show-more-count { font-size: 11.5px; color: var(--ink-dim); font-weight: 300; }
.reviews-loading-indicator {
  display: none; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-dim); font-style: italic; margin-top: .8rem;
}
.reviews-loading-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--saffron); animation: pulse .8s ease-in-out infinite; }
.reviews-loading-dot:nth-child(2) { animation-delay: .15s; }
.reviews-loading-dot:nth-child(3) { animation-delay: .3s; }

/* ═══════════════════════════════════
   WHY CHOOSE
═══════════════════════════════════ */
.why-section { background: var(--surface); position: relative; overflow: hidden; }
.why-section::before {
  content: 'WHY'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--ff-display); font-size: min(28vw, 220px); font-weight: 700;
  color: rgba(232,98,10,.025); pointer-events: none; white-space: nowrap; letter-spacing: -5px;
}
.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: .8rem; margin-top: 2.5rem; position: relative; z-index: 2;
}
.why-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem 1rem;
  text-align: center; transition: all .3s; cursor: default;
}
.why-card:hover {
  border-color: var(--saffron); background: var(--saffron);
  transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 32px rgba(232,98,10,.15);
}
.why-card:hover .why-title { color: #fff; }
.why-icon { font-size: 1.8rem; margin-bottom: .7rem; display: block; }
.why-title { font-family: var(--ff-body); font-size: 12px; font-weight: 600; color: var(--ink); letter-spacing: .2px; line-height: 1.3; transition: color .3s; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-section { background: var(--cream); }
.faq-wrap { max-width: 740px; margin: 2.5rem auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: .65rem; transition: border-color .2s; }
.faq-item.open { border-color: var(--border-warm); }
.faq-q {
  padding: 1.1rem 1.3rem; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; background: var(--cream); user-select: none; transition: background .2s; gap: 1rem; min-height: 52px;
}
.faq-q:hover { background: var(--warm-white); }
.faq-q-text { font-family: var(--ff-body); font-size: 14.5px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--saffron); flex-shrink: 0;
  transition: all .3s; background: rgba(232,98,10,.06);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--saffron); color: #fff; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: var(--warm-white); }
.faq-item.open .faq-body { max-height: 220px; }
.faq-body-inner { padding: 1.1rem 1.3rem; font-size: 13.5px; color: var(--ink-soft); font-weight: 300; line-height: 1.75; }

/* ═══════════════════════════════════
   CTA BAND
═══════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--saffron-deep) 0%, var(--saffron) 55%, var(--gold) 100%);
  text-align: center; padding: 4rem var(--px); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%); pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.4); border-radius: 30px; padding: .35rem 1rem;
  background: rgba(255,255,255,.1);
}
.cta-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.cta-badge span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #fff; font-weight: 600; }
.cta-title { font-family: var(--ff-display); font-size: clamp(1.7rem, 5vw, 3.2rem); font-weight: 700; color: #fff; margin-bottom: .8rem; line-height: 1.15; }
.cta-title em { font-style: italic; color: rgba(255,255,255,.82); }
.cta-desc { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 2rem; font-weight: 300; }
.cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: #fff; color: var(--saffron); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.cta-section .btn-primary:hover { background: var(--warm-white); }
.cta-section .btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.cta-section .btn-outline:hover { background: rgba(255,255,255,.12); }

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact-section { background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1000px; margin: 0 auto; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.8rem; }
.contact-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.3rem;
  display: flex; align-items: center; gap: 1rem;
  transition: all .25s; text-decoration: none; color: inherit;
}
.contact-card:hover { border-color: var(--border-warm); transform: translateX(4px); background: var(--warm-white); }
.contact-icon-wrap {
  width: 44px; height: 44px; background: rgba(232,98,10,.1);
  border: 1px solid var(--border); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; transition: all .25s; min-width: 44px;
}
.contact-card:hover .contact-icon-wrap { background: var(--saffron); border-color: var(--saffron); }
.contact-lbl { font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-bottom: .15rem; }
.contact-val { font-size: 14px; color: var(--ink); font-weight: 400; line-height: 1.4; word-break: break-word; }
.contact-val small { font-size: 11.5px; color: var(--ink-dim); font-weight: 300; }
.contact-cta-box {
  background: linear-gradient(135deg, var(--saffron-deep), var(--saffron));
  border-radius: 20px; padding: 2.5rem 2rem; color: #fff;
  box-shadow: 0 20px 50px rgba(232,98,10,.25);
}
.ccta-title { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 700; line-height: 1.2; margin-bottom: .7rem; }
.ccta-title em { font-style: italic; color: rgba(255,255,255,.8); }
.ccta-desc { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 300; line-height: 1.7; margin-bottom: 1.8rem; }
.ccta-actions { display: flex; flex-direction: column; gap: .8rem; }
.ccta-btn {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 10px; padding: 1rem 1.3rem;
  color: #fff; text-decoration: none; font-family: var(--ff-body);
  font-size: 14px; font-weight: 600; transition: all .25s; word-break: break-all;
}
.ccta-btn:hover { background: rgba(255,255,255,.22); transform: translateX(3px); }
.ccta-btn-icon { font-size: 1.2rem; flex-shrink: 0; }
.ccta-btn-lbl { font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .7; margin-top: 1px; display: block; }
.ccta-motto { margin-top: 1.8rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.2); font-family: var(--ff-italic); font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,.75); text-align: center; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer { background: var(--ink); color: var(--cream); padding: 3rem var(--px) 2rem; width: 100%; overflow: hidden; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.8rem; max-width: 1200px; margin-inline: auto;
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: .7rem; }
.footer-logo-img { width: 38px; height: 38px; min-width: 38px; border-radius: 8px; object-fit: contain; border: 1px solid rgba(255,255,255,.1); }
.footer-brand-name { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: #fff; }
.footer-brand-sub { font-size: 9px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--saffron-light); }
.footer-brand p { font-size: 12.5px; color: rgba(255,255,255,.5); font-weight: 300; max-width: 230px; line-height: 1.65; margin-top: .4rem; }
.footer-motto { font-family: var(--ff-italic); font-style: italic; font-size: .9rem; color: var(--saffron-light) !important; margin-top: .8rem !important; }
.footer-col-title { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--saffron-light); font-weight: 600; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { text-decoration: none; font-size: 12.5px; color: rgba(255,255,255,.5); transition: color .2s; font-weight: 300; }
.footer-links a:hover { color: var(--saffron-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem; max-width: 1200px; margin-inline: auto; }
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,.3); }
.footer-copy span { color: var(--saffron-light); }
.footer-tagline { font-family: var(--ff-italic); font-style: italic; font-size: 11.5px; color: rgba(255,255,255,.3); }
.footer-love { font-size: 11.5px; color: rgba(255,255,255,.3); display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.footer-love .heart { display: inline-block; color: #e8404a; font-size: 13px; animation: heartbeat 1.4s ease-in-out infinite; line-height: 1; }
.footer-love strong { color: var(--saffron-light); font-weight: 600; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { gap: 3rem; }
  .result-stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .facility-bar { display: none; }
  nav { top: 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 3rem var(--px); }
  .hero { padding: 6rem var(--px) 4rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 340px; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual-wrap { max-width: 420px; margin: 0 auto; width: 100%; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .review-card { padding: 1.4rem 1.2rem; }
  .review-text { font-size: .9rem; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-auth-bar { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .review-form-wrap { padding: 1.5rem; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .btn-submit-review { width: 100%; justify-content: center; }
  .btn-cancel-edit { width: 100%; justify-content: center; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-love { justify-content: center; }
  .result-stats { grid-template-columns: 1fr 1fr; }
  .promo-nav-btn { width: 36px; height: 36px; font-size: .9rem; }
}

@media (max-width: 480px) {
  :root { --px: 1rem; }
  section { padding: 2.5rem var(--px); }
  .hero { padding: 5rem var(--px) 3.5rem; }
  .hero-title { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero-eyebrow { font-size: clamp(1rem, 4vw, 1.4rem); }
  .hero-tagline { font-size: 13px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
  .hero-pills { gap: .4rem; }
  .hero-pill { font-size: 10px; padding: .28rem .7rem; }
  .sec-title { font-size: clamp(1.4rem, 7vw, 1.9rem); }
  .sec-sub { font-size: 13px; }
  .about-visual-wrap { max-width: 100%; }
  .about-badge { bottom: -.7rem; right: -.5rem; padding: .7rem 1rem; }
  .about-badge-num { font-size: 1.4rem; }
  .fac-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .toppers-grid { grid-template-columns: 1fr; }
  .subjects-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .result-stats { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: .9rem; }
  .review-card { padding: 1.3rem 1.1rem; border-radius: 12px; }
  .review-text { font-size: .9rem; line-height: 1.6; }
  .review-text-wrap { margin-bottom: .8rem; }
  .review-stars { margin-bottom: .7rem; }
  .rev-name { font-size: 12.5px; }
  .rev-detail { font-size: 10.5px; }
  .rev-av { width: 34px; height: 34px; font-size: 11px; }
  .rev-verified { font-size: 8.5px; padding: 1px 5px; }
  .rev-edit-btn { font-size: 9px; padding: .22rem .5rem; }
  .review-card::before { font-size: 3.5rem; }
  .reviews-auth-bar { padding: .9rem 1rem; gap: .7rem; }
  .review-form-wrap { padding: 1.2rem 1rem; border-radius: 12px; }
  .review-form-title { font-size: 1.05rem; margin-bottom: 1rem; }
  .form-input, .form-textarea, .form-select { font-size: 13px; padding: .65rem .85rem; }
  .form-textarea { min-height: 90px; }
  .form-label { font-size: 10px; }
  .star-picker-btn { font-size: 1.3rem; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .btn-submit-review { width: 100%; justify-content: center; font-size: 11px; padding: .7rem 1.2rem; }
  .btn-cancel-edit { width: 100%; justify-content: center; font-size: 11px; }
  .review-submit-note { font-size: 11px; }
  .btn-show-more { padding: .65rem 1.5rem; font-size: 11px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary, .cta-actions .btn-outline { width: 100%; max-width: 280px; }
  .rstat-num { font-size: 1.7rem; }
  .topper-score { font-size: 1.8rem; }
  .faq-q-text { font-size: 13px; }
  .faq-body-inner { font-size: 12.5px; }
  .contact-val { font-size: 13px; }
  .ccta-title { font-size: 1.4rem; }
  .promo-nav-btn { width: 32px; height: 32px; font-size: .8rem; }
  .promo-nav-prev { left: .5rem; }
  .promo-nav-next { right: .5rem; }
  .promo-dots { bottom: .6rem; }
  .promo-dot { width: 6px; height: 6px; }
  .promo-dot.active { width: 16px; }
}

@media (max-width: 360px) {
  :root { --px: .85rem; }
  .hero-title { font-size: 1.9rem; }
  .nav-name { font-size: 12.5px; }
  .hero-badge span { font-size: 9px; letter-spacing: 1px; }
  .reviews-grid { gap: .7rem; }
  .review-card { padding: 1.1rem .9rem; }
}
.footer-author {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-author:hover {
    color: #E8620A;
    text-decoration: underline;
}
