/* ============================================
   FUTURES LINK 1 — Global Stylesheet
   Design System: Premium Editorial Dark
   ============================================ */

@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=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@3.26.0/dist/tabler-icons.min.css');

:root {
  --navy: #0B1628;
  --navy-mid: #122040;
  --navy-light: #1a3060;
  --gold: #C8892A;
  --gold-light: #E5A840;
  --gold-pale: #F5D080;
  --crimson: #C0392B;
  --white: #F8F5EF;
  --grey: #8A95A8;
  --grey-light: #C5CDD8;
  --text: #D4D9E2;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --glow: 0 0 40px rgba(200,137,42,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ══════════════════════════════
   NAVIGATION — fond blanc
══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  transition: var(--transition);
}
nav.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav-logo img {
  height: 56px;
  width: auto;
  /* logo sur fond blanc : pas de filtre */
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border: 1px solid rgba(200,137,42,0.3);
  border-top: 3px solid var(--gold);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(11,22,40,0.06);
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(200,137,42,0.06);
  padding-left: 1.75rem;
}
.nav-cta {
  background: var(--gold) !important;
  color: #ffffff !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold-light) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
  border-left: 1px solid rgba(11,22,40,0.12);
  padding-left: 0.75rem;
}
.lang-switch a {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey) !important;
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  transition: color 0.2s;
}
.lang-switch a:hover, .lang-switch a.lang-active {
  color: var(--gold) !important;
}
.lang-switch span { color: rgba(11,22,40,0.2); font-size: 0.7rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0.65rem;
  margin: 0;
  min-width: 48px;
  min-height: 48px;
  background: transparent;
  border: none;
  border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
nav.nav-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
nav.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
nav.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ══════════════════════════════
   BREADCRUMB
══════════════════════════════ */
.breadcrumb-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(200,137,42,0.12);
  padding: 0.65rem 0;
  margin-top: 74px;
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-family: var(--font-cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.breadcrumb-bar a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.breadcrumb-bar a:hover { opacity: 0.7; }
.breadcrumb-bar .sep { color: rgba(200,137,42,0.4); }
.breadcrumb-bar .current { color: var(--white); }

/* ══════════════════════════════
   CONTAINER
══════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════
   HERO — HOME
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(200,137,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(18,32,64,0.8) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #0d1e3a 50%, #0a1525 100%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(200,137,42,0.1) 0%, transparent 55%),
    linear-gradient(135deg, rgba(11,22,40,0.94) 0%, rgba(11,22,40,0.82) 45%, rgba(11,22,40,0.92) 100%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(200,137,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,137,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 74px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--grey-light);
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(200,137,42,0.15);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.3rem;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

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

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

/* ══════════════════════════════
   SECTION STYLES
══════════════════════════════ */
.section {
  padding: 6rem 0;
}
.section-dark { background: var(--navy); }
.section-mid { background: var(--navy-mid); }
.section-accent {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-top: 1px solid rgba(200,137,42,0.2);
  border-bottom: 1px solid rgba(200,137,42,0.2);
}

.section-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-lead {
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ══════════════════════════════
   CARDS
══════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--navy-mid);
  border: 1px solid rgba(200,137,42,0.12);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,137,42,0.35);
  box-shadow: var(--glow);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.card-icon .ti {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.card-text {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.6;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  color: var(--gold);
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.card-link:hover { gap: 0.75rem; }

/* ══════════════════════════════
   INFO BLOCKS (services pages)
══════════════════════════════ */
.info-block {
  background: var(--navy-mid);
  border: 1px solid rgba(200,137,42,0.12);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}
.info-block h3 {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.info-block p,
.info-block ul { color: var(--grey-light); font-size: 0.92rem; }
.info-block ul { padding-left: 1.25rem; }
.info-block ul li { margin-bottom: 0.4rem; }

/* ══════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════ */
.page-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-bottom: 1px solid rgba(200,137,42,0.15);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,137,42,0.06) 0%, transparent 60%);
}
.page-hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.page-hero-eyebrow > .ti {
  font-size: 1rem;
  flex-shrink: 0;
  letter-spacing: normal;
  text-transform: none;
}
.nav-links .dropdown-menu a .ti {
  font-size: 0.95rem;
  margin-right: 0.35rem;
  vertical-align: -0.1em;
}
.page-hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 600px;
}

.page-hero-with-image {
  min-height: clamp(320px, 48vh, 520px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  background: var(--navy);
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-with-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(11,22,40,0.96) 0%, rgba(11,22,40,0.82) 42%, rgba(11,22,40,0.55) 100%);
  pointer-events: none;
}
.page-hero-with-image::before {
  display: none;
}
.page-hero-with-image .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6.5rem 2rem 3.5rem;
}

/* ══════════════════════════════
   PARTNERS LIST
══════════════════════════════ */
.partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
}
.partner-item {
  background: rgba(200,137,42,0.05);
  border: 1px solid rgba(200,137,42,0.1);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--grey-light);
  font-family: var(--font-cond);
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.partner-item:hover {
  background: rgba(200,137,42,0.12);
  color: var(--gold-pale);
  border-color: rgba(200,137,42,0.3);
}

/* ══════════════════════════════
   WARNING BOX
══════════════════════════════ */
.warning-box {
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  border-left: 3px solid var(--crimson);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
}
.warning-box h4 {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e74c3c;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}
.warning-box p { font-size: 0.88rem; color: var(--grey-light); }

/* ══════════════════════════════
   PROCESS STEPS
══════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(200,137,42,0.12);
  border: 1px solid rgba(200,137,42,0.12);
}
.step {
  background: var(--navy-mid);
  padding: 2rem 1.5rem;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,137,42,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.85rem; color: var(--grey-light); }

/* ══════════════════════════════
   PRICING TABLE
══════════════════════════════ */
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:nth-child(even) { background: rgba(255,255,255,0.02); }
.pricing-label { font-size: 0.88rem; color: var(--grey-light); }
.pricing-value {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-top: 1px solid rgba(200,137,42,0.2);
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section h2 em { font-style: italic; color: var(--gold-light); }
.cta-section p {
  color: var(--grey-light);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #080e1a;
  border-top: 1px solid rgba(200,137,42,0.15);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(200,137,42,0.2));
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--grey);
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--grey);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

.footer-site-credit {
  font-size: 0.68rem;
  color: var(--grey);
  text-align: center;
  margin: 0;
  padding: 1.25rem 2rem 0;
  line-height: 1.5;
}
.footer-site-credit a {
  color: var(--gold);
  text-decoration: none;
}
.footer-site-credit a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

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

/* ══════════════════════════════
   KEYFRAMES
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,137,42,0.3); }
  50%       { box-shadow: 0 0 0 10px rgba(200,137,42,0); }
}

/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,137,42,0.1);
  border: 1px solid rgba(200,137,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon .ti {
  font-size: 1.25rem;
  color: var(--gold);
  line-height: 1;
}

/* Quick service pills (e.g. contact page) */
.quick-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.quick-service-link .ti {
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Large country / service markers on study-abroad grids */
.study-abroad-card-icon .ti {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.contact-info-item h4 {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-info-item p { font-size: 0.88rem; color: var(--grey-light); }
.contact-info-item a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-info-item a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Form */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid rgba(200,137,42,0.2);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--grey); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }

/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,137,42,0.2);
}
.timeline-year {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.timeline-item h4 { color: var(--white); margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.85rem; color: var(--grey-light); }

/* ══════════════════════════════
   LANGUAGE HOLIDAY TABS
══════════════════════════════ */
.tab-nav {
  display: flex;
  border-bottom: 1px solid rgba(200,137,42,0.2);
  margin-bottom: 2.5rem;
}
.tab-btn {
  padding: 1rem 1.75rem;
  background: transparent;
  border: none;
  color: var(--grey);
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--gold-pale); }
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ══════════════════════════════
   COOKIE CONSENT
══════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 1.15rem 1.5rem;
  background: var(--navy-mid);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -12px 48px rgba(0,0,0,0.4);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  visibility: visible;
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-banner-copy {
  flex: 1;
  min-width: min(100%, 260px);
}
.cookie-banner-heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}
.cookie-banner-heading .ti {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}
.cookie-banner-heading strong {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.cookie-banner-desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.55;
}
.cookie-banner-desc a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-desc a:hover {
  color: var(--gold);
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-banner-btn {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.cookie-banner-btn .ti {
  font-size: 1.05rem;
  line-height: 1;
}
.cookie-banner-btn--accept {
  background: var(--gold);
  color: var(--navy);
}
.cookie-banner-btn--accept:hover {
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(200,137,42,0.35);
}
.cookie-banner-btn--refuse {
  background: transparent;
  color: var(--grey-light);
  border-color: rgba(200,137,42,0.4);
}
.cookie-banner-btn--refuse:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(200,137,42,0.1);
}
.cookie-banner-btn:focus-visible {
  outline: 2px solid var(--gold-pale);
  outline-offset: 3px;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .container { padding-left: 1.15rem; padding-right: 1.15rem; }
  .nav-inner {
    height: 60px;
    padding: 0 max(1rem, env(safe-area-inset-right)) 0 max(1rem, env(safe-area-inset-left));
  }
  .nav-logo img { height: 46px; }
  .breadcrumb-bar { margin-top: 60px; }
  .hero-content { padding-left: 1.15rem; padding-right: 1.15rem; padding-top: 60px; }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-title { font-size: clamp(2rem, 9vw, 3.25rem); }
  .hero-subtitle { font-size: 1rem; max-width: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; max-width: 100%; }
  .section { padding: 3.25rem 0; }
  .page-hero { padding: 2.75rem 0 2rem; }
  .page-hero h1 { font-size: clamp(1.75rem, 7vw, 2.75rem); }
  .page-hero-with-image { min-height: 280px; }
  .page-hero-with-image .container {
    padding: 4.5rem 1.15rem 2rem !important;
  }
  .cta-section { padding: 3.25rem 0; }
  footer { padding: 2.5rem 0 1.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - 60px);
    height: calc(100vh - 60px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0.75rem 1rem 2rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    background: #ffffff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 999;
  }
  nav.nav-open .nav-links {
    display: flex !important;
  }
  .nav-links > li > a {
    padding: 0.95rem 0.85rem;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(11,22,40,0.08);
  }
  .nav-links > li > a::after { display: none; }
  .nav-links .nav-cta {
    margin-top: 0.35rem;
    text-align: center;
    border-radius: 4px;
  }
  .lang-switch {
    margin-left: 0;
    margin-top: 0.5rem;
    padding: 0.75rem 0.85rem;
    border-left: none;
    border-top: 1px solid rgba(11,22,40,0.1);
    justify-content: center;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    max-height: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--gold);
    margin: 0 0 0.35rem 0.35rem;
    padding: 0.15rem 0;
    background: rgba(11,22,40,0.04);
  }
  .dropdown-menu li a {
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
  }
  .hamburger { display: flex; }

  .hero-stats { grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; }
  .stat-num { font-size: 2.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { flex-direction: column; justify-content: stretch; }
  .cookie-banner-btn { width: 100%; }

  .btn { min-height: 48px; padding: 0.9rem 1.35rem; }
  .form-control,
  select.form-control,
  textarea.form-control {
    font-size: 16px;
    padding: 0.9rem 1rem;
  }
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  div[style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .tab-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 0;
    margin-bottom: 1.75rem;
  }
  .tab-btn {
    flex: 0 0 auto;
    padding: 0.85rem 1.15rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .info-block { padding: 1.35rem 1.25rem; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.18em; }
  .hero-eyebrow::before { width: 24px; }
  .section-title { font-size: clamp(1.65rem, 8vw, 2.2rem); }
  .partners-list { grid-template-columns: 1fr; }
}
