:root {
  --bg: #08162d;
  --bg-2: #eef4fb;
  --surface: #ffffff;
  --surface-alt: #f6f9ff;
  --text: #16314f;
  --muted: #5f7188;
  --accent: #f3b53f;
  --accent-2: #27b3a3;
  --line: rgba(22, 49, 79, 0.1);
  --shadow: 0 24px 60px rgba(8, 22, 45, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
}

a { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.topbar,
.topbar a,
.topbar span {
  font-size: 0.875rem;
}

.navbar-brand { letter-spacing: 0.02em; }
.navbar-brand,
.navbar-brand:hover {
  color: var(--text);
  font-size: 1.8rem;
}
.navbar-nav {
  font-size: 1.02rem;
}
.navbar .dropdown-menu {
  min-width: 16rem;
}
.navbar .dropdown-item {
  line-height: 1.4;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  color: #ff4d57;
  background: #f8fafc;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.35rem;
  border-radius: 0.65rem;
  background: var(--accent);
  color: #1a2432;
}

.btn-accent {
  background: var(--accent);
  color: #1a2432;
  border: 0;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(243, 181, 63, 0.28);
}
.btn-accent:hover { background: #f6c75f; color: #1a2432; }

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(39, 179, 163, 0.18), transparent 35%),
    linear-gradient(180deg, #0b1a35 0%, #08162d 100%);
  padding: 5rem 0 4rem;
}

.hero-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.9;
}
.hero-blob-one {
  width: 22rem;
  height: 22rem;
  background: rgba(243, 181, 63, 0.16);
  top: -6rem;
  right: -4rem;
}
.hero-blob-two {
  width: 18rem;
  height: 18rem;
  background: rgba(39, 179, 163, 0.16);
  left: -5rem;
  bottom: -6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-section .lead,
.hero-section .display-4,
.hero-metrics { position: relative; z-index: 1; }

.hero-section .lead {
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-section .display-4 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-card,
.about-frame,
.program-card,
.timeline-card,
.stats-card,
.testimonial-card,
.facility-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
}

.hero-card {
  padding: 1.25rem;
  background: rgba(255,255,255,0.95);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.hero-metrics div {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.hero-metrics strong,
.stat-box strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: .25rem;
}
.hero-metrics span,
.stat-box span { color: rgba(255,255,255,0.7); font-size: .92rem; }

.section-spacing { padding: 5rem 0; }
.section-alt { background: var(--surface-alt); }
.section-heading { max-width: 46rem; }
.section-title { font-size: clamp(1.9rem, 3vw, 3rem); font-weight: 800; line-height: 1.08; }
.section-copy { color: var(--muted); font-size: 1rem; line-height: 1.85; }

.feature-list,
.facility-grid {
  display: grid;
  gap: 1rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}
.feature-item i {
  color: var(--accent-2);
  font-size: 1.4rem;
  margin-top: .2rem;
}
.feature-item h3,
.program-card h3,
.testimonial-card h3,
.facility-card h3,
.event-body h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .4rem; }
.feature-item p,
.program-card p,
.testimonial-card p,
.facility-card p,
.event-body p { color: var(--muted); margin-bottom: 0; line-height: 1.8; }

.program-card {
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(8,22,45,.16); }
.program-art { background: linear-gradient(180deg, #f7fbff, #edf4ff); }

.apply-panel {
  padding: 2rem;
  background: linear-gradient(180deg, #0b1a35, #132f57);
  color: #fff;
  box-shadow: var(--shadow);
}
.apply-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 1rem;
}
.apply-list li {
  padding: 1rem 1rem 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.apply-list strong { display: block; margin-bottom: .35rem; }
.apply-list span { color: rgba(255,255,255,0.72); }

.timeline-card {
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.event-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(39, 179, 163, 0.12);
  color: var(--accent-2);
  font-size: 1.3rem;
}
.events-list { display: grid; gap: 1rem; }
.event-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}
.event-date {
  padding: .85rem .5rem;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #0b1a35, #1c4277);
  color: #fff;
}
.event-date strong { display: block; font-size: 1.1rem; }
.event-date span { text-transform: uppercase; font-size: .75rem; letter-spacing: .12em; }

.stats-card {
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.stat-box {
  min-height: 8.5rem;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #0b1a35, #132f57);
  color: #fff;
}
.stat-box span { color: rgba(255,255,255,0.7); }

.testimonial-card {
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f3b53f, #f7d37d);
  color: #1a2432;
  font-weight: 800;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}
.partner-pill {
  padding: 1rem;
  border-radius: 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
  color: #6a7a8f;
}

.newsletter-band {
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at top right, rgba(243, 181, 63, 0.18), transparent 28%),
    linear-gradient(180deg, #08162d, #0d2342);
}
.newsletter-form {
  display: flex;
  gap: .75rem;
}
.newsletter-form .form-control {
  border-radius: 16px;
  padding: .95rem 1rem;
  border: 0;
}

.site-footer {
  color: #16314f;
}
.footer-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: #16314f;
}
.footer-brand-bottom {
  font-size: 1.9rem;
}
.footer-copy {
  color: #5f6268;
  font-size: 1.1rem;
  line-height: 1.8;
}
.site-footer h4 {
  font-size: 1.1rem;
  letter-spacing: -.03em;
  color: #0f2d57;
  margin-bottom: 1rem;
}
.footer-links li {
  margin-bottom: 1rem;
  color: #656565;
  font-size: 1.05rem;
}
.footer-links a {
  color: #656565;
  text-decoration: none;
}
.footer-links a:hover { color: #ff4d57; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  line-height: 1.7;
}
.footer-contact-icon {
  flex: 0 0 auto;
  width: 1.2rem;
  margin-top: .2rem;
  line-height: 1;
}
.footer-contact-icon i { font-size: 1.1rem; }
.footer-utility-links a {
  color: #666;
  text-decoration: none;
  font-size: 1.05rem;
}
.footer-utility-links a:hover { color: #ff4d57; }
.social-links { display: flex; gap: .8rem; }
.social-links a {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #666;
  box-shadow: 0 8px 20px rgba(8, 22, 45, 0.08);
  text-decoration: none;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.15rem;
  text-decoration: none;
  border-radius: 2px;
  color: #fff;
  min-height: 4.6rem;
}
.store-badge small {
  display: block;
  font-size: .9rem;
  line-height: 1.1;
  opacity: .82;
}
.store-badge strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
}
.store-icon {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.8rem;
}
.store-badge-play {
  background: linear-gradient(90deg, #ff4b55, #ff4b55);
}
.store-badge-app {
  background: #0f2d57;
}
.footer-bottom {
  border-top: 1px solid rgba(22,49,79,0.08);
  color: #16314f;
  font-size: .95rem;
}
.footer-bottom .footer-brand-bottom {
  color: #16314f;
}

.about-frame { padding: 1.25rem; box-shadow: var(--shadow); }
.facility-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.facility-card { padding: 1.4rem; box-shadow: var(--shadow); }
.facility-card i { font-size: 1.5rem; color: var(--accent-2); margin-bottom: .75rem; display: inline-block; }

@media (max-width: 991.98px) {
  .hero-section { padding-top: 4rem; }
  .hero-metrics { grid-template-columns: 1fr; }
  .partner-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 575.98px) {
  .section-spacing { padding: 4rem 0; }
  .facility-grid { grid-template-columns: 1fr; }
  .event-item { grid-template-columns: 1fr; }
  .hero-section .display-4 { font-size: 2.4rem; }
}
