/* ═══════════════════════════════════════════════════════════════
   BRIGHT CAREER SPECIAL ACADEMY SAGAR — Premium Stylesheet
   Palette: Royal Navy #0B1F4D · Academic Gold #D4A017 · Sky #0099CC
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────── Design tokens ─────────────── */
:root {
  --navy: #0B1F4D;
  --navy-deep: #071536;
  --navy-soft: #14306e;
  --gold: #D4A017;
  --gold-light: #F0C24B;
  --gold-deep: #A87D0E;
  --sky: #0099CC;
  --bg: #F8FAFC;
  --card: #FFFFFF;
  --ink: #1E293B;
  --ink-soft: #475569;
  --ink-faint: #94A3B8;
  --line: #E2E8F0;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(11, 31, 77, 0.06), 0 2px 8px rgba(11, 31, 77, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 31, 77, 0.08), 0 12px 32px rgba(11, 31, 77, 0.10);
  --shadow-lg: 0 8px 24px rgba(11, 31, 77, 0.12), 0 24px 64px rgba(11, 31, 77, 0.14);
  --shadow-gold: 0 6px 20px rgba(212, 160, 23, 0.35);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius: 14px;
  --radius-lg: 22px;

  --header-h: 78px;
  --topbar-h: 38px;
}

/* ─────────────── Reset & base ─────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.container {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
}

::selection { background: var(--gold); color: var(--navy); }

body.menu-open { overflow: hidden; }

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.55rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.015em;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
  white-space: nowrap;
}

.btn svg { transition: transform 0.3s var(--ease-out); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

.btn--lg { padding: 1rem 2rem; font-size: 0.97rem; }

/* Gold gradient CTA */
.btn--gold {
  color: var(--navy-deep);
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  background-size: 160% 100%;
  box-shadow: var(--shadow-gold);
}
.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-out);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212, 160, 23, 0.45);
  background-position: 100% 0;
}
.btn--gold:hover::after { transform: translateX(110%); }

/* Glass ghost button */
.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Navy solid */
.btn--navy {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  box-shadow: var(--shadow-md);
}
.btn--navy:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════ */
.topbar {
  height: var(--topbar-h);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  position: relative;
  z-index: 60;
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__left { display: flex; gap: 1.5rem; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s ease;
}
.topbar__item:hover { color: var(--gold-light); }
.topbar__item svg { color: var(--gold); }
.topbar__badge {
  display: inline-block;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(212, 160, 23, 0.18), rgba(212, 160, 23, 0.08));
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(212, 160, 23, 0); }
}

/* ═══════════════════════════════════════════════
   HEADER  (sticky, transparent → glass)
   ═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  transition: top 0.4s var(--ease-out), background 0.4s ease, box-shadow 0.4s ease,
              backdrop-filter 0.4s ease, height 0.4s var(--ease-out);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

/* gold accent hairline at the base of the header (fades in on scroll) */
.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 160, 23, 0.55) 30%, rgba(0, 153, 204, 0.45) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.header.is-scrolled::after { opacity: 1; }

/* scroll-progress bar (element injected by main.js) */
.header__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light) 60%, var(--sky));
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}
.header.is-scrolled .header__progress { opacity: 1; }

/* scrolled state — premium glassmorphism */
.header.is-scrolled {
  top: 0;
  height: 66px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  box-shadow: 0 1px 0 rgba(11, 31, 77, 0.05), 0 12px 44px rgba(11, 31, 77, 0.12);
}
.header.is-scrolled .brand__logo { width: 46px; }

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.brand__logo {
  width: 52px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  transition: transform 0.5s var(--ease-spring), filter 0.4s ease, width 0.4s var(--ease-out);
}
.brand:hover .brand__logo {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 4px 14px rgba(212, 160, 23, 0.5));
}
.brand__text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: #fff;
  transition: color 0.35s ease;
  white-space: nowrap;
}
.brand__place {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color 0.35s ease;
}
.header.is-scrolled .brand__name { color: var(--navy); }
.header.is-scrolled .brand__place { color: var(--gold-deep); }

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease, background 0.3s ease;
}
/* centred underline that grows from the middle */
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transition: width 0.32s var(--ease-out);
}
.nav__link:hover::after,
.nav__link.is-active::after { width: calc(100% - 1.4rem); }
.nav__link:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.nav__link.is-active { color: #fff; }

.header.is-scrolled .nav__link { color: var(--ink-soft); }
.header.is-scrolled .nav__link:hover { color: var(--navy); background: rgba(11, 31, 77, 0.06); }
.header.is-scrolled .nav__link.is-active { color: var(--navy); background: rgba(212, 160, 23, 0.1); }

/* comfortable breathing room on large desktops */
@media (min-width: 1281px) {
  .nav__list { gap: 0.3rem; }
  .nav__link { padding: 0.55rem 0.9rem; font-size: 0.9rem; }
}

.nav__caret { transition: transform 0.3s var(--ease-out); }
.nav__item--dropdown:hover .nav__caret,
.nav__item--dropdown:focus-within .nav__caret { transform: rotate(180deg); }

/* Dropdown */
.nav__item--dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 240px;
  padding: 0.6rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px) scale(0.97);
  transform-origin: top center;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
}
.dropdown::before {
  /* invisible hover bridge */
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}
.dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s var(--ease-out);
}
.dropdown__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}
.dropdown__link:hover {
  background: linear-gradient(120deg, rgba(11, 31, 77, 0.05), rgba(0, 153, 204, 0.06));
  color: var(--navy);
  padding-left: 1.15rem;
}
.dropdown__link:hover .dropdown__dot {
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.2);
}

.header__cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 11px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.hamburger:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.4); }
.header.is-scrolled .hamburger {
  border-color: rgba(11, 31, 77, 0.12);
  background: rgba(11, 31, 77, 0.04);
}
.header.is-scrolled .hamburger:hover { background: rgba(11, 31, 77, 0.08); }
.hamburger__line {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: background 0.35s ease, transform 0.35s var(--ease-out), opacity 0.25s ease, width 0.35s var(--ease-out);
}
.hamburger__line:nth-child(1) { width: 100%; }
.hamburger__line:nth-child(2) { width: 68%; }
.hamburger__line:nth-child(3) { width: 84%; }
.hamburger:hover .hamburger__line { width: 100%; }
.header.is-scrolled .hamburger__line { background: var(--navy); }

/* ═══════════════════════════════════════════════
   MOBILE MENU  (slide-in panel)
   ═══════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.55s;
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 54, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 380px);
  background: linear-gradient(170deg, #fff 0%, #F4F7FC 100%);
  box-shadow: -24px 0 80px rgba(7, 21, 54, 0.35);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 2rem;
  transform: translateX(105%);
  transition: transform 0.55s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.brand--mobile .brand__logo { width: 44px; }
.brand--mobile .brand__name { color: var(--navy); font-size: 1rem; }
.brand--mobile .brand__place { color: var(--gold-deep); }

.mobile-menu__close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(11, 31, 77, 0.05);
  transition: background 0.3s ease, transform 0.4s var(--ease-spring);
}
.mobile-menu__close:hover { background: rgba(11, 31, 77, 0.1); transform: rotate(90deg); }

.mobile-nav { display: flex; flex-direction: column; padding: 1.1rem 0; flex: 1; }
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0.65rem;
  border-radius: 12px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background 0.25s ease, padding-left 0.25s var(--ease-out), color 0.25s ease;

  /* staggered entrance */
  opacity: 0;
  transform: translateX(28px);
}
.mobile-menu.is-open .mobile-nav__link {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out),
              background 0.25s ease, padding-left 0.25s var(--ease-out), color 0.25s ease;
  transition-delay: calc(0.12s + var(--i, 0) * 0.05s), calc(0.12s + var(--i, 0) * 0.05s), 0s, 0s, 0s;
}
.mobile-nav__link:hover { background: rgba(11, 31, 77, 0.05); padding-left: 1rem; color: var(--sky); }

.mobile-nav__caret { transition: transform 0.35s var(--ease-out); }
.mobile-nav__accordion[aria-expanded="true"] .mobile-nav__caret { transform: rotate(180deg); }

.mobile-nav__sub {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s var(--ease-out), opacity 0.35s ease;
}
.mobile-nav__sub.is-open { max-height: 260px; opacity: 1; }
.mobile-nav__sublink {
  display: block;
  padding: 0.6rem 0.65rem 0.6rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-left: 2px solid var(--line);
  margin-left: 0.9rem;
  transition: color 0.25s ease, border-color 0.25s ease, padding-left 0.25s var(--ease-out);
}
.mobile-nav__sublink:hover { color: var(--gold-deep); border-color: var(--gold); padding-left: 1.85rem; }

.mobile-menu__cta { justify-content: center; margin-top: 0.5rem; }

.mobile-menu__foot {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.mobile-menu__foot a { color: var(--navy); font-weight: 600; }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: calc(var(--topbar-h) + var(--header-h));
}

.hero__bg { position: absolute; inset: 0; z-index: -1; }

.hero__image {
  position: absolute;
  inset: -4%;
  background:
    url("../assets/images/campus.jpg") center 35% / cover no-repeat,
    linear-gradient(140deg, #14306e 0%, #0B1F4D 55%, #071536 100%);
  animation: hero-zoom 26s var(--ease-out) both;
  will-change: transform;
}
@keyframes hero-zoom {
  from { transform: scale(1.14); }
  to   { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 20% 40%, rgba(11, 31, 77, 0.35) 0%, transparent 60%),
    linear-gradient(100deg,
      rgba(7, 21, 54, 0.94) 0%,
      rgba(11, 31, 77, 0.82) 38%,
      rgba(11, 31, 77, 0.55) 68%,
      rgba(11, 31, 77, 0.35) 100%),
    linear-gradient(to top, rgba(7, 21, 54, 0.9) 0%, transparent 35%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  max-width: 720px;
  margin-left: max(calc((100vw - 1200px) / 2), 1.25rem);
  padding-block: 4rem;
}

/* staggered entrance — set by JS adding .is-in to body */
[data-hero-stagger] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.hero-in [data-hero-stagger] { opacity: 1; transform: translateY(0); }
.hero-in [data-hero-stagger]:nth-child(1) { transition-delay: 0.15s; }
.hero-in [data-hero-stagger]:nth-child(2) { transition-delay: 0.3s; }
.hero-in [data-hero-stagger]:nth-child(3) { transition-delay: 0.45s; }
.hero-in [data-hero-stagger]:nth-child(4) { transition-delay: 0.6s; }
.hero-in [data-hero-stagger]:nth-child(5) { transition-delay: 0.75s; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}
.hero__eyebrow-line {
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.4rem;
}
.hero__title-accent {
  font-style: italic;
  background: linear-gradient(110deg, var(--gold-light) 10%, var(--gold) 50%, #E8B93A 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}

.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  margin-bottom: 1.9rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.3rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s var(--ease-spring), background 0.3s ease, border-color 0.3s ease;
}
.hero__badge svg { color: var(--gold-light); }
.hero__badge:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(212, 160, 23, 0.55);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}
.hero__scroll:hover { color: var(--gold-light); }
.hero__scroll-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold-light);
  animation: scroll-drip 2.2s var(--ease-out) infinite;
}
@keyframes scroll-drip {
  0% { top: -50%; }
  70%, 100% { top: 110%; }
}

/* ═══════════════════════════════════════════════
   SECTIONS — shared
   ═══════════════════════════════════════════════ */
.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.section--tint {
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(0, 153, 204, 0.05), transparent),
    linear-gradient(180deg, #F1F5FA 0%, var(--bg) 100%);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}
.section__eyebrow::before,
.section__head .section__eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0.7;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}
.section__title em {
  font-style: italic;
  background: linear-gradient(110deg, var(--gold-deep), var(--gold) 60%, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section__lead {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════ */
.stats {
  position: relative;
  z-index: 5;
  margin-top: -3.4rem;
  padding-bottom: 1rem;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.stat-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.6rem 1.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.35s ease, left 0.35s var(--ease-out), right 0.35s var(--ease-out);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-card:hover::before { opacity: 1; left: 8%; right: 8%; }

.stat-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.stat-card__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.about__media { position: relative; }
.about__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  isolation: isolate;
}
.about__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 77, 0.35), transparent 45%);
}
.about__frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
  background: linear-gradient(140deg, #14306e, #0B1F4D);
}
.about__media:hover .about__frame img { transform: scale(1.05); }

.about__chip {
  position: absolute;
  bottom: -1.4rem;
  right: -0.8rem;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  animation: chip-float 5s ease-in-out infinite;
}
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about__chip-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-deep);
}
.about__chip-text {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

.about__body .section__eyebrow::after { display: none; }

.about__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.6rem 0 2rem;
}
.about__points li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.about__points strong { color: var(--navy); font-weight: 600; }
.about__point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--navy);
  background: linear-gradient(140deg, rgba(212, 160, 23, 0.16), rgba(0, 153, 204, 0.1));
  border: 1px solid rgba(212, 160, 23, 0.25);
  transition: transform 0.35s var(--ease-spring), background 0.3s ease;
}
.about__points li:hover .about__point-icon {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(140deg, rgba(212, 160, 23, 0.28), rgba(0, 153, 204, 0.16));
}

.about__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.about__call {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.about__call-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-deep);
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  transition: transform 0.35s var(--ease-spring), background 0.3s ease;
}
.about__call:hover .about__call-icon {
  transform: scale(1.08);
  background: rgba(212, 160, 23, 0.2);
  animation: ring 0.5s ease-in-out;
}
@keyframes ring {
  0%, 100% { rotate: 0deg; }
  25% { rotate: -12deg; }
  75% { rotate: 12deg; }
}
.about__call-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.3;
}
.about__call-text small {
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════
   PILLARS
   ═══════════════════════════════════════════════ */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.pillar-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease, border-color 0.45s ease;
}
.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 31, 77, 0.03), rgba(0, 153, 204, 0.05));
  opacity: 0;
  transition: opacity 0.45s ease;
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 160, 23, 0.4);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-card__icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1.3rem;
  color: #fff;
  background: linear-gradient(140deg, var(--navy-soft), var(--navy));
  box-shadow: 0 8px 20px rgba(11, 31, 77, 0.25);
  transition: transform 0.45s var(--ease-spring), background 0.45s ease, box-shadow 0.45s ease;
}
.pillar-card:hover .pillar-card__icon {
  transform: scale(1.08) rotate(-5deg);
  background: linear-gradient(140deg, var(--gold), var(--gold-deep));
  box-shadow: var(--shadow-gold);
}
.pillar-card__title {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.pillar-card__text {
  position: relative;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 90% 20%, rgba(0, 153, 204, 0.22), transparent 60%),
    linear-gradient(130deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: #fff;
  padding-block: clamp(3.8rem, 7vw, 5.5rem);
}
.cta-band__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.22), transparent 65%);
  top: -180px;
  left: -120px;
  animation: glow-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(80px, 50px) scale(1.15); }
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-band__eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 560px;
  margin-bottom: 0.8rem;
}
.cta-band__title em {
  font-style: italic;
  background: linear-gradient(110deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cta-band__sub {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  max-width: 520px;
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.cta-band__phone {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  transition: color 0.3s ease;
}
.cta-band__phone:hover { color: var(--gold-light); }
.cta-band__phone small {
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 90% 0%, rgba(0, 153, 204, 0.10), transparent 60%),
    radial-gradient(ellipse 45% 60% at 0% 100%, rgba(212, 160, 23, 0.07), transparent 65%),
    linear-gradient(160deg, #0A1B42 0%, var(--navy-deep) 60%, #050F28 100%);
  color: rgba(255, 255, 255, 0.75);
  padding-top: clamp(3.5rem, 6vw, 5rem);
}
/* faint crest rays */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 90px);
  pointer-events: none;
}
/* gold accent line across the top */
.footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, transparent 100%);
}
.footer__grid { position: relative; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.brand--footer { align-items: flex-start; }
.brand--footer .brand__logo { width: 56px; }
.brand--footer .brand__name { color: #fff; font-size: 1.05rem; white-space: normal; }
.brand--footer .brand__place { color: var(--gold-light); }

.footer__tagline {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 500;
}
.footer__about {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

/* social icon row */
.footer__social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.3rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.4s var(--ease-spring), background 0.35s ease,
              border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.footer__social a:hover {
  transform: translateY(-4px);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.footer__social .is-ig:hover { background: linear-gradient(45deg, #F58529, #DD2A7B 55%, #8134AF); }
.footer__social .is-fb:hover { background: #1877F2; }
.footer__social .is-yt:hover { background: #FF0000; }
.footer__social .is-wa:hover { background: linear-gradient(140deg, #2BC65A, #1DA851); }

.footer__heading {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a {
  font-size: 0.89rem;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}
.footer__links a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-spring);
}
.footer__links a:hover { color: var(--gold-light); transform: translateX(5px); }
.footer__links a:hover::before { opacity: 1; transform: scale(1.4); }

.footer__contact { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.89rem;
  line-height: 1.6;
}
.footer__contact svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer__contact a { transition: color 0.25s ease; }
.footer__contact a:hover { color: var(--gold-light); }
.footer__contact small {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.1rem;
}
.footer__contact strong { color: rgba(255, 255, 255, 0.9); font-weight: 600; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.3rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.footer__motto { letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; }

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(140deg, #2BC65A, #1DA851);
  box-shadow: 0 8px 24px rgba(29, 168, 81, 0.45);
  animation: wa-bob 3.4s ease-in-out infinite;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
@keyframes wa-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.wa-float:hover {
  animation-play-state: paused;
  transform: scale(1.12);
  box-shadow: 0 14px 34px rgba(29, 168, 81, 0.55);
}
.wa-float__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(43, 198, 90, 0.7);
  animation: wa-ring 2.4s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.9; }
  80%, 100% { transform: scale(1.55); opacity: 0; }
}
.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  translate: 0 -50%;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--navy-deep);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  pointer-events: none;
}
.wa-float:hover .wa-float__tooltip { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
/* ── Tablet & small laptop — hamburger, keep a compact CTA ── */
@media (max-width: 1120px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .brand__name { font-size: 0.95rem; }
  .header__cta {
    padding: 0.6rem 1.05rem;
    font-size: 0.8rem;
    gap: 0.3rem;
  }
  .header__cta svg { display: none; }
}

@media (max-width: 860px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__chip { right: 0.8rem; bottom: -1.2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

/* ── Phone ── */
@media (max-width: 640px) {
  :root { --header-h: 68px; }

  .topbar__item--email { display: none; }
  .topbar { font-size: 0.72rem; }
  .topbar__inner { gap: 0.6rem; }

  .header__inner { gap: 0.7rem; }
  .brand { flex: 0 1 auto; }
  .brand__logo { width: 42px; }
  .header.is-scrolled .brand__logo { width: 40px; }
  .brand__name { font-size: 0.84rem; white-space: normal; line-height: 1.15; }
  .brand__place { font-size: 0.62rem; letter-spacing: 0.18em; margin-top: 0.1rem; }

  .hero__content { padding-block: 3rem; margin-left: auto; margin-right: auto; width: min(100% - 2.5rem, 1200px); }
  .hero__badges { gap: 0.5rem; }
  .hero__badge { font-size: 0.76rem; padding: 0.45rem 0.9rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }

  .stats { margin-top: -2.6rem; }
  .stats__grid { gap: 0.8rem; }
  .stat-card { padding: 1.15rem 0.9rem; }

  .pillars__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom-inner { justify-content: center; text-align: center; }

  .wa-float { width: 52px; height: 52px; bottom: 1.2rem; right: 1.2rem; }
  .wa-float__tooltip { display: none; }
}

/* ── Small phone — drop the CTA, keep hamburger only ── */
@media (max-width: 600px) {
  .header__cta { display: none; }
}

@media (max-width: 400px) {
  .brand__logo { width: 38px; }
  .brand__name { font-size: 0.76rem; }
  .brand__place { display: none; }
  .topbar__badge { font-size: 0.66rem; padding: 0.18rem 0.6rem; }
  .topbar__item span { font-size: 0.7rem; }
}

/* Larger hero left margin already handled via margin-left max() */
@media (min-width: 641px) {
  .hero__content { margin-right: 1.25rem; }
}

/* ─────────────── Reduced motion ─────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal],
  [data-hero-stagger] { opacity: 1; transform: none; }
  .hero__particles { display: none; }
}
