*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #F5F5FA;
  color: #1E2340;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: white;
  padding: 8px 16px;
  z-index: 1001;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Variables ── */
:root {
  --navy: #162252;
  --navy-dark: #0D1840;
  --navy-mid: #1E2D6B;
  --gold: #C9A820;
  --gold-dark: #A88018;
  --gold-light: #D4B830;
  --bg: #F6F6FB;
  --white: #ffffff;
  --text: #1A1F3C;
  --text-muted: #64748b;
  --radius: 1rem;
  /* Premium additions */
  --font-display: 'Playfair Display', Georgia, serif;
  --gold-pale: rgba(201, 168, 32, 0.09);
  --navy-pale: rgba(22, 34, 82, 0.055);
  --shadow-soft: 0 2px 12px rgba(22, 34, 82, 0.07);
  --shadow-md: 0 8px 28px rgba(22, 34, 82, 0.12);
  --shadow-lg: 0 16px 48px rgba(22, 34, 82, 0.16);
  --shadow-xl: 0 24px 64px rgba(22, 34, 82, 0.2);
  --shadow-gold: 0 8px 28px rgba(201, 168, 32, 0.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Utilities ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
  padding: 0.3rem 0.95rem;
  background: var(--navy-pale);
  border: 1px solid rgba(22, 34, 82, 0.14);
  border-radius: 99px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-divider {
  width: 3.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201, 168, 32, 0.15) 100%);
  border-radius: 99px;
  margin-bottom: 0.35rem;
}

.section-divider.center {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.1rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, #B8921A 100%);
  color: white;
  font-size: 0.875rem;
  font-weight: 800;
  border-radius: 99px;
  transition: all 0.28s var(--ease-spring);
  box-shadow: 0 4px 18px rgba(201, 168, 32, 0.38), inset 0 1px 0 rgba(255,255,255,0.22);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(201, 168, 32, 0.48), inset 0 1px 0 rgba(255,255,255,0.22);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.1rem;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 60%, var(--navy-dark) 100%);
  color: white;
  font-size: 0.875rem;
  font-weight: 800;
  border-radius: 99px;
  transition: all 0.28s var(--ease-spring);
  box-shadow: 0 4px 18px rgba(22, 34, 82, 0.28), inset 0 1px 0 rgba(255,255,255,0.1);
  letter-spacing: 0.01em;
}

.btn-navy:hover {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(22, 34, 82, 0.38), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 99px;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.card-purple {
  background: linear-gradient(145deg, #1E2D6B 0%, #162252 45%, #0D1840 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.card-purple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.25) 50%, transparent 95%);
  pointer-events: none;
}

.card-gold {
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.card-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.35) 50%, transparent 95%);
  pointer-events: none;
}

/* ── FontAwesome icon sizing ── */
.hero-stat-icon i,
.hero-chip-icon i {
  font-size: 1rem;
}

.about-info-icon i {
  font-size: 0.9rem;
}

.vision-icon i {
  font-size: 1.5rem;
  color: white;
}

.program-icon i {
  font-size: 1.2rem;
  color: white;
}

.why-icon i {
  font-size: 1.2rem;
}

.why-icon.p i {
  color: var(--navy);
}

.why-icon.g i {
  color: var(--gold-dark);
}

.contact-item-icon i {
  font-size: 1rem;
  color: white;
}

.whatsapp-icon i {
  font-size: 1.4rem;
  color: white;
}

.footer-contact-icon i {
  font-size: 0.9rem;
}

.footer-social a i {
  font-size: 1rem;
}

.success-icon i {
  font-size: 3rem;
  color: var(--gold);
}

.value-icon i {
  font-size: 1.1rem;
  color: var(--navy);
}

.value-card.active .value-icon i {
  color: white;
}

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  box-shadow: 0 1px 0 rgba(22, 34, 82, 0.06), 0 4px 24px rgba(22, 34, 82, 0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--navy);
}

.nav-brand span {
  font-weight: 800;
  font-size: 0.95rem;
  color: white;
  transition: color 0.3s;
}

#navbar.scrolled .nav-brand span {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

#navbar.scrolled .nav-links a {
  color: var(--text);
}

#navbar.scrolled .nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: white;
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 99px;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 15px rgba(201, 168, 32, 0.4);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

#navbar.scrolled .hamburger span {
  background: var(--text);
}

.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--navy);
}

.mobile-menu .btn-primary {
  margin-top: 0.5rem;
  justify-content: center;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #1E2D6B 0%, #162252 45%, #0D1840 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(0deg, rgba(13, 24, 64, 0.55), transparent);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-blob-1 {
  width: 14rem;
  height: 14rem;
  background: rgba(255, 255, 255, 0.07);
  bottom: 0;
  left: 0;
  transform: translate(-25%, 50%);
}

.hero-blob-2 {
  width: 9rem;
  height: 9rem;
  background: rgba(255, 255, 255, 0.06);
  bottom: 0;
  left: 7rem;
  transform: translateY(33%);
}

.hero-blob-3 {
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.07);
  top: 2.5rem;
  right: 2.5rem;
}

.hero-blob-4 {
  width: 5rem;
  height: 5rem;
  background: rgba(201, 168, 32, 0.2);
  bottom: 5rem;
  right: 5rem;
}

.hero-blob-5 {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.08);
  top: 25%;
  right: 35%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: white;
  line-height: 1.08;
  margin-bottom: 1.35rem;
  letter-spacing: -0.015em;
}

.hero-h1 .accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-stat-icon {
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0.6rem;
  font-size: 1rem;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  display: block;
}

.hero-stat-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

/* Right — banner image */
.hero-img-wrap {
  position: relative;
}

.hero-img-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: rgba(201, 168, 32, 0.15);
  filter: blur(2rem);
  transform: scale(1.05);
  pointer-events: none;
}

.hero-img-frame {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.06);
}

.hero-img-frame img {
  width: 100%;
  height: 35rem;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-img-frame:hover img {
  transform: scale(1.04);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 24, 64, 0.62) 0%,
    rgba(13, 24, 64, 0.15) 45%,
    transparent 75%
  );
  pointer-events: none;
}

.hero-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18), 0 1px 0 rgba(255,255,255,0.6) inset;
  padding: 0.65rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  backdrop-filter: blur(12px);
}

.hero-chip-icon {
  font-size: 1rem;
}

.hero-chip-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text);
}

.hero-chip-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.hero-chip.top {
  top: -1rem;
  right: -1rem;
  animation: float1 4s ease-in-out infinite;
}

.hero-chip.bottom {
  bottom: -1rem;
  left: -1rem;
  background: var(--gold);
}

.hero-chip.bottom .hero-chip-title,
.hero-chip.bottom .hero-chip-sub {
  color: white;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.hero-chip.bottom {
  animation: float2 5s ease-in-out infinite 1s;
}

/* ── ABOUT ── */
#about {
  padding: 5rem 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr ;
  gap: 1rem;
  position: relative;
}

.about-blob-p {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 34, 82, 0.12), transparent 70%);
  pointer-events: none;
}

.about-blob-g {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 32, 0.18), transparent 70%);
  pointer-events: none;
}

.about-card {
  border-radius: 1.35rem;
  padding: 1.6rem;
  color: white;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  cursor: default;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* .about-card:nth-child(2),
.about-card:nth-child(4) {
  margin-top: 1.5rem;
} */

.about-card-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.about-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.about-text .section-divider {
  margin-bottom: 1.5rem;
}

.about-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.about-info a {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.about-info a:hover {
  color: var(--navy);
}

.about-info-icon {
  color: var(--navy);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-photo-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.85rem;
  margin: 1.5rem 0 1.75rem;
}

.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  aspect-ratio: 1 / 1;
  background: #e8e8f2;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.about-photo-wide {
  aspect-ratio: 4 / 3;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-photo:hover img {
  transform: scale(1.06);
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 24, 64, 0.78));
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.about-photo:hover::after {
  opacity: 0.85;
}

.about-photo span {
  position: absolute;
  left: 0.9rem;
  bottom: 0.8rem;
  z-index: 1;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(22, 34, 82, 0.45);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ── VISION ── */
#vision {
  padding: 5rem 0;
  background: white;
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.vision-card {
  border-radius: 1.75rem;
  padding: 2.25rem 2rem;
  color: white;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.vision-icon {
  font-size: 1.5rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0.875rem;
  width: fit-content;
  margin-bottom: 1.35rem;
}

.vision-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.vision-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.vision-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.vision-quote {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(201,168,32,0.04) 100%);
  border-radius: 1.75rem;
  padding: 2.25rem;
  text-align: center;
  border: 1px solid rgba(201, 168, 32, 0.15);
}

.vision-quote p {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text);
}

.vision-quote span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── PROGRAMS ── */
#programs {
  padding: 5rem 0;
  background: var(--bg);
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.program-card {
  border-radius: 1.75rem;
  padding: 2.1rem;
  color: white;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.program-header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
}

.program-icon {
  width: 2.9rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.875rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.program-badge {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.55);
}

.program-name {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 0.2rem;
}

.program-tagline {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  margin-top: 0.25rem;
}

.program-media {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  height: 13rem;
  flex-shrink: 0;
  margin-bottom: 1.4rem;
  background: rgba(255, 255, 255, 0.14);
}

.program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card:hover .program-media img {
  transform: scale(1.07);
}

.program-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(13, 24, 64, 0.28) 100%);
  pointer-events: none;
}

.program-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 1.3rem;
  flex: 1;
}

.academic-streams {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
  flex: 1;
}

.academic-stream {
  padding-left: 0.85rem;
  border-left: 3px solid rgba(255, 255, 255, 0.24);
}

.academic-stream h4 {
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
}

.academic-stream p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
}

.program-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  list-style: none;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
}

.program-features li::before {
  content: '✓';
  font-weight: 800;
  flex-shrink: 0;
}

.programs-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid #e0e0f0;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.prog-stat-num {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1;
}

.prog-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── VALUES ── */
#values {
  padding: 5rem 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.value-card {
  border-radius: 1.25rem;
  padding: 1.25rem;
  cursor: pointer;
  background: var(--bg);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card.active {
  color: white;
}

.value-card.active.purple {
  background: linear-gradient(135deg, #162252, #0D1840);
}

.value-card.active.gold {
  background: linear-gradient(135deg, #C9A820, #D4B830);
}

.value-icon {
  font-size: 1.2rem;
  padding: 0.5rem;
  background: white;
  border-radius: 0.6rem;
  width: fit-content;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.value-card.active .value-icon {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.value-arabic {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text);
}

.value-english {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.value-card.active .value-arabic,
.value-card.active .value-english {
  color: white;
}

.value-card.active .value-english {
  color: rgba(255, 255, 255, 0.6);
}

.value-body {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.6rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, margin-top 0.35s;
}

.value-card.active .value-body {
  max-height: 10rem;
}

.values-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* ── WHY ── */
#why {
  padding: 5rem 0;
  /* background: var(--bg); */
  background: white;
  position: relative;
  overflow: hidden;
}

.why-blob-p {
  position: absolute;
  top: 0;
  right: 0;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 34, 82, 0.1), transparent 70%);
  transform: translate(33%, -50%);
  pointer-events: none;
}

.why-blob-g {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 32, 0.14), transparent 70%);
  transform: translate(-25%, 50%);
  pointer-events: none;
}

.why-showcase {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.why-showcase-side {
  display: grid;
  gap: 1rem;
}

.why-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  border-radius: 1.5rem;
  background: var(--bg);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.why-showcase-card:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-lg);
}

.why-showcase-main {
  min-height: 30rem;
}

.why-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-showcase-card:hover img {
  transform: scale(1.06);
}

.why-showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,24,64,0.05) 0%, transparent 35%, rgba(13, 24, 64, 0.82) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.why-showcase-card:hover::after {
  opacity: 0.9;
}

.why-showcase-card figcaption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  color: white;
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(2px);
}

.why-showcase-card:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.why-showcase-card figcaption span {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
  font-family: var(--font-display);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.75rem;
  transition: all 0.35s var(--ease-out);
  border: 1px solid rgba(22, 34, 82, 0.06);
  box-shadow: var(--shadow-soft);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(22, 34, 82, 0.1);
}

.why-icon {
  font-size: 1.2rem;
  padding: 0.8rem;
  border-radius: 1rem;
  width: fit-content;
  margin-bottom: 1.1rem;
}

.why-icon.p {
  background: rgba(22, 34, 82, 0.07);
  border: 1px solid rgba(22, 34, 82, 0.1);
}

.why-icon.g {
  background: rgba(201, 168, 32, 0.1);
  border: 1px solid rgba(201, 168, 32, 0.2);
}

.why-card h3 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.why-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CONTACT ── */
#contact {
  padding: 5rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  border-radius: 1.75rem;
  padding: 2.1rem;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
}

.contact-item-val {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}

.whatsapp-card {
  border-radius: 1.5rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.2s;
}

.whatsapp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 32, 0.35);
}

.whatsapp-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-icon {
  font-size: 1.4rem;
}

.whatsapp-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: white;
}

.whatsapp-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.whatsapp-arrow {
  color: white;
  font-size: 1.2rem;
}

.hours-card {
  background: var(--bg);
  border-radius: 1.5rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.hours-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hours-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
}

/* Form */
.form-card {
  background: white;
  border: 1px solid rgba(22, 34, 82, 0.08);
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(30, 35, 64, 0.55);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.1rem;
  border-radius: 0.875rem;
  border: 1.5px solid rgba(22, 34, 82, 0.08);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text);
  transition: all 0.22s var(--ease-out);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #b8b8cc;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(22, 34, 82, 0.35);
  background: white;
  box-shadow: 0 0 0 3.5px rgba(22, 34, 82, 0.07);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-select option[value=""] {
  color: #c0c0cc;
}

.form-textarea {
  resize: none;
}

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
  display: none;
}

.form-error.show {
  display: block;
}

.form-input.invalid,
.form-select.invalid {
  border-color: #fca5a5;
}

.server-error {
  display: none;
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.75rem;
  color: #dc2626;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.server-error.show {
  display: block;
}

.form-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 55%, var(--navy-dark) 100%);
  color: white;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.28s var(--ease-spring);
  border: none;
  box-shadow: 0 4px 16px rgba(22, 34, 82, 0.28), inset 0 1px 0 rgba(255,255,255,0.1);
  letter-spacing: 0.01em;
}

.form-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  box-shadow: 0 8px 28px rgba(22, 34, 82, 0.38);
  transform: translateY(-2px) scale(1.01);
}

.form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success.show {
  display: flex;
}

.form-fields.hide {
  display: none;
}

.success-icon {
  font-size: 3rem;
}

.success-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}

.success-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 20rem;
  line-height: 1.6;
}

.success-reset {
  padding: 0.6rem 1.5rem;
  border: 1.5px solid rgba(22, 34, 82, 0.25);
  border-radius: 99px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  transition: all 0.2s;
}

.success-reset:hover {
  background: rgba(22, 34, 82, 0.05);
}

/* ── FOOTER ── */
#footer {
  background: #fafafe;
  border-top: 1px solid rgba(22, 34, 82, 0.07);
}

.footer-cta {
  background: linear-gradient(145deg, #1E2D6B 0%, #162252 50%, #0A1230 100%);
  padding: 3.25rem 0;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-cta h3 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: white;
}

.footer-cta p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.footer-body {
  padding: 3.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--navy);
}

.footer-brand-name {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 0.75rem;
}

.footer-brand-loc {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 2rem;
  height: 2rem;
  background: var(--bg);
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--navy);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--navy);
  color: white;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--navy);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-contact-icon {
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--navy);
}

.subscribe-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subscribe-input {
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  border: 1.5px solid transparent;
  background: var(--bg);
  font-family: inherit;
  font-size: 0.8rem;
  color: var(--text);
  outline: none;
  transition: all 0.2s;
}

.subscribe-input:focus {
  border-color: rgba(22, 34, 82, 0.25);
  background: white;
}

.subscribe-input::placeholder {
  color: #c0c0cc;
}

.subscribe-btn {
  padding: 0.65rem 1rem;
  background: var(--gold);
  color: white;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 0.75rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.subscribe-btn:hover {
  background: var(--gold-dark);
}

.subscribe-ok {
  display: none;
  padding: 0.65rem 1rem;
  background: rgba(22, 34, 82, 0.08);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0.75rem;
  text-align: center;
}

.subscribe-ok.show {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(22, 34, 82, 0.07);
  padding: 1.35rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #c0c0cc;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(22, 34, 82, 0.35);
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-showcase {
    grid-template-columns: 1fr;
  }

  .why-showcase-main {
    min-height: 22rem;
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-chip.top {
    top: -0.75rem;
    right: -0.5rem;
  }

  .hero-chip.bottom {
    bottom: -0.75rem;
    left: -0.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .vision-cards {
    grid-template-columns: 1fr;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-media {
    height: 14rem;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-showcase-side {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .programs-stats {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-photo-strip,
  .why-showcase-side {
    grid-template-columns: 1fr;
  }

  .about-photo,
  .about-photo-wide,
  .why-showcase-card,
  .why-showcase-main {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-card:nth-child(2),
  .about-card:nth-child(4) {
    margin-top: 0;
  }
}





/* ═══════════════════════════════════════════════
   ADDITIONS TO assets/css/style.css
   Paste these rules at the bottom of your style.css
   ═══════════════════════════════════════════════ */

/* ── Misc fixes (existing sections) ── */

.about-cards-wrap {
  position: relative;
}

.about-divider {
  margin-bottom: 1.5rem;
}

.prog-stat-col {
  text-align: center;
}

.why-divider {
  margin-bottom: 0.75rem;
}

.why-intro {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 28rem;
  margin: 0.5rem auto 0;
}

.contact-phone {
  transition: color 0.2s;
}

.footer-hours {
  margin-top: 0.5rem;
}

.footer-hours-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.footer-hours-val {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── SUMMER CAMP SECTION ── */

#summer-camp {
  padding: 5rem 0;
  /* background: linear-gradient(180deg, #f8f6ff 0%, #fff 60%); */
  background:var(--bg);
  position: relative;
  overflow: hidden;
}

/* Background blobs */
.sc-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.sc-blob-p {
  width: 500px;
  height: 500px;
  background: #534AB7;
  top: -100px;
  right: -120px;
}

.sc-blob-g {
  width: 350px;
  height: 350px;
  background: var(--gold);
  bottom: 0;
  left: -80px;
}

/* Section tag dot */
.sc-tag-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy);
  margin-right: 6px;
  vertical-align: middle;
}

/* Intro paragraph */
.sc-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* accent span inside headings */
.accent {
  color: var(--gold);
}

/* Main 2-col grid */
.sc-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── VIDEO REEL (left column) ── */

.sc-reel-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.sc-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a2e;
  aspect-ratio: 9 / 16;
  max-height: 520px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(83, 74, 183, 0.25);
}

.sc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder shown before video is added */
.sc-reel-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2d2060 0%, #4a3aac 50%, #7b5ea7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.sc-reel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sc-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.sc-play-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.sc-reel-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.sc-reel-sub {
  font-size: 11px;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

.sc-reel-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(20, 12, 50, 0.85) 0%, transparent 100%);
  padding: 2rem 1rem 1rem;
}

.sc-reel-footer-title {
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin-bottom: 3px;
}

.sc-reel-footer-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.sc-video-msg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #aaa;
  font-size: 13px;
  text-align: center;
  padding: 1.5rem;
}

/* ── RIGHT COLUMN ── */

.sc-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Image card */
.sc-img-card {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #e7f3ff;
  box-shadow: 0 8px 32px rgba(83, 74, 183, 0.12);
  cursor: pointer;
}

.sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.sc-img-card:hover .sc-img {
  transform: scale(1.05);
}

.sc-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(13, 24, 64, 0.85) 100%);
  pointer-events: none;
}

.sc-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a8f0d6 0%, #5DCAA5 40%, #1D9E75 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.sc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30, 20, 70, 0.55) 0%, transparent 60%);
}

.sc-img-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: white;
  font-size: 11px;
  font-weight: 800;
  border-radius: 100px;
  padding: 5px 14px;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 12px rgba(201, 168, 32, 0.4);
}

.sc-img-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 1;
  color: white;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0.92;
}

/* Activities chips */
.sc-activities-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #999;
  margin-bottom: 10px;
}

.sc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: transform 0.15s;
}

.sc-chip:hover {
  transform: translateY(-2px);
}

.sc-chip-purple {
  background: #EEEDFE;
  color: #3C3489;
  border-color: #AFA9EC;
}

.sc-chip-gold {
  background: #FAEEDA;
  color: #633806;
  border-color: #FAC775;
}

.sc-chip-teal {
  background: #E1F5EE;
  color: #085041;
  border-color: #5DCAA5;
}

.sc-chip-coral {
  background: #FAECE7;
  color: #4A1B0C;
  border-color: #F0997B;
}

.sc-chip-blue {
  background: #E6F1FB;
  color: #0C447C;
  border-color: #85B7EB;
}

/* Info cards grid */
.sc-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sc-info-card {
  background: white;
  border: 1px solid #e8e6f8;
  border-left: 4px solid transparent;
  border-radius: 14px;
  padding: 1rem 1.25rem;
}

.sc-info-card-navy {
  border-left-color: var(--navy);
}

.sc-info-card-gold {
  border-left-color: var(--gold);
}

.sc-info-emoji {
  font-size: 22px;
  margin-bottom: 6px;
}

.sc-info-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 3px;
}

.sc-info-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.sc-info-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* CTA strip */
.sc-cta-strip {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sc-cta-text h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.sc-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.sc-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sc-btn-white {
  background: white;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}

.sc-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sc-btn-outline {
  background: transparent;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}

.sc-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ── Responsive: Summer Camp ── */
@media (max-width: 768px) {
  .sc-main-grid {
    grid-template-columns: 1fr;
  }

  .sc-video-wrap {
    max-width: 100%;
    max-height: 400px;
  }

  .sc-cta-strip {
    flex-direction: column;
    text-align: center;
  }

  .sc-cta-btns {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .sc-info-grid {
    grid-template-columns: 1fr;
  }
}


/* ── Video Modal ── */
.sc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.sc-modal.open {
  opacity: 1;
  pointer-events: all;
}

.sc-modal-inner {
  position: relative;
  width: 90%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.3s;
}

.sc-modal.open .sc-modal-inner {
  transform: scale(1);
}

.sc-modal-video {
  width: 100%;
  display: block;
  max-height: 80vh;
  object-fit: contain;
}

.sc-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.sc-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.sc-video {
  cursor: pointer;
}


/* ── Image Modal ── */
.sc-img-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.sc-img-modal.open {
  opacity: 1;
  pointer-events: all;
}

.sc-img-modal-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.sc-img-modal.open .sc-img-modal-inner {
  transform: scale(1);
}

.sc-img-modal-img {
  width: 100%;
  height: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.sc-img-card {
  cursor: pointer;
}


/* ── Responsive: Summer Camp ── */

@media (max-width: 1024px) {
  .sc-video-wrap {
    max-width: 260px;
  }

  .sc-img-card {
    max-height: 520px;
  }
}

@media (max-width: 768px) {
  .sc-main-grid {
    grid-template-columns: 1fr;
  }

  .sc-reel-col {
    align-items: center;
  }

  .sc-video-wrap {
    max-width: 220px;
    max-height: 390px;
    margin: 0 auto;
  }

  .sc-img-card {
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  .sc-img {
    object-fit: cover;
  }

  .sc-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .sc-cta-btns {
    justify-content: center;
  }

  .sc-chips {
    gap: 6px;
  }

  .sc-chip {
    font-size: 12px;
    padding: 6px 12px;
  }

  .sc-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .sc-video-wrap {
    max-width: 180px;
    max-height: 320px;
  }

  .sc-img-card {
    max-width: 360px;
  }

  .sc-info-grid {
    grid-template-columns: 1fr;
  }

  .sc-cta-text h3 {
    font-size: 1rem;
  }

  .sc-intro {
    font-size: 0.875rem;
  }
}


/* ── Hamburger Animation ── */
.hamburger span {
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu Slide Animation ── */
.mobile-menu {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.mobile-menu.open {
  max-height: 500px;
  opacity: 1;
  /* padding-top: 1rem;
  padding-bottom: 1.5rem; */
  padding:1rem;
  background-color: white;
}

.mobile-menu.closing {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .sc-img-card {
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 480px) {
  .sc-img-card {
    aspect-ratio: 4 / 5;
  }
}

/* ── Scroll to Top Button ── */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(201, 168, 32, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(201, 168, 32, 0.5);
}

.scroll-top-btn:active {
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .scroll-top-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}


/* ════════════════════════════════════════════
   PREMIUM POLISH LAYER
   ════════════════════════════════════════════ */

/* ── Scroll animation improvement ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Navbar brand name — Playfair Display ── */
.nav-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

/* ── Nav-cta pill refinement ── */
.nav-cta {
  padding: 0.6rem 1.6rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, #B8921A 100%);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 12px rgba(201, 168, 32, 0.32);
}

.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(201, 168, 32, 0.48);
  transform: translateY(-1px) scale(1.02);
}

/* ── Hero stat icon refinement ── */
.hero-stat-icon {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0.7rem;
  backdrop-filter: blur(8px);
}

/* ── About cards num style ── */
.about-card-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 0.75rem;
  line-height: 1;
}

/* ── About photo strip ── */
.about-photo {
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
}

/* ── Contact item icon ── */
.contact-item-icon {
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.875rem;
}

/* ── WhatsApp card ── */
.whatsapp-card {
  border-radius: 1.5rem;
  box-shadow: 0 6px 24px rgba(201, 168, 32, 0.2);
}

/* ── Hours card ── */
.hours-card {
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(22,34,82,0.04) 100%);
  border: 1px solid rgba(22,34,82,0.07);
  box-shadow: var(--shadow-soft);
}

/* ── Footer brand refinement ── */
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

/* ── Footer social links ── */
.footer-social a {
  border-radius: 0.75rem;
  width: 2.1rem;
  height: 2.1rem;
  transition: all 0.25s var(--ease-out);
}

/* ── Summer camp video wrap ── */
.sc-video-wrap {
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(83, 74, 183, 0.28);
}

/* ── Summer camp img card ── */
.sc-img-card {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.sc-img-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Success icon ── */
.success-title {
  font-family: var(--font-display);
  font-weight: 700;
}

/* ── Focus ring polish ── */
a:focus-visible,
button:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Subtle section background enrichment ── */
#about {
  background: var(--bg);
}

#vision {
  background: linear-gradient(180deg, #fff 0%, #fafafe 100%);
}

#programs {
  background: var(--bg);
}

#why {
  background: linear-gradient(180deg, #ffffff 0%, #fafafe 100%);
}

#contact {
  background: #ffffff;
}

/* ── Mobile menu glass ── */
.mobile-menu.open {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(22, 34, 82, 0.12);
}

/* ── Scroll top btn premium ── */
.scroll-top-btn {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  box-shadow: 0 6px 24px rgba(201, 168, 32, 0.45);
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  box-shadow: 0 10px 32px rgba(201, 168, 32, 0.55);
}

/* ── Section header text-center spacing ── */
.text-center {
  text-align: center;
}

.text-center .section-tag {
  display: inline-flex;
}

/* ── Programs stats border ── */
.programs-stats {
  border-top: 1px solid rgba(22, 34, 82, 0.08);
  margin-top: 3rem;
}

/* ── About info link refinement ── */
.about-info a {
  padding: 0.6rem 0.75rem;
  background: rgba(22, 34, 82, 0.035);
  border-radius: 0.75rem;
  transition: background 0.2s, color 0.2s;
}

.about-info a:hover {
  background: rgba(22, 34, 82, 0.07);
  color: var(--navy);
}
