/* === TOKENS === */
:root {
  --navy: #0B2545;
  --navy-deep: #071A33;
  --navy-mid: #13315C;
  --teal: #0FA8A0;
  --teal-light: #14D4C9;
  --teal-pale: #E6FAF8;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --ink: #1A1A2E;
  --grey-900: #2D2D3F;
  --grey-600: #6B6B80;
  --grey-400: #9E9EB0;
  --grey-200: #E2E2EA;
  --grey-100: #F2F2F5;
  --gold: #C9A84C;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(11,37,69,0.06);
  --shadow-md: 0 8px 32px rgba(11,37,69,0.10);
  --shadow-lg: 0 20px 60px rgba(11,37,69,0.14);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--teal);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-top: 12px;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-lead {
  font-size: 16px; color: var(--grey-600);
  max-width: 560px; margin-top: 16px; line-height: 1.7;
}

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11,37,69,0.06);
  transition: all 0.3s ease;
}
.nav.scrolled { background: rgba(250,248,245,0.96); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 8px 24px;
}
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--grey-600);
  letter-spacing: 0.02em; transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 1px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white) !important;
  padding: 10px 24px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  transition: all 0.25s ease;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal); transform: translateY(-1px); }
.nav-mobile { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile svg { width: 24px; height: 24px; stroke: var(--navy); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 5px;
  font-size: 15px; font-weight: 600; color: var(--grey-600);
  cursor: pointer; border: none; background: none;
  font-family: var(--font-body); transition: color 0.2s;
}
.nav-dropdown-toggle:hover { color: var(--navy); }
.nav-dropdown-toggle svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--grey-200);
  padding: 8px 0; min-width: 240px;
  opacity: 0; visibility: hidden;
  transition: all 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 14px; font-weight: 500;
  color: var(--grey-900); transition: all 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--grey-100); color: var(--teal); }
.nav-dropdown-menu a::after { display: none; }
/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a1a2e 0%, #1a3a5e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,168,160,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 210, 200, 0.15);
  border: 1px solid rgba(0, 210, 200, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-light);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero h1 em {
  color: var(--teal-light);
  font-style: italic;
}

.hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-link {
  display: block;
  width: 100%;
  max-width: 500px;
  transition: transform 0.3s ease;
}

.hero-image-link:hover {
  transform: translateY(-8px);
}

.hero-image-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-cropped-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* Responsive hero image */
@media (max-width: 968px) {
  .hero-image-wrapper {
    height: 350px;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero-image-wrapper {
    height: 300px;
    max-width: 320px;
  }
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: var(--white);
  padding: 16px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 700;
  transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(15,168,160,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 16px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--teal-light); color: var(--teal-light); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--navy);
  padding: 14px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--grey-200);
  transition: all 0.3s ease; cursor: pointer;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
/* === ABOUT === */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.about-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,37,69,0.6) 100%);
}
.about-visual-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 36px;
}
.about-visual blockquote {
  font-family: var(--font-display); font-size: 20px;
  color: var(--white); line-height: 1.5; font-style: italic;
}
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.pillar-card {
  background: var(--grey-100); border-radius: var(--radius);
  padding: 24px; border-left: 3px solid var(--teal);
  transition: all 0.25s ease;
}
.pillar-card:hover { background: var(--teal-pale); transform: translateX(4px); }
.pillar-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pillar-card p { font-size: 12.5px; color: var(--grey-600); line-height: 1.6; }
.pillar-num {
  font-family: var(--font-display); font-size: 28px;
  color: var(--teal); opacity: 0.3; line-height: 1; margin-bottom: 8px;
}
/* About page extras */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--grey-200);
  transition: all 0.3s ease; text-align: center;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.value-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width: 26px; height: 26px; stroke: var(--teal); }
.value-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--grey-600); line-height: 1.65; }
.timeline { max-width: 700px; margin: 48px auto 0; position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: var(--grey-200);
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -33px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline-year { font-size: 12px; font-weight: 700; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; }
.timeline-title { font-size: 16px; font-weight: 700; color: var(--navy); margin: 4px 0; }
.timeline-desc { font-size: 14px; color: var(--grey-600); line-height: 1.6; }
/* === PROGRAMMES === */
.programmes { background: var(--cream); }
.prog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.prog-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--grey-200);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.prog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.prog-card:hover::before { transform: scaleX(1); }
.prog-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.prog-card-icon svg { width: 28px; height: 28px; stroke: var(--teal); }
.prog-card h3 {
  font-family: var(--font-display); font-size: 22px;
  color: var(--navy); margin-bottom: 10px;
}
.prog-card .prog-sub {
  font-size: 12px; font-weight: 600; color: var(--teal);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.prog-card p { font-size: 14px; color: var(--grey-600); line-height: 1.65; margin-bottom: 20px; }
.prog-features { list-style: none; }
.prog-features li {
  font-size: 13px; color: var(--grey-900); padding: 8px 0;
  border-bottom: 1px solid var(--grey-100);
  display: flex; align-items: flex-start; gap: 10px;
}
.prog-features li:last-child { border-bottom: none; }
.prog-features li::before { content: '✓'; color: var(--teal); font-weight: 800; font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.prog-stats { display: flex; gap: 16px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--grey-200); }
.prog-stat { text-align: center; flex: 1; }
.prog-stat-num { font-family: var(--font-display); font-size: 22px; color: var(--navy); line-height: 1; }
.prog-stat-label { font-size: 10px; color: var(--grey-400); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
/* Detail page styles */
.prog-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-mid) 100%);
  padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.prog-hero::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,168,160,0.1) 0%, transparent 70%);
}
.prog-hero .eyebrow { color: var(--teal-light); }
.prog-hero .section-title { color: var(--white); }
.prog-hero .section-lead { color: rgba(255,255,255,0.65); margin: 16px auto 0; max-width: 640px; }
.info-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.info-chip {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 20px; text-align: center;
}
.info-chip-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px;
}
.info-chip-value { font-family: var(--font-display); font-size: 20px; color: var(--teal-light); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 40px 0; }
.stat-box {
  background: var(--grey-100); border-radius: var(--radius);
  padding: 24px 16px; text-align: center;
  border-bottom: 3px solid var(--teal);
}
.stat-box-num { font-family: var(--font-display); font-size: 32px; color: var(--navy); line-height: 1; }
.stat-box-label { font-size: 12px; color: var(--grey-600); margin-top: 6px; }
.syl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.syl-block { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--grey-200); }
.syl-block h5 {
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  color: var(--navy); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--teal);
}
.syl-block ul { list-style: none; }
.syl-block li {
  font-size: 14px; color: var(--grey-900); padding: 8px 0 8px 18px;
  position: relative; border-bottom: 1px solid var(--grey-100); line-height: 1.4;
}
.syl-block li:last-child { border-bottom: none; }
.syl-block li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 6px; height: 6px; background: var(--teal); border-radius: 50%;
}
.feat-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin: 24px 0; }
.feat-list li {
  font-size: 14px; color: var(--grey-900); padding: 10px 0 10px 22px;
  position: relative; border-bottom: 1px solid var(--grey-100);
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700;
}
.feat-list li b { color: var(--navy); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.process-step { text-align: center; position: relative; }
.process-step::after {
  content: '→'; position: absolute; right: -14px; top: 28px;
  color: var(--grey-400); font-size: 20px;
}
.process-step:last-child::after { display: none; }
.process-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(11,37,69,0.2);
}
.process-step h5 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: 12px; color: var(--grey-600); line-height: 1.5; }
/* === WHY US === */
.why { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,168,160,0.08) 0%, transparent 70%);
}
.why .section-title { color: var(--white); }
.why .section-lead { color: rgba(255,255,255,0.55); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(15,168,160,0.3); transform: translateY(-4px); }
.why-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(15,168,160,0.15); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-card-icon svg { width: 22px; height: 22px; stroke: var(--teal-light); }
.why-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.compare-wrap { margin-top: 60px; }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius); overflow: hidden;
}
.compare-table th {
  padding: 16px 20px; text-align: left;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase;
}
.compare-table th:first-child { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
.compare-table th:nth-child(2) { background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.4); }
.compare-table th:nth-child(3) { background: rgba(15,168,160,0.15); color: var(--teal-light); }
.compare-table td {
  padding: 14px 20px; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compare-table td:first-child { font-weight: 600; color: var(--white); }
.compare-table td:nth-child(2) { color: rgba(255,255,255,0.35); }
.compare-table td:nth-child(3) { color: var(--teal-light); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
/* === FAQ === */
.faq { background: var(--white); }
.faq-grid { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--grey-200); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--navy);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-toggle {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%; background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.faq-toggle svg { width: 12px; height: 12px; stroke: var(--grey-600); transition: transform 0.3s ease; }
.faq-item.open .faq-toggle { background: var(--teal); }
.faq-item.open .faq-toggle svg { stroke: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px; color: var(--grey-600); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }
/* === CTA === */
.cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,168,160,0.1) 0%, transparent 60%);
}
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy);
  padding: 8px 24px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 28px;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.cta h2 em { font-style: italic; color: var(--teal-light); }
.cta-lead {
  font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 500px; margin: 0 auto 40px; line-height: 1.7;
}
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 580px; margin: 0 auto 36px; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 18px 20px; text-align: left;
}
.contact-card-icon { color: var(--teal-light); flex-shrink: 0; }
.contact-card-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.contact-card-val { font-size: 14px; font-weight: 600; color: var(--white); margin-top: 2px; }
.social-links { display: flex; gap: 16px; justify-content: center; }
.social-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 14px 24px;
  font-size: 13px; font-weight: 700; color: var(--white);
  transition: all 0.25s ease;
}
.social-link:hover { background: rgba(255,255,255,0.12); border-color: var(--teal-light); }
/* === FOOTER === */
.footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.35);
  padding: 60px 24px 30px; font-size: 12px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-brand img { height: 48px; width: auto; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 12px; max-width: 300px; }
.footer h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.5); transition: color 0.2s; font-size: 13px; }
.footer a:hover { color: var(--teal-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.35);
}
/* === PAGE-SPECIFIC === */
/* Page header for inner pages */
.page-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-mid) 100%);
  padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,168,160,0.1) 0%, transparent 70%);
}
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px);
  color: var(--white); line-height: 1.1; margin-bottom: 16px;
  position: relative; z-index: 2;
}
.page-header h1 em { font-style: italic; color: var(--teal-light); }
.page-header p {
  font-size: 17px; color: rgba(255,255,255,0.6);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
  position: relative; z-index: 2;
}
/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--grey-200);
  transition: all 0.3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-quote {
  font-size: 15px; color: var(--grey-900); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
  position: relative; padding-left: 20px;
  border-left: 3px solid var(--teal);
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; color: var(--teal);
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--grey-600); margin-top: 2px; }
/* Blog/Resources */
.blog-grid-section { padding: 80px 0; background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--grey-200);
  transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-display); font-size: 32px;
}
.blog-card-content { padding: 24px; }
.blog-card-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.blog-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--grey-600); line-height: 1.6; margin-bottom: 16px; }
.blog-card-link { font-size: 13px; font-weight: 700; color: var(--teal); }
/* Contact page */
.contact-grid-full { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
.contact-info-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--grey-200);
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--grey-100);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--teal); }
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-400); }
.contact-info-value { font-size: 15px; font-weight: 600; color: var(--navy); margin-top: 4px; }
.contact-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--grey-200);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 14px 16px; border: 1px solid var(--grey-200);
  border-radius: var(--radius); font-size: 14px; font-family: var(--font-body);
  transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--teal); }
textarea.form-input { resize: vertical; min-height: 120px; }
/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.anim-fade-up { opacity: 0; animation: fadeInUp 0.7s ease forwards; }
.anim-fade { opacity: 0; animation: fadeIn 0.6s ease forwards; }
.anim-slide-right { opacity: 0; animation: slideInRight 0.8s ease forwards; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
/* === RESPONSIVE === */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--grey-200);
  }
  .nav-links.open .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 8px 0 8px 16px;
    min-width: auto;
  }
  .nav-mobile { display: block; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .about-grid { grid-template-columns: 1fr; }
  .prog-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-chips { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .syl-grid { grid-template-columns: 1fr; }
  .feat-list { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid-full { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 60px 0; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-outline { width: 100%; justify-content: center; }
  .prog-stats { flex-direction: column; gap: 10px; }
  .social-links { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* === FLOATING ACTION BUTTONS === */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-whatsapp:hover {
  background: #20BA5A;
}

.fab-call {
  background: var(--teal);
}

.fab-call:hover {
  background: var(--teal-light);
}

.fab svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 600px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  .fab {
    width: 50px;
    height: 50px;
  }
  .fab svg {
    width: 24px;
    height: 24px;
  }
}

/* === GOOGLE FORM EMBED === */
.google-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  overflow: hidden;
}

.google-form-iframe {
  width: 100%;
  height: 800px;
  border: none;
  display: block;
}

@media (max-width: 968px) {
  .google-form-iframe {
    height: 900px;
  }
}

@media (max-width: 600px) {
  .google-form-wrapper {
    padding: 10px;
  }
  .google-form-iframe {
    height: 1000px;
  }
}
