/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0d1b3e;
  --navy-mid: #162347;
  --navy-light: #1e3060;
  --gold: #b8963e;
  --gold-light: #d4af5a;
  --gold-pale: #f0e0b0;
  --cream: #faf8f3;
  --white: #ffffff;
  --text-dark: #0d1b3e;
  --text-muted: #5a6a8a;
  --border: rgba(184,150,62,0.2);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; max-width: 100%; }
body { font-family: 'Jost', sans-serif; color: var(--text-dark); background: var(--cream); overflow-x: hidden; width: 100%; max-width: 100%; position: relative; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 5%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img {
  height: 52px; width: 52px; object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 4px;
}
.nav-logo-text {
  display: flex; flex-direction: column;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.nav-logo-name span { color: var(--gold-light); }
.nav-logo-tag {
  font-size: 0.6rem; letter-spacing: 3px;
  color: var(--gold-pale); text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex; align-items: center; gap: 22px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  position: relative; padding-bottom: 4px;
  transition: color 0.3s;
  white-space: nowrap;  
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold-light);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 20px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: background 0.3s, transform 0.2s !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: white; display: block; transition: all 0.3s; }

/* ===== HERO ===== */
#hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-parallax-bg {
  position: absolute; inset: -60px;
  background: 
    linear-gradient(165deg, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.75) 50%, rgba(13,27,62,0.88) 100%),
    url('https://images.unsplash.com/photo-1467269204594-9661b134dd2b?w=1800&q=80') center/cover no-repeat;
  will-change: transform;
  z-index: 0;
}
.hero-stars {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
}
.star {
  position: absolute; background: var(--gold-light);
  border-radius: 50%; animation: twinkle 3s infinite ease-in-out;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; color: var(--white); line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.75); font-weight: 300;
  line-height: 1.8; max-width: 600px; margin: 0 auto 40px;
  letter-spacing: 0.5px;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 38px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.4s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,150,62,0.4); }
.btn-primary:hover::before { left: 100%; }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2px; cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.scroll-indicator span {
  font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{ transform: scaleY(1); opacity:1} 50%{ transform:scaleY(0.5); opacity:0.4} }

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(13,27,62,0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(184,150,62,0.3);
  display: flex; justify-content: center;
  padding: 20px 5%;
  opacity: 0; animation: fadeIn 1s 1.2s forwards;
}
.stats-inner {
  display: flex; gap: 0; max-width: 900px; width: 100%;
}
.stat-item {
  flex: 1; text-align: center; padding: 8px 20px;
  border-right: 1px solid rgba(184,150,62,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 4px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
/* Reveal animation is gated behind html.js so content is ALWAYS visible if JS fails to run.
   The inline <head> script adds 'js' to <html>; if it (or JS) never loads, items stay visible. */
.reveal {
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
html.js .reveal { opacity: 0; }
html.js .reveal.visible, html.js .reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease;
}
html.js .reveal-left { opacity: 0; }
html.js .reveal-left.visible, html.js .reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease;
}
html.js .reveal-right { opacity: 0; }
html.js .reveal-right.visible, html.js .reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ===== SECTION UTILITY ===== */
.section { padding: 100px 5%; }
.section-alt { background: var(--navy); }
.container { max-width: 1160px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.2;
  margin-bottom: 20px;
}
.title-dark { color: var(--navy); }
.title-light { color: var(--white); }
.section-desc {
  font-size: 1rem; line-height: 1.8; color: var(--text-muted);
  max-width: 520px; font-weight: 300;
}
.section-desc-light { color: rgba(255,255,255,0.65); }
.gold-line {
  width: 50px; height: 2px; background: var(--gold);
  margin: 20px 0 40px;
}

/* ===== ABOUT SECTION ===== */
#about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 2px;
}
.about-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--navy); color: var(--white);
  padding: 28px 32px; text-align: center;
  border: 3px solid var(--gold);
}
.about-img-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; color: var(--gold-light); font-weight: 700;
  line-height: 1;
}
.about-img-badge .txt {
  font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.about-img-border {
  position: absolute; top: -16px; left: -16px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 40px;
}
.about-feature {
  display: flex; gap: 14px; align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(184,150,62,0.1);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.feature-title { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.feature-text { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CENTERED SECTION INTROS (Manpower, Students, Countries) =====
   These sections' intros had no rule, so they defaulted to left-aligned inside the
   1160px container while other sections were centered. Center them for consistency.
   (The Tools header is already centered via inline styles.) */
#manpower .manpower-intro,
#students .students-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#manpower .manpower-content,
#students .students-content {
  text-align: center;
}
#manpower .section-desc,
#students .section-desc,
#countries .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#manpower .gold-line,
#students .gold-line {
  margin-left: auto;
  margin-right: auto;
}
#manpower .manpower-btns {
  justify-content: center;
}
#countries .countries-intro {
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}

/* ===== SERVICES ===== */
#services { background: var(--navy); }
#students { background: var(--cream); }
.students-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 60px;
}
.student-card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.student-card:hover { box-shadow: 0 24px 60px rgba(13,27,62,0.12); transform: translateY(-6px); }
.student-card-icon {
  font-size: 3rem; margin-bottom: 20px;
}
.student-card-tag {
  display: inline-block; font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(184,150,62,0.08); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 2px; margin-bottom: 16px;
}
.student-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--navy); font-weight: 600;
  margin-bottom: 16px; line-height: 1.2;
}
.student-card p {
  font-size: 0.88rem; line-height: 1.9; color: var(--text-muted);
  margin-bottom: 24px;
}
.student-features {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px;
}
.student-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--text-dark);
}
.student-feature::before {
  content: '✦'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; margin-top: 2px;
}
.student-card-bg-num {
  position: absolute; right: -10px; bottom: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem; font-weight: 700;
  color: rgba(184,150,62,0.05); line-height: 1; pointer-events: none;
}
.service-card {
  background: var(--navy-mid);
  padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: all 0.4s;
  cursor: default;
  border: 1px solid rgba(184,150,62,0.1);
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover { background: var(--navy-light); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700;
  color: rgba(184,150,62,0.12);
  position: absolute; top: 20px; right: 24px;
  line-height: 1;
}
.service-icon { font-size: 2rem; margin-bottom: 20px; }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--white);
  margin-bottom: 14px; line-height: 1.3;
}
.service-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 14px; }

/* ===== COUNTRIES ===== */
#countries { background: var(--cream); }
.countries-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 60px;
}
.countries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.country-card {
  position: relative; overflow: hidden;
  border-radius: 2px; cursor: pointer;
  height: 220px;
}
.country-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.country-card:hover img { transform: scale(1.08); }
.country-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.9) 0%, rgba(13,27,62,0.2) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px;
  transition: background 0.4s;
}
.country-card:hover .country-overlay {
  background: linear-gradient(to top, rgba(13,27,62,0.95) 0%, rgba(13,27,62,0.4) 60%);
}
.country-flag { font-size: 1.6rem; margin-bottom: 6px; }
.country-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--white);
}
.country-tag {
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); margin-top: 4px;
}

/* ===== PROCESS ===== */
#process { background: var(--navy); padding: 100px 5%; }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; margin-top: 60px;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px; background: rgba(184,150,62,0.3);
  z-index: 0;
}
.process-step {
  text-align: center; padding: 0 12px; position: relative; z-index: 1;
}
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--gold-light);
  transition: all 0.3s;
}
.process-step:hover .step-circle {
  background: var(--gold); color: var(--navy);
}
.step-title {
  font-size: 0.82rem; font-weight: 600; color: var(--white);
  margin-bottom: 8px; letter-spacing: 0.5px;
}
.step-desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.testimonial-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 20px 50px rgba(13,27,62,0.1);
  transform: translateY(-4px);
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: rgba(184,150,62,0.15);
  line-height: 0.6; margin-bottom: 24px;
}
.testimonial-text {
  font-size: 0.9rem; line-height: 1.8;
  color: var(--text-muted); margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-dest { font-size: 0.72rem; color: var(--gold); letter-spacing: 1px; }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 6px; }

/* ===== WHY US ===== */
#why { background: var(--navy); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.why-list { margin-top: 40px; }
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid rgba(184,150,62,0.15);
}
.why-item:first-child { padding-top: 0; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--gold); font-weight: 700;
  flex-shrink: 0; width: 36px; line-height: 1;
}
.why-title { font-weight: 600; color: var(--white); margin-bottom: 6px; font-size: 0.95rem; }
.why-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.why-visual {
  position: relative;
}
.why-visual img {
  width: 100%; height: 500px; object-fit: cover;
}
.why-badge {
  position: absolute; top: -20px; left: -20px;
  background: var(--gold);
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.why-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.why-badge-txt { font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); font-weight: 600; }

/* ===== CTA BANNER ===== */
#cta-banner {
  position: relative; overflow: hidden;
  padding: 100px 5%;
  background: 
    linear-gradient(135deg, rgba(13,27,62,0.95) 0%, rgba(22,35,71,0.9) 100%),
    url('https://images.unsplash.com/photo-1520608421671-2a4e1e9e1e23?w=1400&q=80') center/cover;
  background-attachment: fixed;
  text-align: center;
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); font-weight: 300; line-height: 1.3; margin-bottom: 20px;
}
.cta-inner p {
  color: rgba(255,255,255,0.7); margin-bottom: 40px;
  font-size: 1rem; line-height: 1.8;
}
.cta-inner em { font-style: italic; color: var(--gold-light); }

/* ===== CONTACT ===== */
#contact { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
}
.contact-info-item {
  display: flex; gap: 16px; margin-bottom: 32px; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--navy); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-label { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 400; }
/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dark); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border: 1px solid rgba(13,27,62,0.15);
  background: var(--white); color: var(--text-dark);
  font-family: 'Jost', sans-serif; font-size: 0.9rem;
  outline: none; border-radius: 2px;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--navy); color: var(--white);
  border: none; font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border-radius: 2px;
}
.form-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ===== REDIRECT BOX (for subpages without inline form) ===== */
.redirect-box {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 48px 36px;
  text-align: center;
}
.redirect-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.redirect-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.redirect-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.2s;
}
.redirect-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: #080f20;
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(184,150,62,0.2);
}
.footer-brand p {
  color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.8;
  margin-top: 16px; max-width: 260px;
}
/* ----- FOOTER LOGO (was invisible: no CSS rule existed) ----- */
.footer-logo { margin-bottom: 4px; }
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 1.55rem; letter-spacing: 1px; color: var(--white); line-height: 1;
}
.footer-logo-text .logo-gm {
  color: var(--gold); margin-right: 2px;
}
.footer-tagline {
  color: var(--gold-light); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; margin-top: 8px; font-weight: 500;
}
.footer-title {
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
  transition: color 0.3s; display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links a::before { content: '→'; font-size: 0.7rem; color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  width: 40px; height: 40px; border: 1px solid rgba(184,150,62,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: all 0.3s; border-radius: 50%;
}
.social-btn svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-bottom span { color: var(--gold); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulseWA 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 1100; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); font-size: 1.3rem;
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  letter-spacing: 2px;
  position: relative; z-index: 2;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu-backdrop {
  position: absolute; inset: 0; z-index: 1;
}
.mobile-close {
  position: absolute; top: 18px; right: 5%; z-index: 3;
  font-size: 2rem; line-height: 1; color: white; cursor: pointer;
  background: none; border: none;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.mobile-close:active { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid, .why-grid, .contact-grid, .countries-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { right: 0; bottom: -20px; }
  .services-grid, .testimonials-grid, .students-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-stats .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(184,150,62,0.2); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .countries-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== FIX NAVBAR SQUEEZING ON MEDIUM SCREENS (HORIZONTAL SCROLL) ===== */
@media (max-width: 1050px) and (min-width: 769px) {
  .nav-links {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .nav-links::-webkit-scrollbar {
    height: 3px;
  }
}

/* ===== FREE TOOLS / CALCULATOR SHOWCASE SECTION ===== */
.section-tools {
  background: linear-gradient(180deg, var(--cream) 0%, var(--navy) 30%);
  padding-bottom: 0;
  padding-top: 40px;
}
.tools-hero {
  max-width: 1200px;
  margin: 0 auto;
}
.tools-header {
  padding-top: 60px;
  padding-bottom: 50px;
}

/* Tool Cards Showcase Grid */
.tools-showcase {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 20px;
  padding: 0 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Main featured tool card */
.tool-card-main {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(13,27,62,0.35), 0 0 0 1px rgba(184,150,62,0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tool-card-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 70px rgba(13,27,62,0.45), 0 0 0 1px rgba(184,150,62,0.25);
}
.tool-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.tool-card-body {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tool-card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.tool-card-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

/* Preview data inside the main card */
.tool-card-preview {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,62,0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.preview-metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184,150,62,0.1);
}
.preview-label {
  font-size: 0.85rem;
  color: var(--gold-pale);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.preview-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.preview-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.preview-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
}
.preview-row span:last-child {
  color: var(--white);
  font-weight: 600;
}

/* Feature badges */
.tool-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.feat-item {
  font-size: 0.82rem;
  color: var(--gold-pale);
  background: rgba(255,255,255,0.06);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(184,150,62,0.15);
}

/* CTA area */
.tool-card-cta {
  padding: 24px 40px;
  background: rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.btn-tool-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: auto;
}
.btn-tool-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184,150,62,0.35);
}
.arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}
.btn-tool-primary:hover .arrow {
  transform: translateX(4px);
}
.tool-card-sub {
  font-size: 0.82rem;
  color: var(--gold-pale);
  margin: 0;
}

/* Side cards */
.tool-card-side {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 30px rgba(13,27,62,0.08);
}
.tool-card-side:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(13,27,62,0.15);
  border-color: var(--gold);
}
.tool-card-side .tool-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.tool-card-side .tool-card-headline {
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.3;
}
.tool-card-headline.small {
  font-size: 1.15rem !important;
}
.tool-card-side p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.btn-tool-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}
.btn-tool-link:hover {
  color: var(--gold);
}

/* Mobile responsive tools section */
@media (max-width: 992px) {
  .tools-showcase {
    grid-template-columns: 1fr;
  }
  .tool-card-main {
    order: 1;
  }
  .tool-card-side {
    order: 2;
  }
  .tool-card-side:nth-of-type(2) {
    order: 3;
  }
}

@media (max-width: 768px) {
  .section-tools {
    padding-top: 20px;
  }
  .tools-header {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .tool-card-body {
    padding: 24px;
  }
  .tool-card-cta {
    padding: 20px 24px;
  }
  .tool-card-headline {
    font-size: 1.5rem !important;
  }
  .preview-value {
    font-size: 1.6rem !important;
  }
  .preview-metric {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .btn-tool-primary {
    padding: 12px 24px;
    font-size: 0.88rem;
  }
  .tool-card-features {
    gap: 8px;
  }
  .feat-item {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
  .tool-card-side {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .tool-card-body {
    padding: 20px 16px;
  }
  .tool-card-cta {
    padding: 16px;
  }
  .tool-card-headline {
    font-size: 1.3rem !important;
  }
  .tool-card-icon {
    font-size: 2.2rem;
  }
  .preview-value {
    font-size: 1.4rem !important;
  }
}

/* ============================================================
   PREMIUM ENHANCEMENT LAYER
   Same identity (navy + gold), elevated finish.
   Appended so it overrides component rules without touching
   the working structure or reveal failsafe below.
   ============================================================ */
:root {
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --gold-grad: linear-gradient(135deg, #b8963e 0%, #d4af5a 55%, #f0e0b0 100%);
  --gold-grad-soft: linear-gradient(135deg, rgba(184,150,62,0.20), rgba(212,175,90,0.05));
  --shadow-soft: 0 18px 44px -20px rgba(13,27,62,0.28);
  --shadow-lift: 0 40px 80px -30px rgba(13,27,62,0.50);
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* Premium easing on every interactive surface */
.service-card, .student-card, .testimonial-card, .resource-card,
.manpower-card, .country-card, .tool-card-main, .tool-card-side,
.btn-primary, .btn-outline, .btn-secondary-outline, .nav-cta, .form-submit,
.social-btn, .about-feature, .process-step, .feat-item, .about-img-wrap img {
  transition-timing-function: var(--ease);
}

/* ===== NAVBAR: always glass, refined ===== */
#navbar {
  background: rgba(13,27,62,0.35);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(184,150,62,0.16);
  padding: 15px 5%;
}
#navbar.scrolled { background: rgba(13,27,62,0.82); }
.nav-cta {
  border-radius: 999px !important;
  padding: 11px 26px !important;
  box-shadow: 0 8px 22px -8px rgba(184,150,62,0.55);
}

/* ===== BUTTONS: pill + gold gradient ===== */
.btn-primary {
  border-radius: 999px;
  background: var(--gold-grad);
  box-shadow: 0 10px 26px -8px rgba(184,150,62,0.55);
}
.btn-primary:hover { box-shadow: 0 16px 36px -8px rgba(184,150,62,0.7); }
.btn-outline { border-radius: 999px; border-color: rgba(255,255,255,0.32); }
.btn-secondary-outline { border-radius: 999px; }

/* ===== SECTION RHYTHM: more breathing room ===== */
.section { padding: 120px 5%; }

/* ===== GOLD LINES + LABELS: gradient ===== */
.gold-line { background: var(--gold-grad); width: 64px; height: 3px; border-radius: 3px; }
.section-label { color: var(--gold-light); letter-spacing: 5px; }
.section-label::before { background: var(--gold-grad); width: 38px; height: 2px; }

/* ===== ICON TILES: soft gradient chips ===== */
.feature-icon, .manpower-icon, .resource-icon, .student-icon, .service-icon {
  display: inline-flex; align-items: center; justify-content: center;
}
.service-icon, .student-icon, .manpower-icon, .resource-icon, .feature-icon {
  background: var(--gold-grad-soft);
  border: 1px solid rgba(184,150,62,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}
.service-icon, .student-icon, .manpower-icon, .resource-icon {
  width: 66px; height: 66px; flex-shrink: 0; border-radius: var(--radius-sm);
  font-size: 1.9rem;
}
.service-icon { margin-bottom: 24px; }
.manpower-icon { margin-bottom: 16px; }
.resource-icon { margin-bottom: 16px; }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; font-size: 1.25rem; }

/* ===== CARDS: rounded + layered shadow ===== */
.service-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(184,150,62,0.12);
}
.service-card:hover { box-shadow: var(--shadow-lift); }
.student-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--gold);
}
.student-card:hover { box-shadow: var(--shadow-lift); }
.testimonial-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(184,150,62,0.10);
  border-bottom: 3px solid transparent;
}
.testimonial-card:hover { box-shadow: var(--shadow-lift); border-bottom-color: var(--gold); }
.resource-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.resource-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }
.manpower-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--white);
  border: 1px solid rgba(184,150,62,0.12);
  padding: 36px 28px;
}
.manpower-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }
.country-card { border-radius: var(--radius); box-shadow: var(--shadow-soft); }

/* ===== DARK SECTION DEPTH (radial gold glow, no clipping) ===== */
#services { background: radial-gradient(900px 520px at 85% -10%, rgba(184,150,62,0.13), transparent 60%), var(--navy); }
#why, #faq { background: radial-gradient(820px 520px at 12% -10%, rgba(184,150,62,0.11), transparent 55%), var(--navy); }
#process { background: radial-gradient(900px 520px at 50% -20%, rgba(184,150,62,0.10), transparent 60%), var(--navy); }
#why { background: radial-gradient(820px 520px at 12% -10%, rgba(184,150,62,0.11), transparent 55%), var(--navy); }

/* ===== HERO depth glow ===== */
#hero::after {
  content: ''; position: absolute; top: -22%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 620px; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(184,150,62,0.18), transparent 70%);
  filter: blur(40px);
}

/* ===== ABOUT image polish ===== */
.about-img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.about-img-badge { border-radius: var(--radius-sm); }

/* ===== FORM polish ===== */
.form-group input, .form-group select, .form-group textarea {
  border-radius: 12px; box-shadow: 0 1px 2px rgba(13,27,62,0.04);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(184,150,62,0.14);
}
.form-submit { border-radius: 999px; background: var(--gold-grad); letter-spacing: 2px; }
.form-submit:hover { background: var(--gold-grad); color: var(--navy); }
.btn-download, .btn-service { border-radius: 999px; }

/* ===== FOOTER polish ===== */
footer { background: linear-gradient(180deg, #0a1429 0%, #060c1a 100%); }
.social-btn { border-radius: 50%; }

/* ============================================================
   REDESIGN LAYER 2 — structure, contrast fixes, premium tiles
   (navbar dropdown, services grid, manpower rebuild, students
    + testimonials + checklist readability, process tiles)
   Keeps navy+gold identity; overrides earlier rules safely.
   ============================================================ */

/* ----- NAVBAR DROPDOWN ----- */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown .caret { font-size: 0.6rem; transition: transform 0.25s var(--ease); }
.nav-dropdown .dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 232px; background: rgba(13,27,62,0.96);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(184,150,62,0.22); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 10px; list-style: none;
  opacity: 0; visibility: hidden; transition: all 0.25s var(--ease); z-index: 1200;
}
.nav-dropdown .dropdown-menu::before {
  content: ''; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 13px; height: 13px; background: rgba(13,27,62,0.96);
  border-left: 1px solid rgba(184,150,62,0.22); border-top: 1px solid rgba(184,150,62,0.22);
}
.nav-dropdown .dropdown-menu li { width: 100%; }
.nav-dropdown .dropdown-menu a {
  display: flex; align-items: center; gap: 11px; padding: 11px 14px;
  color: rgba(255,255,255,0.82) !important; font-size: 0.72rem; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 10px; white-space: normal;
}
.nav-dropdown .dropdown-menu a::after { display: none; }
.nav-dropdown .dropdown-menu a:hover { background: rgba(184,150,62,0.14); color: var(--gold-light) !important; }
.nav-dropdown .dd-ico { font-size: 1rem; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown.open .caret { transform: rotate(180deg); color: var(--gold-light); }

/* ----- generic secondary outline button (was missing base style) ----- */
.btn-secondary-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border: 1.5px solid var(--gold);
  color: var(--navy); background: transparent; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-secondary-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ----- SERVICES: clean premium grid tiles ----- */
.services-grid-tiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px;
}
.services-grid-tiles .service-card {
  background: var(--navy-mid); border: 1px solid rgba(184,150,62,0.16);
  border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.services-grid-tiles .service-card:hover { background: var(--navy-light); box-shadow: var(--shadow-lift); transform: translateY(-6px); }
.services-grid-tiles .service-icon {
  width: 64px; height: 64px; border-radius: var(--radius-sm); margin-bottom: 22px;
  background: var(--gold-grad-soft); border: 1px solid rgba(184,150,62,0.28);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.9rem;
}
.services-grid-tiles .service-number { color: rgba(212,175,90,0.22); }
.services-grid-tiles .service-title { color: var(--white); }
.services-grid-tiles .service-desc { color: rgba(255,255,255,0.66); flex-grow: 1; }
.services-grid-tiles .service-link { color: var(--gold-light); }

/* ----- MANPOWER: stat tiles ----- */
.manpower-stats-tiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 56px 0 36px;
}
.mstat-tile {
  background: var(--white); border: 1px solid rgba(184,150,62,0.14);
  border-radius: var(--radius); padding: 30px 20px; text-align: center;
  box-shadow: var(--shadow-soft); transition: all 0.4s var(--ease);
}
.mstat-tile:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); border-color: rgba(184,150,62,0.4); }
.mstat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.mstat-label { font-size: 0.74rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-top: 10px; }

/* ----- MANPOWER grid (premium tiles) ----- */
.manpower-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 24px;
}
.manpower-card {
  background: var(--white); border: 1px solid rgba(184,150,62,0.14);
  border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow-soft);
  text-align: center; transition: all 0.4s var(--ease);
}
.manpower-card .manpower-icon {
  width: 66px; height: 66px; border-radius: var(--radius-sm); margin: 0 auto 18px;
  background: var(--gold-grad-soft); border: 1px solid rgba(184,150,62,0.28);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.9rem;
}
.manpower-card .manpower-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.manpower-card p { font-size: 0.86rem; line-height: 1.7; color: var(--text-muted); }
.manpower-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); border-color: rgba(184,150,62,0.42); }

/* ----- RECRUITMENT PROCESS: premium numbered tiles ----- */
.process-section { margin-top: 90px; }
.process-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px;
}
.process-tile {
  background: var(--navy-mid); border: 1px solid rgba(184,150,62,0.18);
  border-radius: var(--radius); padding: 34px 26px; text-align: center;
  position: relative; transition: all 0.4s var(--ease); box-shadow: var(--shadow-soft);
}
.process-tile:hover { background: var(--navy-light); box-shadow: var(--shadow-lift); transform: translateY(-5px); }
.step-badge {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--gold-grad); color: var(--navy); font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(184,150,62,0.6);
}
.process-tile .step-title { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.process-tile .step-desc { color: rgba(255,255,255,0.6); font-size: 0.8rem; line-height: 1.6; }

/* ----- STUDENTS: premium cards (strong contrast) ----- */
#students { background: var(--cream); }
.students-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.student-card {
  background: var(--white); border-top: 4px solid var(--gold); border-radius: var(--radius);
  padding: 44px 38px; box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
}
.student-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }
.student-card .student-icon {
  width: 64px; height: 64px; border-radius: var(--radius-sm); margin-bottom: 18px;
  background: var(--gold-grad-soft); border: 1px solid rgba(184,150,62,0.28);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.9rem;
}
.student-card .student-tag { color: var(--gold); }
.student-card h3 { color: var(--navy); }
.student-card p { color: var(--text-muted); }
.student-checklist .check-item { color: var(--text-dark); font-size: 0.86rem; line-height: 1.7; }
.btn-service {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; padding: 12px 24px;
  border-radius: 999px; background: var(--gold-grad); color: var(--navy) !important;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 8px 22px -8px rgba(184,150,62,0.55); transition: all 0.3s var(--ease);
}
.btn-service:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(184,150,62,0.7); }

/* ----- CONTRAST FIX: Testimonials + Resources were white text on cream (invisible).
   Convert both to dark sections so titles/body are readable. ----- */
#testimonials, #resources { background: var(--navy); }
#testimonials .section-title, #resources .section-title { color: var(--white); }
#testimonials .section-desc-light, #resources .section-desc-light { color: rgba(255,255,255,0.7); }

/* Testimonials premium cards */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 38px 30px;
  border: 1px solid rgba(184,150,62,0.12); border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-soft); transition: all 0.4s var(--ease); position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); border-bottom-color: var(--gold); }
.testimonial-text { color: var(--text-muted); }
.author-name { color: var(--navy); }

/* ----- RESOURCES / CHECKLISTS: premium download tiles ----- */
.resources-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.resource-card {
  background: var(--white); border: 1px solid rgba(184,150,62,0.14); border-radius: var(--radius);
  padding: 34px 26px; box-shadow: var(--shadow-soft); transition: all 0.4s var(--ease);
  text-align: center; display: flex; flex-direction: column;
}
.resource-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); border-color: rgba(184,150,62,0.42); }
.resource-card .resource-icon {
  width: 62px; height: 62px; border-radius: var(--radius-sm); margin: 0 auto 16px;
  background: var(--gold-grad-soft); border: 1px solid rgba(184,150,62,0.28);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.resource-card h3 { color: var(--navy); font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin: 6px 0 10px; }
.resource-card p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.6; flex-grow: 1; }
.resource-meta { font-size: 0.72rem; color: var(--gold); letter-spacing: 1px; margin: 14px 0 18px; }
.btn-download {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px; background: var(--gold-grad); color: var(--navy) !important;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 8px 22px -8px rgba(184,150,62,0.5); transition: all 0.3s var(--ease);
}
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(184,150,62,0.7); }
.resources-footer-link a { color: var(--gold-light); }

/* Depth glow for the two new dark sections (consistency) */
#testimonials { background: radial-gradient(820px 520px at 85% -10%, rgba(184,150,62,0.12), transparent 60%), var(--navy); }
#resources { background: radial-gradient(820px 520px at 15% -10%, rgba(184,150,62,0.12), transparent 60%), var(--navy); }

/* ----- responsive for new grids ----- */
@media (max-width: 980px) {
  .services-grid-tiles { grid-template-columns: repeat(2, 1fr); }
  .manpower-grid, .process-tiles, .testimonials-grid, .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .manpower-stats-tiles { grid-template-columns: repeat(2, 1fr); }
  .students-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-grid-tiles, .manpower-grid, .process-tiles, .testimonials-grid, .resources-grid, .manpower-stats-tiles { grid-template-columns: 1fr; }
}

/* ============================================================
   REDESIGN LAYER 3 — fixes for previously-unstyled blocks
   (END TO END gold heading, contact form, FAQ, student stats,
    footer tagline). These elements had NO css (class mismatch
    / missing rules), which is why they looked broken.
   ============================================================ */

/* ----- END TO END heading: readable gold gradient on cream ----- */
.title-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* ----- STUDENTS stat tiles ----- */
.students-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px;
}
.student-stat {
  background: var(--white); border: 1px solid rgba(184,150,62,0.14);
  border-radius: var(--radius); padding: 26px 18px; text-align: center;
  box-shadow: var(--shadow-soft); transition: all 0.4s var(--ease);
}
.student-stat:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); border-color: rgba(184,150,62,0.4); }
.students-stats .stat-big {
  font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.students-stats .stat-small {
  font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 8px;
}

/* ----- CONTACT: real class names (.contact-detail / .detail-* / .form-group-contact / .btn-submit) ----- */
.contact-form-card {
  background: var(--white); border: 1px solid rgba(184,150,62,0.16);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-soft);
}
.contact-detail {
  display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
}
.contact-detail .detail-icon {
  width: 46px; height: 46px; flex-shrink: 0; background: var(--navy);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-detail .detail-label {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.contact-detail .detail-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 400; }
.contact-detail .detail-value a { color: var(--navy); }
.contact-detail .detail-value a:hover { color: var(--gold); }
.form-group-contact {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px;
}
.form-group-contact label {
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dark); font-weight: 500;
}
.form-group-contact input,
.form-group-contact select,
.form-group-contact textarea {
  padding: 14px 16px; border: 1px solid rgba(13,27,62,0.15); background: var(--white);
  color: var(--text-dark); font-family: 'Jost', sans-serif; font-size: 0.9rem;
  outline: none; border-radius: var(--radius-sm); transition: border-color 0.3s;
}
.form-group-contact input:focus,
.form-group-contact select:focus,
.form-group-contact textarea:focus { border-color: var(--gold); }
.form-group-contact textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 16px; background: var(--gold-grad); color: var(--navy);
  border: none; font-family: 'Jost', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  border-radius: var(--radius-sm); transition: all 0.3s var(--ease);
  box-shadow: 0 8px 22px -8px rgba(184,150,62,0.5);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(184,150,62,0.7); }
.btn-submit:disabled { opacity: 0.7; cursor: default; transform: none; }

/* ----- FAQ: clean premium accordion ----- */
#faq { background: var(--navy); }
#faq .section-title { color: var(--white); }
.faq-container {
  max-width: 880px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 16px;
}
.faq-item {
  background: var(--white); border: 1px solid rgba(184,150,62,0.14);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: all 0.3s var(--ease);
}
.faq-item.active { border-color: rgba(184,150,62,0.5); box-shadow: var(--shadow-lift); }
.faq-question {
  display: flex; align-items: center; gap: 16px; padding: 22px 26px; cursor: pointer;
}
.faq-q-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--gold-grad);
  color: var(--navy); font-size: 1.2rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center; transition: transform 0.3s var(--ease);
}
.faq-item.active .faq-q-icon { transform: rotate(45deg); }
.faq-q-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600;
  color: var(--navy); flex: 1; line-height: 1.35;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer p { padding: 0 26px 24px 72px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 420px; }

/* ----- FOOTER tagline: readable gold ----- */
.footer-tagline {
  color: var(--gold-light); font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; margin-top: 8px; font-weight: 500;
}

/* ----- responsive for new blocks ----- */
@media (max-width: 980px) {
  .students-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-card { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .students-stats { grid-template-columns: 1fr; }
  .faq-answer p { padding: 0 20px 22px 20px; }
}