:root {
  --blue-primary:  #0060AF;
  --blue-active:   #1A7DD4;
  --blue-light:    #D6E8F7;
  --yellow:        #F5A623;
  --blue-dark:     #0A1F3F;
  --blue-mid:      #0D2850;
  --white:         #FFFFFF;
  --text-muted:    rgba(255,255,255,0.55);
  --border:        rgba(255,255,255,0.09);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--blue-dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s, backdrop-filter .35s, padding .35s;
}
#navbar.scrolled {
  background: rgba(10,31,63,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 32px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 1.125rem; letter-spacing: .08em; text-decoration: none; color: var(--white);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.btn-primary {
  background: var(--yellow); color: var(--blue-dark);
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: .875rem;
  padding: 11px 24px; border-radius: 100px; text-decoration: none;
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: opacity .2s, transform .2s;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }

.btn-secondary {
  border: 1.5px solid var(--border); color: var(--white);
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: .875rem;
  padding: 11px 24px; border-radius: 100px; text-decoration: none;
  cursor: pointer; background: transparent; display: inline-flex; align-items: center; gap: 6px;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--yellow); background: rgba(245,166,35,.07); }

/* ── HAMBURGER ── */
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--white); padding: 4px; }

/* ── MOBILE MENU ── */
#mobileMenu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(10,31,63,.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 1.75rem; color: var(--white); text-decoration: none; transition: color .2s;
}
#mobileMenu a:hover { color: var(--yellow); }
.close-btn { position: absolute; top: 24px; right: 24px; background: none; border: none; color: rgba(255,255,255,.5); cursor: pointer; font-size: 1.5rem; line-height: 1; }

/* ── HERO ── */
.hero {
  min-height: 100svh; padding: 120px 32px 80px;
  display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(ellipse 80% 65% at 72% 28%, rgba(26,125,212,.2) 0%, transparent 68%), var(--blue-dark);
  position: relative; overflow: hidden;
}
.hero-ghost {
  position: absolute; right: -1%; top: 50%; transform: translateY(-50%);
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: clamp(100px, 19vw, 280px);
  color: rgba(255,255,255,.022); letter-spacing: -.03em; line-height: 1;
  user-select: none; pointer-events: none; white-space: nowrap;
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; position: relative; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 28px;
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--yellow);
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50%      { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
}

.hero h1 {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 1.08; letter-spacing: -.025em;
  max-width: 700px; margin-bottom: 22px;
}
.hero h1 .accent { color: var(--yellow); }

.hero-desc {
  font-size: clamp(.95rem, 1.2vw, 1.1rem); color: var(--text-muted);
  line-height: 1.78; max-width: 480px; margin-bottom: 36px; font-weight: 400;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }

/* Stats bar */
.stats-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  max-width: 440px;
}
.stat-cell { background: rgba(255,255,255,.04); padding: 20px 22px; }
.stat-value {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 1.55rem; line-height: 1; color: var(--yellow);
  letter-spacing: -.02em; margin-bottom: 6px;
}
.stat-label {
  font-size: .7rem; color: var(--text-muted); font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.025); padding: 13px 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; align-items: center; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  padding: 0 26px; font-size: .75rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; color: var(--yellow);
}
.marquee-sep { color: rgba(255,255,255,.2); padding: 0 2px; font-size: .75rem; }

/* ── SECTIONS ── */
.section { padding: 96px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px;
}
.section-title {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: clamp(1.85rem, 3.2vw, 2.9rem);
  line-height: 1.16; letter-spacing: -.02em;
}
.section-title .accent { color: var(--yellow); }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}
.about-body { font-size: .975rem; color: var(--text-muted); line-height: 1.82; }
.about-body strong { color: var(--white); font-weight: 600; }
.about-point { display: flex; gap: 14px; align-items: flex-start; margin-top: 22px; }
.about-point-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.about-point-title { font-weight: 600; color: var(--white); margin-bottom: 4px; font-size: .95rem; }
.about-point-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.68; }

/* ── RING ── */
.ring-canvas { width: 300px; height: 300px; position: relative; margin: 0 auto; }
.ring-canvas svg { position: absolute; top: 0; left: 0; }
.ring-canvas svg:nth-child(1) { animation: rot 50s linear infinite; }
.ring-canvas svg:nth-child(2) { animation: rot 33s linear infinite reverse; }
.ring-canvas svg:nth-child(3) { animation: rot 20s linear infinite; }
@keyframes rot { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ring-center-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.8rem; letter-spacing: .12em; }
.ring-center-sub { font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--yellow); margin-top: 5px; }

/* ── FACILITIES ── */
.facilities-bg { background: rgba(0,96,175,.06); }
.facilities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.fac-card {
  background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 20px; padding: 32px 26px;
  transition: border-color .3s, transform .3s, background .3s;
}
.fac-card:hover { border-color: var(--yellow); transform: translateY(-5px); background: rgba(26,125,212,.1); }
.fac-card.featured { border-color: rgba(245,166,35,.3); background: rgba(245,166,35,.04); }
.fac-icon { font-size: 2.2rem; margin-bottom: 18px; display: block; }
.fac-num { font-size: .67rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px; }
.fac-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.25rem; margin-bottom: 12px; letter-spacing: -.01em; }
.fac-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 22px; }
.fac-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.fac-features li { display: flex; align-items: center; gap: 8px; font-size: .825rem; color: rgba(255,255,255,.42); }
.fac-features li::before { content: '✓'; color: var(--yellow); font-weight: 700; font-size: .78rem; flex-shrink: 0; }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 52px; }
.val-card { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 16px; padding: 26px 24px; }
.val-icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.val-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; letter-spacing: -.01em; }
.val-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.72; }

/* ── BIG QUOTE ── */
.big-quote {
  margin-top: 64px; text-align: center; padding: 72px 40px; border-radius: 24px;
  background: linear-gradient(135deg, #0060AF 0%, #0A1F3F 100%);
  position: relative; overflow: hidden;
}
.big-quote::before {
  content: '"'; position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  font-family: 'Manrope', sans-serif; font-size: 220px; font-weight: 900;
  color: rgba(255,255,255,.04); line-height: 1; pointer-events: none;
}
.big-quote blockquote {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.48; letter-spacing: -.015em;
  position: relative; max-width: 620px; margin: 0 auto 16px;
}
.big-quote blockquote .accent { color: var(--yellow); }
.big-quote cite { font-size: .72rem; color: rgba(255,255,255,.32); letter-spacing: .12em; font-style: normal; }

/* ── LOCATION ── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 52px; }
.map-wrapper { border-radius: 18px; overflow: hidden; border: 1.5px solid rgba(26,125,212,.35); height: 380px; }
.map-wrapper iframe { display: block; width: 100%; height: 100%; border: 0; }
.info-stack { display: flex; flex-direction: column; gap: 14px; }
.info-card { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 14px; padding: 22px 22px; }
.info-card-label { font-size: .67rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px; }
.info-card-value { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.45rem; letter-spacing: -.01em; line-height: 1.2; }
.info-card-sub { font-size: .78rem; color: var(--text-muted); margin-top: 5px; }
.wa-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 1.05rem; transition: color .2s; }
.wa-link:hover { color: var(--yellow); }

/* ── FAQ ── */
.faq-wrap { max-width: 660px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; color: var(--white);
}
.faq-question { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: .975rem; line-height: 1.4; }
.faq-chev { flex-shrink: 0; transition: transform .3s; color: var(--text-muted); }
.faq-chev.open { transform: rotate(180deg); color: var(--yellow); }
.faq-answer {
  overflow: hidden; max-height: 0; transition: max-height .4s ease, padding .4s ease;
  font-size: .875rem; color: var(--text-muted); line-height: 1.78;
}
.faq-answer.open { max-height: 200px; padding-bottom: 20px; }

/* ── CTA ── */
.cta-section { padding: 96px 32px; background: linear-gradient(135deg, #0A1F3F 0%, #0060AF 100%); text-align: center; }
.cta-inner { max-width: 1100px; margin: 0 auto; }
.cta-title {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1; letter-spacing: -.025em;
  max-width: 560px; margin: 20px auto 14px;
}
.cta-title .accent { color: var(--yellow); }
.cta-desc { font-size: .975rem; color: rgba(255,255,255,.58); max-width: 420px; margin: 0 auto 32px; line-height: 1.72; }
.cta-btn {
  background: var(--yellow); color: var(--blue-dark);
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1rem;
  padding: 16px 36px; border-radius: 100px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,166,35,.3); }

.social-label { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.social-row { display: flex; align-items: center; justify-content: center; gap: 10px; }
.soc-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
}
.soc-btn:hover { border-color: var(--yellow); background: rgba(245,166,35,.12); transform: scale(1.08); }

/* ── FOOTER ── */
footer { padding: 34px 32px; text-align: center; border-top: 1px solid var(--border); }
.footer-logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; text-decoration: none; color: var(--white); }
.footer-logo span { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: .95rem; letter-spacing: .1em; }
.footer-sub { font-size: .73rem; color: rgba(255,255,255,.27); letter-spacing: .06em; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .ring-canvas { width: 240px; height: 240px; }
  .ring-canvas svg { width: 240px !important; height: 240px !important; }
  .ring-center-name { font-size: 1.4rem; }
  .facilities-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  #navbar { padding: 16px 20px; }
  #navbar.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .section { padding: 64px 20px; }
  .hero { padding: 108px 20px 60px; }
  .hero h1 { font-size: 2.45rem; }
  .stats-bar { max-width: 100%; }
  .stat-value { font-size: 1.2rem; }
  .stat-label { font-size: .63rem; }
  .stat-cell { padding: 16px 14px; }
  .big-quote { padding: 44px 22px; }
  .big-quote::before { font-size: 140px; }
  .cta-section { padding: 64px 20px; }
  footer { padding: 28px 20px; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
}
