/* ============================================================
   ingilizcekursudenizli.com — Premium Design System
   Palette: Deep Navy · Crisp White · Champagne Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  --navy:       #0B1D3A;
  --navy-mid:   #122548;
  --navy-light: #1A3460;
  --gold:       #C9A96E;
  --gold-light: #E2C992;
  --gold-pale:  #F5EDD8;
  --white:      #FAFAF8;
  --off-white:  #F2F0EA;
  --slate:      #8A96A8;
  --text-dark:  #1A1F2E;
  --text-mid:   #4A5568;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-xl: 40px;

  --shadow-card: 0 4px 32px rgba(11,29,58,0.10);
  --shadow-gold: 0 8px 40px rgba(201,169,110,0.22);
  --shadow-lift: 0 20px 60px rgba(11,29,58,0.18);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Layout Utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 140px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(11, 29, 58, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(11,29,58,0.25);
}

.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius-xl);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav__cta::after { display: none !important; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile .nav__link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,169,110,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,52,96,0.8) 0%, transparent 60%);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
}

.hero__title strong {
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.70);
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__stat-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(201,169,110,0.2);
}

.hero__stat {
  padding: 28px 32px;
  border-right: 1px solid rgba(201,169,110,0.12);
}

.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ─── Section Headings ───────────────────────────────────── */
.section-head {
  margin-bottom: 64px;
}

.section-head--center { text-align: center; }

.section-head__title { color: var(--navy); margin: 12px 0; }
.section-head__title--white { color: var(--white); }

.section-head__desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.8;
}

.section-head--center .section-head__desc { margin: 0 auto; }

/* Divider */
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0;
}

.gold-line--center { margin: 20px auto; }

/* ─── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.card__body { padding: 36px; }

.card--navy {
  background: var(--navy);
  color: var(--white);
}

.card--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.card--bordered {
  background: transparent;
  border: 1px solid rgba(11,29,58,0.1);
  box-shadow: none;
}

.card--bordered:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ─── Language Cards ─────────────────────────────────────── */
.lang-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: transform var(--transition);
}

.lang-card:hover { transform: translateY(-6px); }

.lang-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.lang-card:hover .lang-card__bg { transform: scale(1.05); }

.lang-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,29,58,0.92) 100%);
}

.lang-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}

.lang-card__flag {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.lang-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.lang-card__sub {
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Language bg colors */
.lang-en { background: linear-gradient(135deg, #1a3460, #0b1d3a); }
.lang-fr { background: linear-gradient(135deg, #1a2860, #2a1a5e); }
.lang-de { background: linear-gradient(135deg, #2a1a1a, #3a2010); }
.lang-ar { background: linear-gradient(135deg, #1a3a1a, #0b2a0b); }

/* ─── Placement Test Banner ──────────────────────────────── */
.placement-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2);
}

.placement-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
}

.placement-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
}

.placement-banner__badge span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.placement-banner__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ─── FAQ / Accordion ─────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(11,29,58,0.1);
}

.faq-item:first-child { border-top: 1px solid rgba(11,29,58,0.1); }

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}

.faq-trigger:hover { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding var(--transition);
}

.faq-body.open { max-height: 400px; }

.faq-body__inner {
  padding: 0 0 24px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
  max-width: 680px;
}

/* ─── Floating CTA Buttons ───────────────────────────────── */
.floating-ctas {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all var(--transition);
  white-space: nowrap;
}

.float-btn:hover {
  transform: translateX(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.float-btn--wa {
  background: #25D366;
  color: #fff;
}

.float-btn--call {
  background: var(--gold);
  color: var(--navy);
}

.float-btn svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

.float-btn__label { display: none; }

/* ─── Contact Form ─────────────────────────────────────────── */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.12);
}

.form-control::placeholder { color: var(--slate); }

select.form-control { appearance: none; cursor: pointer; }

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.alert--success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: #065f46;
}

.alert--error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #7f1d1d;
}

/* ─── Camp Cards ─────────────────────────────────────────── */
.camp-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.camp-card__header {
  padding: 48px 40px 36px;
  position: relative;
}

.camp-card__header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.camp-card--summer .camp-card__header {
  background: linear-gradient(135deg, #1a3460, #0b5a8a);
}

.camp-card--winter .camp-card__header {
  background: linear-gradient(135deg, #0b1d3a, #1a2a4a);
}

.camp-card__body {
  background: var(--white);
  padding: 32px 40px 40px;
  border: 1px solid rgba(11,29,58,0.08);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.camp-card__icon {
  font-size: 3.2rem;
  margin-bottom: 16px;
}

.camp-card__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--white);
}

.camp-card__age {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(201,169,110,0.2);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 12px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.feature-list__check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  margin-top: 1px;
}

/* ─── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--slate);
  margin-top: 2px;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.star { color: var(--gold); font-size: 0.85rem; }

/* ─── Service Cards ──────────────────────────────────────── */
.service-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11,29,58,0.1);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ─── Age Group Badges ───────────────────────────────────── */
.age-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.age-tab {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1.5px solid rgba(11,29,58,0.15);
  color: var(--text-mid);
  transition: all var(--transition);
  cursor: pointer;
}

.age-tab:hover,
.age-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__brand-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 16px 0 24px;
  font-weight: 300;
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer__link:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.footer__contact-item svg { flex-shrink: 0; margin-top: 3px; }

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer__social {
  display: flex;
  gap: 14px;
}

.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.5);
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── Info Map Section ───────────────────────────────────── */
.info-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
}

.info-box__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11,29,58,0.1);
}

.info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: var(--text-mid);
  align-items: flex-start;
}

.info-row svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Region Tags ────────────────────────────────────────── */
.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.region-tag {
  padding: 5px 14px;
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─── Scroll Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── Page Hero (Inner Pages) ────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,169,110,0.07) 0%, transparent 70%),
    linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}

.page-hero__content { position: relative; z-index: 1; }
.page-hero__title { color: var(--white); margin: 12px 0; }
.page-hero__desc {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  margin-top: 16px;
}

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(255,255,255,0.25); }

/* ─── Progress / Stats ───────────────────────────────────── */
.progress-bar {
  height: 4px;
  background: rgba(11,29,58,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 1s ease;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__stat-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section--lg { padding: 80px 0; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .hero__content { padding: 100px 0 260px; }
  .hero__stat-bar { position: static; margin-top: 0; }
  .hero__stat {
    padding: 20px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }

  .placement-banner { padding: 36px 28px; }

  .float-btn__label { display: none; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .page-hero { padding: 130px 0 60px; }

  .camp-card__header { padding: 36px 28px 28px; }
  .camp-card__body { padding: 28px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }

  .btn { padding: 12px 24px; font-size: 0.82rem; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ─── Print ──────────────────────────────────────────────── */
@media print {
  .nav, .floating-ctas, .footer { display: none; }
}
