/* ===== MNG Global — Premium Light & Clean Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Primary palette — warm coral/red */
  --primary: #E8453C;
  --primary-hover: #D63B33;
  --primary-soft: rgba(232, 69, 60, 0.08);
  --primary-ring: rgba(232, 69, 60, 0.25);

  /* Secondary palette — deep navy */
  --navy: #1B2A4A;
  --navy-light: #2D4373;
  --navy-soft: rgba(27, 42, 74, 0.06);

  /* Accent — gold/amber */
  --gold: #F2994A;
  --gold-soft: rgba(242, 153, 74, 0.1);

  /* Neutrals — carefully tuned grays */
  --white: #FFFFFF;
  --gray-50: #FAFBFC;
  --gray-100: #F3F5F7;
  --gray-200: #E8ECF0;
  --gray-300: #D1D8E0;
  --gray-400: #9BA5B3;
  --gray-500: #6B7685;
  --gray-600: #4A5568;
  --gray-700: #2D3748;
  --gray-900: #171923;

  /* Functional */
  --bg: var(--white);
  --bg-alt: var(--gray-50);
  --bg-card: var(--white);
  --text: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --border: var(--gray-200);
  --border-soft: var(--gray-100);

  /* Shadows — layered for depth */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.04);
  --shadow-primary: 0 8px 24px rgba(232, 69, 60, 0.2);

  /* Radii */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.3s;
  --duration-slow: 0.5s;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

/* ===== NAVIGATION ===== */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: all var(--duration) var(--ease);
}

.nav-bar .nav-logo span {
  color: #fff;
}

.nav-bar .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.nav-bar .nav-links a:hover,
.nav-bar .nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-bar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.5rem 0;
}

.nav-bar.scrolled .nav-logo span {
  color: var(--navy);
}

.nav-bar.scrolled .nav-links a {
  color: var(--gray-600);
}

.nav-bar.scrolled .nav-links a:hover,
.nav-bar.scrolled .nav-links a.active {
  color: var(--navy);
  background: var(--navy-soft);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-600);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--navy-soft);
}

.nav-links a.cta-btn {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
}

.nav-links a.cta-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0.375rem;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
}

/* Invisible bridge to prevent hover gap */
.nav-dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
  animation: dropIn 0.2s var(--ease);
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.875rem !important;
  border-radius: var(--radius-sm);
  font-size: 0.85rem !important;
  color: var(--gray-600) !important;
  transition: all var(--duration) var(--ease);
}

.dropdown-menu a:hover {
  background: var(--gray-50) !important;
  color: var(--navy) !important;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
}

.mobile-toggle:hover {
  background: var(--gray-50);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #0d1117;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 100% at 50% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
    linear-gradient(180deg,
      rgba(13, 17, 23, 0.72) 0%,
      rgba(13, 17, 23, 0.38) 35%,
      rgba(13, 17, 23, 0.50) 70%,
      rgba(13, 17, 23, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: fadeUp 0.7s var(--ease) both;
  letter-spacing: 0.02em;
}

.hero-badge span {
  font-size: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #FF6B6B, #FFD93D, #FF6B6B);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.hero-desc {
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.7s var(--ease) 0.18s both;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s var(--ease) 0.24s both;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(232, 69, 60, 0.4);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 69, 60, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-3px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  font-size: 0.9rem;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 640px;
  animation: fadeUp 0.7s var(--ease) 0.32s both;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 1rem 0.75rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.20);
  transform: translateY(-3px);
}

.hero-stat h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stat p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 0.7s var(--ease) 0.5s both;
  cursor: pointer;
  text-decoration: none;
}

.hero-scroll span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* Floating shapes (subtle) */
.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  z-index: 1;
  animation: floatShape 10s ease-in-out infinite alternate;
}

.float-shape:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: var(--primary);
  filter: blur(100px);
}

.float-shape:nth-child(2) {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -100px;
  background: var(--gold);
  filter: blur(100px);
  animation-delay: 4s;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.12;
  color: var(--navy);
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.service-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-soft), rgba(232, 69, 60, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== PARTNER SCHOOLS ===== */
.schools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.school-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.school-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.school-img {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.school-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--duration-slow) var(--ease);
}

.school-card:hover .school-img img {
  transform: scale(1.08);
}

.school-info {
  padding: 1.5rem;
}

.school-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.school-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.school-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-top: 0.75rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.625rem 0.75rem;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  transition: all var(--duration) var(--ease);
}

.about-feature:hover {
  border-color: var(--gray-200);
  background: var(--white);
}

.about-feature span {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feature p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin: 0;
  font-weight: 500;
}

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 1.25rem;
}

.news-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.news-card-body p {
  color: var(--text-secondary);
  font-size: 0.825rem;
  line-height: 1.55;
}

.news-date {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.75rem;
}

/* ===== FB SIDEBAR ===== */
.fb-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fb-sidebar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fb-sidebar h3 i {
  color: #1877F2;
  font-size: 1.15rem;
}

.fb-sidebar iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #C0392B 40%, var(--navy) 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.cta-section .btn-white {
  position: relative;
  z-index: 1;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  padding: 3.5rem 0 1.5rem;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.875rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatShape {
  from {
    transform: translate(0, 0) rotate(0deg);
  }

  to {
    transform: translate(20px, 15px) rotate(3deg);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 7rem 0 2.5rem;
  background: var(--bg-alt);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.375rem;
  letter-spacing: -0.03em;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.breadcrumb-nav {
  display: flex;
  gap: 0.375rem;
  justify-content: center;
  margin-top: 0.75rem;
  font-size: 0.825rem;
}

.breadcrumb-nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.faq-item:hover {
  border-color: var(--gray-200);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--navy);
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  font-family: inherit;
  text-align: left;
  gap: 1rem;
}

.faq-q:hover {
  background: var(--gray-50);
}

.faq-q .icon {
  font-size: 0.8rem;
  color: var(--primary);
  transition: transform var(--duration) var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-q .icon {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 1.25rem 1.125rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--duration) var(--ease);
  margin-bottom: 0.75rem;
}

.contact-info-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  line-height: 1.5;
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  height: 100%;
  min-height: 380px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FLOATING CONTACT BUTTON ===== */
.messenger-container {
  position: fixed !important;
  bottom: 1.5rem !important;
  right: 1.5rem !important;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.messenger-popup {
  background: var(--white);
  padding: 1rem 2rem 1rem 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 280px;
  position: relative;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  border: 1px solid var(--border-soft);
}

.messenger-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Chat bubble arrow pointing down */
.messenger-popup::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.messenger-popup p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--navy);
  margin: 0;
}

.messenger-popup-close {
  position: absolute;
  top: 6px;
  right: 8px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  transition: color var(--duration) var(--ease);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.messenger-popup-close:hover {
  color: var(--error);
}

.messenger-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0084FF;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 132, 255, 0.4);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.messenger-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0, 132, 255, 0.5);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
  padding: 1rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s var(--ease);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-overlay.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}

.modal-close:hover {
  background: var(--gray-200);
  color: var(--navy);
}

.modal-school-img {
  height: 200px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}

.modal-school-img img {
  max-height: 160px;
  max-width: 80%;
  object-fit: contain;
}

.modal-school-info {
  padding: 1.75rem;
}

.modal-school-info h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.modal-loc {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9rem;
}

.modal-content {
  max-width: 580px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 0.875rem;
}

.modal-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.modal-info-item .label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.modal-info-item .value {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--navy);
}

.modal-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}

.modal-section h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.625rem;
}

.modal-tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.modal-tags li {
  background: var(--primary-soft);
  color: var(--primary);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.modal-features {
  list-style: none;
  padding: 0;
}

.modal-features li {
  padding: 0.375rem 0;
  font-size: 0.825rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.modal-features li::before {
  content: "✓";
  color: #27ae60;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}

.contact-form h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s var(--ease);
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 69, 60, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2.5rem;
  }

  .hero-stat {
    padding: 1.15rem 0.5rem;
    background: rgba(0, 0, 0, 0.25);
    /* Darker cards */
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-stat h3 {
    font-size: 1.6rem;
  }

  .hero-stat p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  margin-top: 0.5rem;
}

.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

  .services-grid,
  .schools-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {

  /* -- Sections -- */
  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  /* -- Navigation -- */
  .nav-bar .nav-inner {
    justify-content: space-between;
  }

  .nav-bar:not(.scrolled) .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .nav-bar:not(.scrolled) .nav-logo img {
    height: 48px;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .nav-bar:not(.scrolled) .nav-logo span {
    font-size: 1.35rem;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .nav-bar.scrolled .nav-logo {
    position: static;
    transform: none;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .nav-bar.scrolled .nav-logo img {
    height: 36px;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .nav-bar.scrolled .nav-logo span {
    font-size: 1.15rem;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    margin-left: auto;
    position: relative;
    z-index: 2;
    background: transparent;
  }

  .mobile-toggle:hover,
  .mobile-toggle:focus {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-bar.scrolled .mobile-toggle {
    border-color: var(--border);
    color: var(--navy);
  }

  .nav-bar.scrolled .mobile-toggle:hover,
  .nav-bar.scrolled .mobile-toggle:focus {
    background: var(--gray-50);
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 0.5rem 1.25rem 1rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    animation: dropIn 0.25s var(--ease);
  }

  .nav-links.open li {
    list-style: none;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-links.open li:last-child {
    border-bottom: none;
  }

  .nav-links.open a {
    color: var(--navy);
    padding: 0.875rem 0.5rem;
    width: 100%;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    text-align: left;
  }

  .nav-links.open a:hover {
    color: var(--primary);
    background: none;
  }

  .nav-links.open a.cta-btn {
    margin: 0.75rem 0 0.25rem;
    text-align: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-bottom: none;
  }

  .nav-links.open a.cta-btn:hover {
    background: var(--primary-hover);
    color: #fff;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0.5rem 1rem;
    transform: none;
    min-width: 0;
    border-radius: 0;
    display: none;
    border-left: 2px solid var(--primary);
    margin-left: 0.5rem;
  }

  .nav-dropdown .dropdown-menu a {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 400;
  }

  .nav-dropdown .dropdown-menu a:hover {
    color: var(--primary);
  }

  .nav-dropdown .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
    animation: dropIn 0.2s var(--ease);
  }

  /* -- Hero -- */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: center;
    /* Center vertically on mobile too */
    padding-top: 5rem;
    /* Space for navbar */
    padding-bottom: 2rem;
  }

  .hero-content {
    padding: 0 1.25rem;
    margin-top: 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.5vw, 3rem);
    line-height: 1.12;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    /* Stronger shadow for mobile legibility */
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2.25rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-weight: 400;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.25);
    /* Darker badge on mobile so it pops */
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    max-width: 100%;
    /* Go full width on small screens */
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    /* Larger buttons */
  }

  .hero-actions .btn-outline {
    background: rgba(0, 0, 0, 0.3);
    /* Darker glassy button */
    border-color: rgba(255, 255, 255, 0.3);
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-top: 2rem;
    max-width: 100%;
  }

  .hero-stat {
    padding: 0.75rem 0.4rem;
    border-radius: 10px;
  }

  .hero-stat h3 {
    font-size: 1.25rem;
  }

  .hero-stat p {
    font-size: 0.6rem;
    margin-top: 0.2rem;
  }

  .hero-scroll {
    bottom: 1.25rem;
  }

  .hero-scroll span {
    display: none;
  }

  /* -- Grids -- */
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid .contact-map {
    order: -1;
  }

  .fb-sidebar {
    align-items: center;
    margin-top: 1rem;
  }

  .fb-sidebar h3 {
    justify-content: center;
  }

  .services-grid,
  .schools-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem;
    text-align: center;
  }

  .service-card .service-icon {
    margin: 0 auto 1.25rem auto;
  }

  .school-card {
    border-radius: var(--radius-lg);
  }

  /* -- CTA Section -- */
  .cta-section {
    padding: 3rem 1.5rem;
    border-radius: var(--radius-lg);
  }

  .cta-section h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .cta-section p {
    font-size: 0.9rem;
  }

  /* -- Footer -- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand .nav-logo {
    justify-content: center;
  }

  .footer-col h4 {
    justify-content: center;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-info {
    align-items: center;
  }

  .footer-info p {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  /* -- About section -- */
  .about-content {
    text-align: center;
  }

  .about-content .section-tag {
    margin: 0 auto 1rem auto;
  }

  .about-image {
    height: 280px;
  }

  .about-features {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-feature {
    justify-content: center;
    text-align: center;
  }

  /* -- Contact -- */
  .contact-map {
    min-height: 280px;
  }

  /* -- Page Hero (subpages) -- */
  .page-hero {
    padding: 7rem 0 3rem;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-stats {
    gap: 0.75rem;
  }

  .hero-stat {
    flex: 1 1 42%;
  }

  .hero-stat h3 {
    font-size: 1.25rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .cta-section {
    padding: 2.5rem 1.25rem;
  }

  .cta-section h2 {
    font-size: 1.35rem;
  }

  .nav-inner {
    padding: 0 1rem;
  }

  .nav-logo img {
    height: 30px;
  }

  .nav-logo span {
    font-size: 0.9rem;
  }

  .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .btn-outline {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }

  .btn-white {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
  }

  .page-hero {
    padding: 6rem 0 2.5rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .faq-answer {
    font-size: 0.85rem;
    padding: 0 1rem 1rem;
  }
}

/* ===== RELATED LINKS (Internal Linking for SEO) ===== */
.related-links {
  margin-top: 2rem;
}

.related-links h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.related-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.related-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.related-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}