/* ============================================================
   MUSCON PATHWAYS — MAIN STYLESHEET
   Aesthetic: Refined editorial / Luxury education brand
   Fonts: Fraunces (display serif) + DM Sans (body)
   ============================================================ */
 
/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
  --navy: #0B1D35;
  --navy-mid: #1A3150;
  --navy-light: #2C4A6E;
  --gold: #C9973A;
  --gold-light: #E8B85C;
  --cream: #F9F5EE;
  --cream-dark: #EDE9E0;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-mid: #4A5568;
  --text-light: #718096;
  --border: rgba(11,29,53,0.1);
  --shadow-sm: 0 2px 8px rgba(11,29,53,0.08);
  --shadow-md: 0 8px 32px rgba(11,29,53,0.12);
  --shadow-lg: 0 24px 64px rgba(11,29,53,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
 
html { scroll-behavior: smooth; }
 
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
 
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select { font-family: inherit; }
 
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
 
.section { padding: 100px 0; }
 
/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
 
em { font-style: italic; color: var(--gold); }
 
/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
 
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
 
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }
 
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--cream); transform: translateY(-2px); }
 
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
 
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
 
/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(249,245,238,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
 
.nav-header.scrolled { box-shadow: var(--shadow-sm); }
 
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
 
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
 
.logo-mark-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}

.logo--light .logo-text { color: var(--white); }
.logo--light .logo-text em { color: rgba(255,255,255,0.7); }
.logo--light .logo-tagline { color: var(--gold-light); }

 
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
 
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: var(--transition);
}
 
.nav-links a:hover { color: var(--navy); background: var(--cream-dark); }
.nav-links a.active { color: var(--navy); font-weight: 500; }
 
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-weight: 500 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--navy-mid) !important; }
 
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
 
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.mobile-menu a { padding: 12px 0; font-size: 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu.open { display: flex; }
 
/* ============================================================
   HERO — REDESIGNED (two-panel, full-bleed)
   All hero styles now live in index.html <style> block,
   scoped with hero- prefixes to avoid conflicts.
   This base rule is kept minimal — just enough to anchor
   the section in the flow without fighting the inline grid.
   ============================================================ */
.hero {
  position: relative;
  margin-top: var(--nav-h);
}

/* hero-title base — used by redesign via .hero-title--redesign modifier */
.hero-title {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.1;
}

/* hero-subtitle base — modifier .hero-subtitle--redesign adds border treatment */
.hero-subtitle {
  color: var(--text-mid);
}
 
/* ============================================================
   STEPS STRIP
   ============================================================ */
.steps-strip {
  background: var(--navy);
  padding: 40px 0;
}
 
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
 
.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,151,58,0.5);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.step-text { display: flex; flex-direction: column; }
.step-text strong { color: var(--white); font-size: 0.95rem; font-weight: 500; }
.step-text span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
 
.step-arrow { color: rgba(255,255,255,0.2); font-size: 1.2rem; }
 
/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
 
.section-tag {
  display: inline-block;
  background: rgba(201,151,58,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
 
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
}
 
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
}
 
/* ============================================================
   DESTINATIONS GRID
   ============================================================ */
.destinations { background: var(--cream); }
 
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
 
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  display: block;
  box-shadow: var(--shadow-sm);
}
 
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.destinations-grid .dest-card:nth-child(4) { grid-column: 1 / 2; }
.destinations-grid .dest-card:nth-child(5) { grid-column: 2 / 3; }
 
/* Photo wrapper */
.dest-img-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
 
.dest-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
 
.dest-card:hover .dest-photo { transform: scale(1.05); }
 
/* Gradient overlay so text reads */
.dest-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,29,53,0.05) 0%,
    rgba(11,29,53,0.15) 40%,
    rgba(11,29,53,0.65) 100%
  );
}
 
/* Flag badge — bottom-left corner pill */
.dest-flag-badge {
  position: absolute;
  bottom: 44px;
  left: 14px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  border: 2px solid rgba(255,255,255,0.8);
  z-index: 2;
}
 
/* University name label on photo */
.dest-uni-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  z-index: 2;
}
 
/* Fallback gradients if image fails to load */
.dest-img-fallback-ireland { background: linear-gradient(135deg, #006400, #00A86B) !important; }
.dest-img-fallback-uk      { background: linear-gradient(135deg, #00247D, #C8102E) !important; }
.dest-img-fallback-canada  { background: linear-gradient(135deg, #A52020, #CC0000) !important; }
.dest-img-fallback-au      { background: linear-gradient(135deg, #00008B, #FFCD00) !important; }
.dest-img-fallback-nz      { background: linear-gradient(135deg, #000000, #00247D) !important; }
 
.dest-body { padding: 20px 22px 24px; }
.dest-body h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; font-family: var(--font-display); }
.dest-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
 
.dest-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.dest-tags span {
  padding: 3px 10px;
  background: var(--cream);
  border-radius: 50px;
  font-size: 0.73rem;
  color: var(--text-mid);
  border: 1px solid var(--border);
}
 
.dest-cta {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.dest-card:hover .dest-cta { gap: 8px; color: var(--gold); }
 
/* ============================================================
   AI TEASER
   ============================================================ */
.ai-teaser {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
 
.ai-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 80% 50%, rgba(201,151,58,0.12), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(44,74,110,0.5), transparent 50%);
}
 
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
 
.ai-tag { background: rgba(201,151,58,0.15); color: var(--gold-light); border-color: rgba(201,151,58,0.3); }
 
.ai-text .section-title { color: var(--white); }
.ai-text p { color: rgba(255,255,255,0.65); margin-bottom: 28px; font-size: 1rem; }
 
.ai-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.ai-features li { color: rgba(255,255,255,0.75); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
 
/* AI Chat Card */
.ai-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
 
.ai-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}
 
.ai-pulse {
  width: 10px; height: 10px;
  background: #00D98B;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
 
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,217,139,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,217,139,0); }
}
 
.ai-card-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
 
.ai-row { display: flex; gap: 10px; }
.ai-row--in { justify-content: flex-end; }
.ai-row--out { justify-content: flex-start; align-items: flex-start; }
 
.ai-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
}
 
.ai-bubble--user {
  background: rgba(201,151,58,0.2);
  color: rgba(255,255,255,0.85);
  border-radius: 16px 16px 4px 16px;
}
 
.ai-bubble--ai {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-radius: 16px 16px 16px 4px;
}
 
.ai-avatar {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
 
.ai-typing {
  display: flex;
  gap: 4px;
  padding: 8px 16px;
  align-self: flex-start;
}
 
.ai-typing span {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
 
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}
 
/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream-dark); }
 
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
 
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
 
.testi-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
 
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
 
.testi-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.testi-card--featured p { color: rgba(255,255,255,0.7); }
 
.testi-author { display: flex; align-items: center; gap: 12px; }
 
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}
 
.testi-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testi-card--featured .testi-author strong { color: var(--white); }
 
.testi-author span { font-size: 0.8rem; color: var(--text-light); }
.testi-card--featured .testi-author span { color: rgba(255,255,255,0.5); }
 
/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
 
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,151,58,0.2), transparent 60%);
}
 
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
 
.cta-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
 
.cta-inner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; }
 
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
 
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 32px;
}
 
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
 
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 280px;
}
 
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
 
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
 
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
 
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
 
/* ============================================================
   BEYOND THE DEGREE
   ============================================================ */
.beyond { background: var(--cream-dark); }
 
.beyond-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
 
.beyond-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
 
.beyond-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
 
.beyond-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 24px;
  align-items: start;
}
 
.beyond-card--featured h4 { color: var(--white); }
.beyond-card--featured p { color: rgba(255,255,255,0.7); }
 
.beyond-icon { font-size: 2rem; margin-bottom: 12px; }
.beyond-card--featured .beyond-icon { font-size: 2.5rem; margin-bottom: 0; grid-row: 1 / 3; }
 
.beyond-card h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.beyond-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }
 
.beyond-note {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--gold);
}
 
/* ============================================================
   MUSCON TALENT
   ============================================================ */
.talent { background: var(--cream); }
 
.talent-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
 
.talent-badge-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
 
.talent-logo { display: flex; align-items: center; gap: 12px; }
 
.talent-services { display: flex; flex-wrap: wrap; gap: 8px; }
.talent-service-tag {
  padding: 6px 14px;
  border: 1px solid rgba(201,151,58,0.4);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--gold-light);
}
 
.talent-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
 
.talent-text p { color: var(--text-mid); margin-bottom: 16px; font-size: 0.97rem; line-height: 1.7; }
 
.talent-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 36px;
}
 
.talent-features li { display: flex; gap: 16px; align-items: flex-start; }
 
.tf-icon {
  width: 40px; height: 40px;
  background: rgba(201,151,58,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
 
.talent-features strong { display: block; font-size: 0.92rem; color: var(--navy); margin-bottom: 2px; }
.talent-features span { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
 
@media (max-width: 1024px) {
  .talent-inner { grid-template-columns: 1fr; gap: 40px; }
  .beyond-card--featured { grid-column: auto; grid-template-columns: 1fr; }
  .beyond-card--featured .beyond-icon { grid-row: auto; }
}
 
@media (max-width: 768px) {
  .beyond-grid { grid-template-columns: 1fr; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
 
/* ============================================================
   PAGE INNER (for sub-pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
 
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(201,151,58,0.15), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
 
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
 
/* ============================================================
   COUNTRY PAGE SECTIONS
   ============================================================ */
.country-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
 
.country-section:last-child { border-bottom: none; }
 
.country-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
 
.country-section-grid.reverse { direction: rtl; }
.country-section-grid.reverse > * { direction: ltr; }
 
.country-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1.5px solid var(--border);
}
 
.country-info-card h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}
 
.country-info-card p {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
 
.country-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
 
.fact-item { display: flex; flex-direction: column; gap: 2px; }
.fact-item strong { font-size: 1.1rem; color: var(--navy); font-family: var(--font-display); }
.fact-item span { font-size: 0.8rem; color: var(--text-light); }
 
.country-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
 
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
}
 
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
 
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
 
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); background: var(--white); }
 
.form-group textarea { resize: vertical; min-height: 120px; }
 
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
 
.form-submit { width: 100%; padding: 16px; background: var(--navy); color: var(--white); border: none; border-radius: 50px; font-size: 1rem; font-weight: 500; cursor: pointer; transition: var(--transition); }
.form-submit:hover { background: var(--navy-mid); transform: translateY(-2px); }
 
.contact-info h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.contact-info p { color: var(--text-mid); margin-bottom: 36px; }
 
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
 
.contact-item-icon {
  width: 48px; height: 48px;
  background: rgba(11,29,53,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
 
.contact-item-text strong { display: block; color: var(--navy); margin-bottom: 2px; }
.contact-item-text span { font-size: 0.9rem; color: var(--text-mid); }
 
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid .dest-card:nth-child(5) { grid-column: 1 / -1; }
  
  .ai-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
 
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
 
  .section { padding: 64px 0; }
  
  .steps-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .step-arrow { display: none; }
  
  .destinations-grid { grid-template-columns: 1fr; }
  .destinations-grid .dest-card:nth-child(4),
  .destinations-grid .dest-card:nth-child(5) { grid-column: 1; }
  
  .testimonials-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
 
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  
  .country-section-grid { grid-template-columns: 1fr; }
  .country-section-grid.reverse { direction: ltr; }
}