/* =========================================================================
   LIC PUNE — BRANCH 955 | DESIGN SYSTEM
   Palette derived from the official logo: LIC Navy + Gold background +
   Orange-Red badge. Fonts: Playfair Display (display) + DM Sans (body).
   ========================================================================= */

:root {
  --navy: #122A63;
  --navy-deep: #0A1B44;
  --navy-light: #2C4A8C;
  --gold: #FCC419;
  --gold-light: #FFD23A;
  --gold-deep: #E8A820;
  --cream: #FFFBF0;
  --cream-alt: #FDF6E3;
  --orange: #F0501F;
  --orange-light: #FF7A45;
  --red-deep: #C21F1F;
  --white: #FFFFFF;
  --ink: #1B2333;
  --ink-soft: #4A5468;
  --border: #E7E1D0;
  --success: #1B6B3A;
  --whatsapp: #25D366;
  --shadow-sm: 0 2px 10px rgba(18,42,99,.06);
  --shadow-md: 0 10px 30px rgba(18,42,99,.10);
  --shadow-lg: 0 20px 60px rgba(18,42,99,.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --container: 1180px;
}

html[data-lang="mr"], html[data-lang="hi"] {
  --font-body: 'DM Sans', 'Noto Sans Devanagari', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0; font-family: var(--font-body); background: var(--cream);
  color: var(--ink); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .4em; color: var(--navy); line-height: 1.2; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
svg { width: 1em; height: 1em; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 10px 18px;
  z-index: 9999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===================== LOADER ===================== */
.loader {
  position: fixed; inset: 0; background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center; z-index: 10000;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 90px; height: 90px; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.1); } }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px; font-weight: 700; font-size: 15px;
  border: none; transition: all .25s ease; white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-whatsapp:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 500; background: rgba(255,251,240,.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0; }
.brand-text { font-family: var(--font-display); font-size: 15px; color: var(--navy); line-height: 1.15; display: flex; flex-direction: column; }
.brand-text strong { font-size: 19px; }
.brand-text small { font-family: var(--font-body); font-weight: 600; font-size: 10px; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; }

.main-nav { display: flex; gap: 26px; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); transition: color .2s; position: relative; }
.main-nav a:hover { color: var(--navy); }
.main-nav a::after { content:''; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:var(--gold-deep); transition: width .25s; }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 4px; background: var(--white); border: 1px solid var(--border); border-radius: 30px; padding: 3px; }
.lang-btn { display: flex; align-items: center; gap: 5px; border: none; background: transparent; padding: 6px 12px; border-radius: 24px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); transition: all .2s; }
.lang-btn.active { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff; box-shadow: var(--shadow-sm); }
.lang-btn:hover:not(.active) { background: var(--cream-alt); }
.hamburger { display: none; background: none; border: none; padding: 8px; color: var(--navy); }
.hamburger svg { width: 26px; height: 26px; }

@media (max-width: 980px) {
  .main-nav, .header-cta, .header-actions .lang-switch { display: none; }
  .hamburger { display: inline-flex; }
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: min(340px, 86vw); height: 100vh; background: var(--cream);
  z-index: 900; padding: 22px; transition: right .35s ease; box-shadow: -20px 0 60px rgba(0,0,0,.2);
  display: flex; flex-direction: column; gap: 26px; overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { padding: 13px 6px; font-weight: 700; color: var(--navy); border-bottom: 1px solid var(--border); font-size: 15px; }
.mobile-nav .btn { margin-top: 12px; text-align: center; }
.lang-switch-mobile { justify-content: center; }
.mobile-menu-backdrop {
  position: fixed; inset: 0; background: rgba(10,27,68,.5); z-index: 850; opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu-backdrop.open { opacity: 1; visibility: visible; }

/* ===================== HERO ===================== */
.hero { position: relative; padding: 64px 24px 40px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35; }
.blob-gold { width: 480px; height: 480px; background: var(--gold); top: -180px; right: -120px; }
.blob-navy { width: 420px; height: 420px; background: var(--navy-light); bottom: -160px; left: -140px; opacity: .18; }
.hero-grid-pattern {
  position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(18,42,99,.06) 1.4px, transparent 1.4px);
  background-size: 26px 26px; mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.eyebrow { font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.hero-title {
  font-size: clamp(38px, 6vw, 68px); font-weight: 900; color: var(--navy); line-height: 1.02; margin-bottom: 10px;
  letter-spacing: -.01em;
}
.hero-subhead { font-size: clamp(18px, 2.3vw, 24px); font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.hero-rotating { font-size: clamp(17px, 2vw, 21px); font-weight: 600; margin-bottom: 18px; display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; }
.hero-rotating-prefix { color: var(--ink-soft); }
.hero-rotating-word {
  color: var(--orange); font-family: var(--font-display); font-weight: 700; font-style: italic;
  border-bottom: 3px solid var(--gold); padding-bottom: 2px; transition: opacity .35s ease;
}
.hero-rotating-word.fade { opacity: 0; }
.hero-desc { font-size: 17px; color: var(--ink-soft); max-width: 560px; margin-bottom: 20px; }
.hero-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hero-bullets li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px; }
.hero-bullets svg { color: var(--success); width: 20px; height: 20px; flex-shrink: 0; background: rgba(27,107,58,.1); border-radius: 50%; padding: 3px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.scroll-hint { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }

.hero-visual { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
.hero-card {
  position: absolute; background: rgba(255,255,255,.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 20px;
}
.hero-card-main {
  width: 280px; text-align: center; background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(255,251,240,.85));
  padding: 34px 22px;
}
.hero-card-logo { width: 84px; height: 84px; margin: 0 auto 16px; border-radius: 16px; box-shadow: var(--shadow-md); }
.hero-card-phone { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--navy); margin-bottom: 4px; letter-spacing: -.01em; }
.hero-card-branch { font-size: 12.5px; color: var(--ink-soft); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.hero-card-float { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--navy); padding: 12px 16px; animation: float 5s ease-in-out infinite; }
.hero-card-float svg { width: 20px; height: 20px; color: var(--orange); }
.hero-card-1 { top: 6%; left: 0; animation-delay: 0s; }
.hero-card-2 { bottom: 12%; left: 4%; animation-delay: 1.2s; }
.hero-card-3 { top: 42%; right: -4%; animation-delay: 2.4s; }
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }

.hero-stats {
  position: relative; z-index: 1; max-width: var(--container); margin: 56px auto 0; display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 28px 20px; border: 1px solid var(--border);
}
.stat-card { text-align: center; }
.stat-card .num { font-family: var(--font-display); font-size: clamp(26px,3vw,34px); font-weight: 800; color: var(--navy); }
.stat-card .plus { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--orange); }
.stat-card .label { display: block; font-size: 12.5px; color: var(--ink-soft); font-weight: 700; margin-top: 4px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; margin-top: 20px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
}

/* ===================== TRUST BAR ===================== */
.trust-bar { background: var(--navy); padding: 16px 24px; overflow: hidden; }
.trust-bar-inner { max-width: var(--container); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; }
.trust-item { color: rgba(255,255,255,.88); font-size: 13px; font-weight: 600; position: relative; padding-left: 18px; }
.trust-item::before { content:''; position:absolute; left:0; top:50%; transform: translateY(-50%); width:8px; height:8px; border-radius:50%; background: var(--gold); }

/* ===================== SECTIONS ===================== */
.section { padding: 84px 24px; }
.section-alt { background: var(--cream-alt); }
.section-navy { background: linear-gradient(155deg, var(--navy-deep), var(--navy)); color: #fff; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.tag {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); background: rgba(240,80,31,.09); padding: 6px 16px; border-radius: 30px; margin-bottom: 16px;
}
.tag-light { background: rgba(255,255,255,.12); color: var(--gold-light); }
.section-title { font-size: clamp(28px,3.6vw,42px); font-weight: 800; margin-bottom: 16px; max-width: 780px; }
.title-light { color: #fff; }
.section-intro { font-size: 16.5px; color: var(--ink-soft); max-width: 700px; margin-bottom: 40px; }
.intro-light { color: rgba(255,255,255,.78); }

/* Reveal animation */
.section, .hero-stats { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.section.revealed, .hero-stats.revealed { opacity: 1; transform: translateY(0); }

/* ===================== GRIDS / CARDS ===================== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.grid-5 { grid-template-columns: repeat(5,1fr); }
@media (max-width: 980px) { .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2,1fr); } .two-col { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card h3, .card h4 { color: var(--navy); }
.card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.icon-card svg { width: 36px; height: 36px; color: var(--orange); margin-bottom: 14px; }
.card-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--gold-deep); opacity: .7; display: block; margin-bottom: 6px; }

.chip-grid { gap: 18px; }
.chip-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; border-left: 4px solid var(--gold-deep); }
.chip-card h4 { font-size: 15.5px; margin-bottom: 6px; }
.chip-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

.stream-card { border-top: 4px solid var(--orange); }

/* ===================== CALCULATOR ===================== */
.calculator-card {
  background: linear-gradient(155deg, var(--navy-deep), var(--navy)); color: #fff; border-radius: var(--radius-lg);
  padding: 36px; margin: 40px 0 16px;
}
.calculator-card h3 { color: #fff; margin-bottom: 22px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 24px; align-items: end; }
.calc-input label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: rgba(255,255,255,.85); }
.calc-input input[type="range"] { width: 100%; accent-color: var(--gold); }
.calc-input output { font-weight: 800; color: var(--gold-light); margin-left: 8px; }
.calc-input select { width: 100%; padding: 10px 12px; border-radius: 8px; border: none; font-family: inherit; }
.calc-result { background: rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 16px 20px; text-align: center; }
.calc-result-label { font-size: 12.5px; margin-bottom: 6px; color: rgba(255,255,255,.75); }
.calc-result-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--gold-light); margin: 0; }
@media (max-width: 760px) { .calc-grid { grid-template-columns: 1fr; } }

.fine-print { font-size: 12.5px; color: var(--ink-soft); }
.disclaimer { border-left: 3px solid var(--gold-deep); padding-left: 14px; margin-top: 20px; }

/* ===================== COMMISSION TABLE ===================== */
.commission-table { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.commission-row {
  display: flex; justify-content: space-between; gap: 20px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px 24px; align-items: center;
}
.commission-year { font-weight: 800; color: var(--navy); min-width: 220px; }
@media (max-width: 640px) { .commission-row { flex-direction: column; align-items: flex-start; gap: 6px; } }

/* ===================== TIMELINE ===================== */
.timeline { position: relative; display: flex; flex-direction: column; gap: 30px; padding-left: 30px; border-left: 3px solid var(--border); }
.timeline-item { position: relative; }
.timeline-dot { position: absolute; left: -38px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--orange); }
.timeline-item h4 { margin-bottom: 4px; }
.timeline-item p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

/* ===================== STEP GRID / PROCESS FLOW ===================== */
.step-grid { gap: 18px; }
.step-card { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--border); padding: 22px; text-align: center; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-family: var(--font-display); margin-bottom: 12px;
}
.step-card h4 { font-size: 15px; }
.step-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

.process-flow { display: grid; grid-template-columns: repeat(7,1fr); gap: 14px; }
.process-step { text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 12px; position: relative; }
.process-step h4 { font-size: 13.5px; margin-bottom: 4px; }
.process-step p { font-size: 12px; color: var(--ink-soft); margin: 0; }
@media (max-width: 1100px) { .process-flow { grid-template-columns: repeat(4,1fr); } .step-grid.grid-5 { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .process-flow { grid-template-columns: repeat(2,1fr); } .step-grid.grid-5 { grid-template-columns: repeat(2,1fr); } }

/* ===================== DOCUMENTS / ELIGIBILITY ===================== */
.doc-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.doc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; font-weight: 600; }
.doc-list svg { color: var(--success); width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.mini-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; }
.mini-card h4 { font-size: 14.5px; margin-bottom: 4px; }
.mini-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.checker-card { background: var(--white); border: 2px solid var(--gold-deep); border-radius: var(--radius-md); padding: 22px; margin-top: 20px; }
.checker-row { display: flex; gap: 20px; margin-bottom: 12px; font-size: 14px; }
.checker-row label { display: flex; align-items: center; gap: 6px; }
.checker-result { margin-top: 14px; padding: 12px 16px; border-radius: 10px; background: rgba(27,107,58,.1); color: var(--success); font-weight: 700; font-size: 14px; }
.checker-result.no { background: rgba(194,31,31,.08); color: var(--red-deep); }

/* ===================== STORY / TESTIMONIAL CARDS ===================== */
.story-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); padding: 28px; box-shadow: var(--shadow-sm); }
.quote { font-style: italic; color: var(--ink); font-size: 15px; margin-bottom: 16px; }
.story-card h4 { margin-bottom: 2px; font-size: 15.5px; }
.story-card span { font-size: 12.5px; color: var(--ink-soft); font-weight: 700; }

/* ===================== MENTOR ===================== */
.mentor-visual { display: flex; align-items: center; justify-content: center; }
.mentor-visual svg { width: 140px; height: 140px; color: var(--gold-light); opacity: .9; }
.mentor-name { color: #fff; font-size: 22px; margin-bottom: 4px; }
.mentor-role { color: var(--gold-light); font-weight: 700; font-size: 13.5px; margin-bottom: 18px; }
.mentor-bio { color: rgba(255,255,255,.82); font-size: 15.5px; margin-bottom: 18px; }
.mentor-quote { font-style: italic; font-family: var(--font-display); font-size: 19px; color: var(--gold-light); }

/* ===================== BRANCH 955 STORY ===================== */
.branch-story { text-align: center; background: radial-gradient(circle at 50% 0%, rgba(252,196,25,.18), transparent 60%); }
.phone-display { margin: 30px 0; }
.phone-big {
  display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(28px,5vw,46px);
  background: linear-gradient(135deg, var(--navy), var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: .01em;
}
.phone-real { display: block; font-weight: 700; color: var(--ink-soft); margin-top: 6px; font-size: 15px; }
.branch-story-title { font-size: 22px; margin: 10px auto 18px; }
.branch-story-text { max-width: 720px; margin: 0 auto 26px; text-align: left; }
.branch-story-text p { color: var(--ink-soft); font-size: 15.5px; }

/* ===================== PUNE AREAS ===================== */
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.area-chips span { background: var(--white); border: 1px solid var(--border); padding: 9px 18px; border-radius: 30px; font-size: 13.5px; font-weight: 700; color: var(--navy); }

/* ===================== DAY TIMELINE ===================== */
.day-timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.day-item { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--border); padding: 22px; border-top: 3px solid var(--gold-deep); }
.day-item h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--orange); margin-bottom: 8px; }
.day-item p { font-size: 14px; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .day-timeline { grid-template-columns: repeat(2,1fr); } }

/* ===================== AWARDS ===================== */
.awards-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.awards-list li { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 20px; font-weight: 700; font-size: 14.5px; }
.awards-list svg { color: var(--gold-deep); width: 26px; height: 26px; flex-shrink: 0; }
@media (max-width: 640px) { .awards-list { grid-template-columns: 1fr; } }

/* ===================== GALLERY ===================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-tile {
  margin: 0; aspect-ratio: 4/3; border-radius: var(--radius-sm); position: relative; overflow: hidden;
  display: flex; align-items: flex-end; background-size: cover; background-position: center;
}
.gallery-tile::before { content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(10,27,68,.75), transparent 60%); }
.gallery-tile figcaption { position: relative; color: #fff; font-weight: 700; font-size: 13.5px; padding: 14px; }
.gt-1 { background-color: #cbd6f2; background-image: linear-gradient(135deg,#8fa3d9,#4a5f9e); }
.gt-2 { background-color: #f5d9a8; background-image: linear-gradient(135deg,var(--gold-light),var(--gold-deep)); }
.gt-3 { background-color: #f2b8a3; background-image: linear-gradient(135deg,var(--orange-light),var(--orange)); }
.gt-4 { background-color: #a8c5d9; background-image: linear-gradient(135deg,#7c98c9,var(--navy-light)); }
.gt-5 { background-color: #d9c7a8; background-image: linear-gradient(135deg,#e8c98a,var(--gold-deep)); }
.gt-6 { background-color: #cba8d9; background-image: linear-gradient(135deg,var(--navy-light),var(--navy)); }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }

/* ===================== VIDEOS ===================== */
.video-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; padding-bottom: 20px; }
.video-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 40px; margin-bottom: 16px; }
.video-card h4 { padding: 0 20px; font-size: 15px; }
.video-card p { padding: 0 20px; font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* ===================== TESTIMONIAL SLIDER ===================== */
.testimonial-slider { position: relative; max-width: 720px; margin: 0 auto 20px; min-height: 160px; }
.testimonial-slide { display: none; text-align: center; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); padding: 32px; }
.testimonial-slide.active { display: block; animation: fadeIn .5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 50px; }
.slider-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--border); padding: 0; }
.slider-dots button.active { background: var(--orange); width: 22px; border-radius: 6px; }

.google-reviews-card { max-width: 460px; margin: 0 auto; text-align: center; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 32px; box-shadow: var(--shadow-sm); }
.google-reviews-card h3 { font-size: 19px; }
.stars { display: flex; justify-content: center; gap: 4px; color: var(--gold-deep); margin-bottom: 10px; }
.stars svg { width: 22px; height: 22px; }

/* ===================== PLANS / BLOG ===================== */
.plan-card { border-top: 4px solid var(--navy); }
.blog-card a { display: inline-block; margin-top: 10px; font-weight: 700; color: var(--orange); font-size: 13.5px; }

/* ===================== FAQ ACCORDION ===================== */
.accordion { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.accordion-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px;
  background: none; border: none; text-align: left; font-weight: 700; font-size: 15px; color: var(--navy);
}
.accordion-trigger svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; transition: transform .3s ease; }
.accordion-item.open .accordion-trigger svg { transform: rotate(90deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-panel p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.accordion-item.open .accordion-panel { max-height: 400px; }

/* ===================== LEAD FORM ===================== */
.lead-form { background: rgba(255,255,255,.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 34px; max-width: 900px; }
.form-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.85); }
.form-group input, .form-group select {
  padding: 12px 14px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.92);
  font-family: inherit; font-size: 14px; color: var(--ink); transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--gold-deep); }
.checkbox-inline .mini-check { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75); margin-top: 4px; }
.consent-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: rgba(255,255,255,.85); margin-bottom: 22px; }
.consent-check input { margin-top: 3px; }
.form-error { color: #ffb4b4; font-weight: 700; font-size: 13.5px; margin-top: 12px; }
@media (max-width: 900px) { .form-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } .lead-form { padding: 22px; } }

/* ===================== CONTACT ===================== */
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-list strong { display: block; font-size: 13px; color: var(--navy); }
.contact-list span { font-size: 14.5px; color: var(--ink-soft); }
.contact-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; min-height: 320px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.8); padding: 60px 24px 20px; }
.footer-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .brand-logo { width: 54px; height: 54px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.6); max-width: 240px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer-col a, .footer-col span { color: rgba(255,255,255,.65); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { max-width: var(--container); margin: 40px auto 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; text-align: center; font-size: 12.5px; color: rgba(255,255,255,.5); }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

/* ===================== FLOATING WHATSAPP ===================== */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; width: 62px; height: 62px; background: var(--whatsapp); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,.5);
  z-index: 400; animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse { 0%,100%{ box-shadow: 0 10px 30px rgba(37,211,102,.5);} 50%{ box-shadow: 0 10px 30px rgba(37,211,102,.85), 0 0 0 10px rgba(37,211,102,.15);} }

/* ===================== EXIT POPUP / MODALS ===================== */
.exit-popup, .modal {
  position: fixed; inset: 0; background: rgba(10,27,68,.6); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.exit-popup-card, .modal-card {
  background: var(--cream); border-radius: var(--radius-lg); padding: 40px; max-width: 440px; width: 100%; text-align: center;
  position: relative; box-shadow: var(--shadow-lg); animation: fadeIn .35s ease;
}
.modal-card-wide { max-width: 640px; text-align: left; max-height: 80vh; overflow-y: auto; }
.exit-popup-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--ink-soft); }
.exit-popup-close svg { width: 22px; height: 22px; }
.exit-popup-logo, .modal-logo { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 14px; }
.popup-dismiss { background: none; border: none; color: var(--ink-soft); font-size: 13px; margin-top: 14px; text-decoration: underline; }
.legal-text { font-size: 14px; color: var(--ink-soft); white-space: pre-line; }

/* ===================== MISC / UTIL ===================== */
::selection { background: var(--gold); color: var(--navy); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

@media print { .whatsapp-float, .site-header, .mobile-menu, .exit-popup { display: none !important; } }
