/* ===== 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; }
body { font-family: 'Jost', sans-serif; color: var(--text-dark); background: var(--cream); overflow-x: hidden; }
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 {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { 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; }

/* ===== SERVICES ===== */
#services { background: var(--navy); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 60px;
}
#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-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: 38px; height: 38px; 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: 2px;
}
.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: 999; 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;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-close {
  position: absolute; top: 24px; right: 5%;
  font-size: 2rem; color: white; cursor: pointer; background: none; border: none;
}

/* ===== 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;
  }
}