/* ============================================================
   FOREFRONT GLOBAL — Student Consultancy
   style.css
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --navy: #0b1d35;
  --navy-mid: #122848;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f7f4ef;
  --white: #ffffff;
  --text-dark: #0d1f35;
  --text-mid: #445571;
  --text-light: #8898aa;
  --border: rgba(201,168,76,0.25);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  background: rgba(11,29,53,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
nav.scrolled {
  height: 64px;
  background: rgba(11,29,53,0.99);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 700; font-size: 20px;
  color: var(--navy); flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.02em;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block; font-size: 0.65rem; font-family: var(--sans);
  font-weight: 300; letter-spacing: 0.15em;
  color: var(--gold-light); text-transform: uppercase; margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
  transform-origin: left;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-weight: 600 !important;
  border-radius: 4px;
  text-decoration: none !important;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.45); }
.nav-cta::after { display: none !important; }

/* ── Hamburger ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: var(--navy); z-index: 999;
  padding: 28px 5% 36px;
  border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 0;
  transform: translateY(-20px); opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0); opacity: 1; pointer-events: all;
}
.mobile-menu a {
  text-decoration: none; color: rgba(255,255,255,0.8);
  font-size: 1rem; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .nav-cta { margin-top: 20px; text-align: center; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600&q=80');
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(11,29,53,0.82) 0%,
    rgba(11,29,53,0.55) 50%,
    rgba(11,29,53,0.9) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; max-width: 780px; padding: 0 24px;
  animation: fadeUp 1.1s 0.3s both;
}
@keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 1.05rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 520px; margin: 0 auto 36px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-primary {
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 30px rgba(201,168,76,0.4);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,0.55); }
.btn-outline {
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white); font-weight: 400;
  font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  transition: background 0.25s, border-color 0.25s;
  display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--navy); padding: 0; }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.stat-item {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.stat-item:hover { background: rgba(201,168,76,0.06); }
.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem; font-weight: 600;
  color: var(--gold); line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 6px; display: block;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 100px 5%; }
.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-weight: 500;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
h2.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 300; line-height: 1.12;
  color: var(--navy); margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h2.section-title em { font-style: italic; color: var(--gold); }
h2.section-title.light { color: var(--white); }
h2.section-title.light em { color: var(--gold-light); }
.section-sub {
  font-size: 1rem; line-height: 1.7; color: var(--text-mid);
  max-width: 480px; font-weight: 300;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text .lead {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 300; line-height: 1.65;
  color: var(--text-dark); margin: 24px 0;
}
.about-text .body-copy {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 36px;
}
.about-image-grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 12px;
}
.about-image-grid .img-wrap {
  overflow: hidden; border-radius: 6px; position: relative;
}
.about-image-grid .img-wrap:first-child { grid-row: span 2; }
.about-image-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.about-image-grid .img-wrap:hover img { transform: scale(1.06); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--navy); padding: 100px 5%; }
.features-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; flex-wrap: wrap; gap: 24px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border-color: rgba(201,168,76,0.3);
}
.feature-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform 0.5s;
}
.feature-card:hover .feature-img { transform: scale(1.04); }
.feature-img-wrap { overflow: hidden; }
.feature-body { padding: 28px 26px 30px; }
.feature-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--navy); }
.feature-card h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  color: var(--white); margin-bottom: 12px; line-height: 1.2;
}
.feature-card p {
  font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.feature-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500;
  color: var(--gold); text-decoration: none;
  transition: gap 0.25s;
}
.feature-link:hover { gap: 12px; }
.feature-link svg { width: 14px; height: 14px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }
.services-header { max-width: 560px; margin-bottom: 64px; }
.services-tabs {
  display: flex; gap: 0; border-bottom: 1px solid rgba(11,29,53,0.12);
  margin-bottom: 52px; overflow-x: auto; scrollbar-width: none;
}
.services-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 12px 28px; background: none; border: none;
  font-family: var(--sans); font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-light); cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn:hover:not(.active) { color: var(--text-dark); }
.service-panels { position: relative; }
.service-panel { display: none; }
.service-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-panel-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 8px;
}
.service-panel-text h3 {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--navy); margin-bottom: 16px;
}
.service-panel-text p {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-mid);
  margin-bottom: 28px; font-weight: 300;
}
.service-list { list-style: none; margin-bottom: 32px; }
.service-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text-dark); padding: 8px 0;
  border-bottom: 1px solid rgba(11,29,53,0.06);
}
.service-list li:last-child { border: none; }
.service-list li::before {
  content: ''; flex-shrink: 0; margin-top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations { background: var(--navy); padding: 100px 5%; }
.destinations-header { margin-bottom: 52px; }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dest-card {
  position: relative; overflow: hidden; border-radius: 8px;
  aspect-ratio: 3/4; cursor: pointer;
}
.dest-card:first-child { grid-column: span 2; aspect-ratio: unset; min-height: 400px; }
.dest-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.dest-card:hover .dest-img { transform: scale(1.08); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,29,53,0.92) 0%, rgba(11,29,53,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 24px;
  transition: background 0.35s;
}
.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(11,29,53,0.97) 0%, rgba(11,29,53,0.25) 60%);
}
.dest-flag { font-size: 1.6rem; margin-bottom: 6px; }
.dest-country {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  color: var(--white); margin-bottom: 4px;
}
.dest-card:first-child .dest-country { font-size: 2rem; }
.dest-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  transform: translateY(8px); opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  font-weight: 300; line-height: 1.5;
}
.dest-card:hover .dest-desc { transform: translateY(0); opacity: 1; }
.dest-univ {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--cream); }
.process-header { text-align: center; max-width: 520px; margin: 0 auto 72px; }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 28px; left: calc(10% + 20px); right: calc(10% + 20px);
  height: 1px; background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}
.step {
  text-align: center; padding: 0 12px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  color: var(--gold); margin-bottom: 20px;
  border: 2px solid var(--gold);
  position: relative; z-index: 2;
  transition: background 0.3s, transform 0.3s;
}
.step:hover .step-num { background: var(--gold); color: var(--navy); transform: scale(1.1); }
.step h4 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  color: var(--navy); margin-bottom: 10px;
}
.step p {
  font-size: 0.82rem; line-height: 1.65; color: var(--text-mid); font-weight: 300;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--navy); padding: 100px 5%; }
.testimonials-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 32px 28px;
  transition: transform 0.35s, border-color 0.35s;
}
.testi-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.3); }
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 2px; }
.testi-text {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.8);
  margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
}
.testi-name {
  font-size: 0.88rem; font-weight: 500; color: var(--white); display: block;
}
.testi-meta {
  font-size: 0.75rem; color: rgba(255,255,255,0.4); display: block; margin-top: 2px;
}

/* ============================================================
   APPLY / CONTACT FORM
   ============================================================ */
.apply-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3660 100%);
  padding: 100px 5%;
  position: relative; overflow: hidden;
}
.apply-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.apply-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.apply-text .lead {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 300;
  line-height: 1.65; color: rgba(255,255,255,0.75);
  margin: 20px 0 36px;
}
.apply-perks { list-style: none; margin-bottom: 40px; }
.apply-perks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.apply-perks li:last-child { border: none; }
.check-icon {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 10px; height: 10px; color: var(--navy); }
.apply-form {
  background: var(--white); border-radius: 12px;
  padding: 44px 40px; box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}
.apply-form h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  color: var(--navy); margin-bottom: 6px;
}
.apply-form .form-sub {
  font-size: 0.85rem; color: var(--text-light); margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-mid);
  margin-bottom: 8px; font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid rgba(11,29,53,0.12);
  border-radius: 4px; font-family: var(--sans);
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: none; border-radius: 4px; cursor: pointer;
  font-family: var(--sans); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-light);
  transition: transform 0.25s, box-shadow 0.25s;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(11,29,53,0.35);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(11,29,53,0.5); }
.form-success {
  text-align: center; padding: 40px 20px;
  display: none;
}
.form-success svg { width: 56px; height: 56px; color: var(--gold); margin-bottom: 16px; }
.form-success h4 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  color: var(--navy); margin-bottom: 10px;
}
.form-success p { font-size: 0.9rem; color: var(--text-mid); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #070f1d;
  padding: 72px 5% 40px;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}
.footer-brand .nav-logo { margin-bottom: 18px; display: inline-flex; }
.footer-tagline {
  font-size: 0.88rem; line-height: 1.7;
  color: rgba(255,255,255,0.45); margin-bottom: 28px; font-weight: 300;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.5);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  font-size: 0.85rem;
}
.social-link:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  text-decoration: none; color: rgba(255,255,255,0.45);
  font-size: 0.87rem; font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:first-child { grid-column: span 2; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .apply-inner { grid-template-columns: 1fr; gap: 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  section { padding: 72px 5%; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .service-panel.active { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .apply-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 220px; text-align: center; }
}
