/* ==========================================================================
   NGR Travel & Services — Premium immigration & visa website
   Thème : vert émeraude · encre · surfaces claires
   Polices : Montserrat Alternates (titres/boutons) · Montserrat (corps) · Nunito (accents)
   ========================================================================== */

:root {
  /* Palette MyPCS : encre vert-noir · papier · émeraude · cuivre */
  --vert: #0a8f5e;                    /* émeraude profond (accents sur fond clair) */
  --vert-hover: #086F49;
  --vert-bright: #0FB577;             /* émeraude vif (fonds sombres) */
  --vert-focus: rgba(15,181,119,0.14);
  --copper: #C86B3C;                  /* accent cuivre */

  /* Texte */
  --ink: #10241C;
  --ink-soft: #1c352a;
  --muted: #55655C;                   /* slate vert-de-gris */
  --gris-label: #3E4C44;
  --placeholder: #9AA89F;

  /* Boutons d'action (CTA encre, hover émeraude) */
  --btn-dark: #10241C;
  --btn-dark-hover: #0a8f5e;

  /* Surfaces */
  --fond: #EEF1EB;                    /* papier */
  --fond-2: #E4E9E0;
  --blanc: #FFFFFF;
  --bordure: rgba(16,36,28,.14);
  --bordure-strong: rgba(16,36,28,.28);

  /* Alias hérités */
  --navy: #10241C;
  --navy-700: #1c352a;
  --blue: #0a8f5e;
  --blue-bright: #0FB577;
  --sky: #E0EBE3;
  --sky-2: #E4E9E0;
  --orange: #0a8f5e;
  --orange-red: #086F49;
  --gold: #0FB577;
  --line: rgba(16,36,28,.14);
  --white: #EEF1EB;

  --grad-brand: linear-gradient(135deg, #2FD394 0%, #0FB577 55%, #0a8f5e 100%);
  --grad-blue: linear-gradient(150deg, #1c352a 0%, #10241C 100%);
  --grad-pastel: linear-gradient(135deg, #FFFFFF 0%, #EEF1EB 55%, #E4E9E0 100%);
  --grad-hero: radial-gradient(120% 140% at 85% 8%, rgba(200,107,60,.5), transparent 46%),
               linear-gradient(150deg, #1c352a 0%, #10241C 60%, #0a1c15 100%);

  --shadow-sm: 0 2px 8px rgba(10,28,21,.07);
  --shadow-md: 0 12px 30px rgba(10,28,21,.12);
  --shadow-lg: 0 30px 60px -18px rgba(10,28,21,.35);

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --nunito: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
:focus-visible { outline: 2.5px solid var(--copper); outline-offset: 3px; border-radius: 2px; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); line-height: 1.1; font-weight: 600; letter-spacing: -.015em; }
p { color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 12.5px;
  letter-spacing: .17em; text-transform: uppercase; color: var(--vert);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--copper); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin: 16px 0 14px; }
.section-head p { font-size: 18px; }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 15.5px;
  padding: 15px 28px; border-radius: 999px; cursor: pointer; border: 0;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--btn-dark); color: #fff; box-shadow: 0 10px 24px rgba(29,36,51,.25); }
.btn-primary:hover { transform: translateY(-2px); background: var(--btn-dark-hover); box-shadow: 0 16px 32px rgba(29,36,51,.35); }
/* Sur fonds sombres, le CTA principal passe au vert de marque */
.hero .btn-primary, .subhero .btn-primary, .ctaband .btn-primary, .mobile-menu .btn-primary {
  background: var(--grad-brand); box-shadow: 0 10px 24px rgba(31,138,91,.35);
}
.hero .btn-primary:hover, .subhero .btn-primary:hover, .ctaband .btn-primary:hover, .mobile-menu .btn-primary:hover {
  background: var(--grad-brand); filter: brightness(1.06); box-shadow: 0 16px 32px rgba(31,138,91,.45);
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-700); }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.20); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 16.5px; }

/* Top bar ------------------------------------------------------------------ */
.topbar { background: var(--navy); color: rgba(238,241,235,.75); font-size: 13.5px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 42px; gap: 16px; }
.topbar a { color: rgba(238,241,235,.75); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 22px; }
.topbar .tb-right { display: flex; gap: 16px; align-items: center; }
.topbar svg { width: 15px; height: 15px; opacity: .85; }
.tb-flag { font-size: 14px; }

/* Header ------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(238,241,235,.86); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line); transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; }
.brand img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-weight: 600; font-size: 15.5px; color: var(--navy); position: relative; padding: 6px 0; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--grad-brand); transition: width .25s ease; border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.4px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: .3s; }

/* Hero --------------------------------------------------------------------- */
.hero { position: relative; background: var(--grad-hero); color: #fff; overflow: hidden; padding: 74px 0 96px; }
.hero::after {
  content:""; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.10) 1px, transparent 0);
  background-size: 34px 34px; mask-image: linear-gradient(180deg, #000, transparent 75%);
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22); padding: 8px 16px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: rgba(238,241,235,.9); margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #46d17f; box-shadow: 0 0 0 4px rgba(70,209,127,.25); }
.hero h1 { color: #fff; font-size: clamp(38px, 5.4vw, 62px); line-height: 1.05; }
.hero h1 .accent { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.hero p.lead { color: rgba(238,241,235,.82); font-size: 19px; margin: 22px 0 32px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--serif); font-size: 30px; color: #fff; line-height: 1; }
.hero-trust .ht span { font-size: 13.5px; color: rgba(238,241,235,.6); margin-top: 6px; }
.hero-trust .div { width: 1px; background: rgba(255,255,255,.18); }

/* Hero visual card */
.hero-visual { position: relative; }
.hv-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px; padding: 26px; backdrop-filter: blur(10px); box-shadow: var(--shadow-lg);
}
.hv-card h3 { color: #fff; font-size: 21px; margin-bottom: 4px; }
.hv-card > p { color: rgba(238,241,235,.72); font-size: 14px; margin-bottom: 18px; }
.hv-list { display: grid; gap: 12px; }
.hv-item { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); border-radius: 14px; padding: 13px 15px; }
.hv-item .ico { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-brand); display: grid; place-items: center; flex: none; }
.hv-item .ico svg { width: 20px; height: 20px; }
.hv-item .tx b { color: #fff; font-family: var(--sans); font-weight: 700; font-size: 15px; display: block; }
.hv-item .tx span { color: rgba(238,241,235,.55); font-size: 12.5px; }
.hv-item .chk { margin-left: auto; color: #46d17f; }
.hv-float {
  position: absolute; left: -26px; bottom: -26px; background: #fff; color: var(--navy);
  border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hv-float .rate { font-family: var(--serif); font-size: 30px; color: var(--copper); line-height: 1; }
.hv-float small { font-size: 12px; color: var(--muted); }

/* Marquee / partners strip ------------------------------------------------- */
.strip { background: var(--navy); border-top: 1px solid rgba(255,255,255,.06); }
.strip .container { display: flex; align-items: center; gap: 34px; height: 66px; overflow: hidden; }
.strip .lbl { color: rgba(238,241,235,.5); font-size: 13px; font-weight: 600; white-space: nowrap; letter-spacing: .04em; }
.strip .flags { display: flex; gap: 28px; color: rgba(238,241,235,.85); font-weight: 600; font-size: 15px; flex-wrap: nowrap; }
.strip .flags span { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }

/* Services ----------------------------------------------------------------- */
.bg-soft { background: var(--sky-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; position: relative; overflow: hidden;
}
.svc::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc:hover::before { transform: scaleX(1); }
.svc .svc-ico { width: 60px; height: 60px; border-radius: 16px; background: var(--sky); display: grid; place-items: center; margin-bottom: 20px; }
.svc .svc-ico svg { width: 28px; height: 28px; stroke: var(--blue); }
.svc:hover .svc-ico { background: var(--grad-blue); }
.svc:hover .svc-ico svg { stroke: #fff; }
.svc h3 { font-size: 21px; margin-bottom: 10px; }
.svc p { font-size: 15px; }
.svc .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.svc .tags span { font-family: var(--nunito); font-size: 12.5px; font-weight: 700; color: var(--vert); background: var(--sky); padding: 5px 11px; border-radius: 999px; }
.svc .more { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14.5px; color: var(--navy); }
.svc .more svg { width: 16px; transition: transform .25s; }
.svc:hover .more svg { transform: translateX(4px); }

/* Steps -------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .num { font-family: var(--serif); font-size: 46px; color: transparent; -webkit-background-clip: text; background-clip: text; background-image: var(--grad-brand); font-weight: 700; line-height: 1; }
.step h3 { font-size: 18.5px; margin: 12px 0 8px; }
.step p { font-size: 14.5px; }
.step .line { position: absolute; top: 52px; right: -14px; width: 24px; height: 2px; background: var(--line); }

/* Destinations ------------------------------------------------------------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dest {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 240px; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.dest:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dest .glow { position: absolute; inset: 0; z-index: 0; }
.dest .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,35,64,.10), rgba(12,35,64,.78)); z-index: 1; }
.dest > * { position: relative; z-index: 2; }
.dest .flag { font-size: 30px; margin-bottom: auto; filter: drop-shadow(0 4px 8px rgba(0,0,0,.25)); }
.dest h3 { color: #fff; font-size: 23px; }
.dest p { color: rgba(238,241,235,.8); font-size: 13.5px; margin-top: 4px; }
.dest .pill { position: absolute; top: 18px; right: 18px; z-index: 2; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(4px); font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 999px; }

/* Why / features ----------------------------------------------------------- */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: grid; gap: 22px; margin-top: 30px; }
.feat { display: flex; gap: 18px; }
.feat .fi { width: 52px; height: 52px; flex: none; border-radius: 14px; background: var(--grad-blue); display: grid; place-items: center; }
.feat .fi svg { width: 24px; height: 24px; stroke: #fff; }
.feat h3 { font-size: 18.5px; margin-bottom: 5px; }
.feat p { font-size: 15px; }
.why-visual { position: relative; }
.why-panel { border-radius: 24px; background: var(--grad-pastel); padding: 40px; color: var(--ink); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.why-panel::after { content:""; position:absolute; right:-60px; top:-60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(200,107,60,.30), transparent 65%); }
.why-panel .q { font-family: var(--serif); font-size: 23px; color: var(--ink); line-height: 1.4; position: relative; font-weight: 600; }
.why-panel .q .mark { font-size: 60px; color: var(--vert); line-height: 0; display: block; height: 26px; }
.why-panel .author { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.why-panel .author .av { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-weight: 800; font-family: var(--sans); }
.why-panel .author b { display: block; color: var(--ink); font-family: var(--sans); }
.why-panel .author span { color: var(--muted); font-size: 13px; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.why-stats .ws { background: rgba(255,255,255,.65); border: 1px solid rgba(29,36,51,.08); border-radius: 14px; padding: 16px; }
.why-stats .ws b { font-family: var(--serif); font-size: 26px; color: var(--vert-hover); display: block; }
.why-stats .ws span { color: var(--muted); font-size: 12.5px; }

/* Stats band --------------------------------------------------------------- */
.statband { background: var(--navy); color: #fff; }
.statband .grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.statband .st b { font-family: var(--serif); font-size: clamp(34px, 4.4vw, 50px); color: #fff; display: block; }
.statband .st b .u { color: var(--vert-bright); }
.statband .st span { color: rgba(238,241,235,.6); font-size: 14.5px; }

/* Testimonials ------------------------------------------------------------- */
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tst { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.tst .stars { color: var(--copper); letter-spacing: 2px; font-size: 16px; margin-bottom: 12px; }
.tst p { color: var(--ink); font-size: 15.5px; }
.tst .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.tst .who .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; }
.tst .who b { display: block; font-family: var(--sans); color: var(--navy); font-size: 15px; }
.tst .who span { font-size: 13px; color: var(--muted); }

/* Highlight / success ------------------------------------------------------ */
.success { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.success-badge { border-radius: 24px; background: var(--grad-brand); color: #fff; padding: 42px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.success-badge::after { content:""; position:absolute; left:-40px; bottom:-40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.14); }
.success-badge .k { font-size: 15px; opacity: .95; font-weight: 600; }
.success-badge .big { font-family: var(--serif); font-size: 54px; line-height: 1; margin: 10px 0; }
.success h2 { font-size: clamp(28px, 3.8vw, 40px); }
.success p { font-size: 17px; margin-top: 14px; }

/* CTA band ----------------------------------------------------------------- */
.ctaband { background: var(--grad-hero); color: #fff; border-radius: 28px; padding: 60px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.ctaband::after { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0); background-size: 30px 30px; }
.ctaband > * { position: relative; z-index: 2; }
.ctaband h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.ctaband p { color: rgba(238,241,235,.82); font-size: 18px; max-width: 620px; margin: 16px auto 30px; }
.ctaband .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Contact ------------------------------------------------------------------ */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: stretch; }
.contact-info { display: grid; gap: 18px; align-content: start; }
.ci-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; }
.ci-card .ci-ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--sky); display: grid; place-items: center; }
.ci-card .ci-ic svg { width: 22px; stroke: var(--blue); }
.ci-card b { font-family: var(--sans); color: var(--navy); font-size: 15px; }
.ci-card p { font-size: 14.5px; margin-top: 2px; }
.ci-card a { color: var(--blue); font-weight: 600; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); }
.form-card h3 { font-size: 24px; margin-bottom: 4px; }
.form-card > p { font-size: 15px; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--nunito); font-size: 13.5px; font-weight: 700; color: var(--gris-label); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px var(--vert-focus); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.form-ok { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: #e8f7ee; color: #1c7d47; font-weight: 600; font-size: 14.5px; }
.form-ok.show { display: block; }

/* FAQ ---------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.qa { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; background: #fff; overflow: hidden; }
.qa button { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.qa button .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--sky); display: grid; place-items: center; color: var(--blue); font-size: 18px; transition: .3s; }
.qa.open button .plus { background: var(--grad-brand); color: #fff; transform: rotate(45deg); }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.qa .ans p { padding: 0 22px 20px; font-size: 15px; }

/* Footer ------------------------------------------------------------------- */
.footer { background: var(--navy); color: rgba(238,241,235,.72); padding: 70px 0 26px; }
.footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand-col img { height: 34px; width: auto; margin-bottom: 18px; background: #fff; padding: 10px 16px; border-radius: 12px; box-sizing: content-box; box-shadow: var(--shadow-sm); }
.footer .brand-col p { color: rgba(238,241,235,.55); font-size: 14.5px; max-width: 320px; }
.footer .socials { display: flex; gap: 12px; margin-top: 20px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .25s; }
.footer .socials a:hover { background: var(--grad-brand); transform: translateY(-3px); }
.footer .socials svg { width: 18px; fill: #fff; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 15px; font-weight: 700; margin-bottom: 16px; letter-spacing: .02em; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: rgba(238,241,235,.6); font-size: 14.5px; }
.footer ul a:hover { color: #fff; }
.footer .contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; margin-bottom: 12px; }
.footer .contact-line svg { width: 17px; flex: none; margin-top: 3px; stroke: var(--orange); }
.footer .bottom { border-top: 1px solid rgba(255,255,255,.10); margin-top: 46px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(238,241,235,.5); }
.footer .bottom a { color: rgba(238,241,235,.5); }
.footer .bottom a:hover { color: #fff; }

/* ==========================================================================
   PAGES INTERNES (pays, services, blog)
   ========================================================================== */
.subhero { position: relative; background: var(--grad-hero); color: #fff; overflow: hidden; padding: 62px 0 76px; }
.subhero::after {
  content:""; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.10) 1px, transparent 0);
  background-size: 34px 34px; mask-image: linear-gradient(180deg, #000, transparent 80%);
}
.subhero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(238,241,235,.6); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(238,241,235,.7); font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .6; }
.subhero .flag-xl { font-size: 54px; line-height: 1; margin-bottom: 14px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.3)); }
.subhero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); max-width: 760px; }
.subhero p.lead { color: rgba(238,241,235,.82); font-size: 18.5px; margin-top: 16px; max-width: 620px; }
.subhero .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.subhero .chips span { font-family: var(--nunito); background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22); padding: 7px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 700; color: rgba(238,241,235,.9); }
.subhero .sub-cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Layout contenu + aside */
.page-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 54px; align-items: start; }
.page-wrap > * { min-width: 0; }
.prose h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 40px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 21px; margin: 28px 0 10px; }
.prose p { font-size: 16.5px; margin-bottom: 14px; }
.prose ul { list-style: none; margin: 8px 0 20px; display: grid; gap: 11px; }
.prose ul li { position: relative; padding-left: 34px; font-size: 16px; color: var(--ink); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--sky) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a8f5e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat;
}
.prose .callout { background: var(--sky-2); border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: 12px; padding: 18px 20px; margin: 22px 0; }
.prose .callout p { margin: 0; font-size: 15.5px; }
.prose .callout b { color: var(--navy); }

/* Cartes étapes/visa dans les pages pays */
.cardlist { display: grid; gap: 16px; margin: 8px 0 8px; }
.optcard { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: #fff; transition: box-shadow .3s, transform .3s; }
.optcard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.optcard .h { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.optcard .h .n { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-blue); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; flex: none; }
.optcard h3 { margin: 0; font-size: 18.5px; }
.optcard p { font-size: 15px; margin: 0; }

/* Aside sticky */
.aside { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.aside-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.aside-card.brand { display: block; background: var(--grad-pastel); color: var(--ink); border: 0; }
.aside-card.brand h3 { color: var(--ink); }
.aside-card.brand p { color: var(--muted); }
.aside-card h3 { font-size: 20px; margin-bottom: 6px; }
.aside-card p { font-size: 14.5px; margin-bottom: 16px; }
.aside-card .btn { width: 100%; }
.aside-card .wa-btn { background: #25D366; color: #fff; }
.aside-list { display: grid; gap: 12px; }
.aside-list a { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--navy); font-weight: 600; padding: 9px 12px; border-radius: 10px; transition: background .2s; }
.aside-list a:hover { background: var(--sky); }
.aside-list a .fl { font-size: 18px; }

/* Blog --------------------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post .thumb { height: 170px; position: relative; display: grid; place-items: center; }
.post .thumb .flag { font-size: 46px; filter: drop-shadow(0 6px 12px rgba(0,0,0,.25)); }
.post .thumb .cat { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.9); color: var(--navy); font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.post .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post .meta { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.post h3 { font-size: 20px; line-height: 1.25; margin-bottom: 8px; }
.post p { font-size: 14.5px; flex: 1; }
.post .rd { margin-top: 14px; font-weight: 700; font-size: 14px; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.post .rd svg { width: 15px; transition: transform .25s; }
.post:hover .rd svg { transform: translateX(4px); }
.blog-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; background: #fff; }
.blog-featured .fimg { min-height: 300px; display: grid; place-items: center; }
.blog-featured .fimg .flag { font-size: 88px; filter: drop-shadow(0 10px 20px rgba(0,0,0,.3)); }
.blog-featured .ftx { padding: 40px; align-self: center; }
.blog-featured .ftx .cat { color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.blog-featured .ftx h2 { font-size: clamp(24px, 3vw, 34px); margin: 12px 0; }

/* Article (page de blog) */
.article { max-width: 760px; margin: 0 auto; }
.article .meta-top { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.article .meta-top .cat { color: #fff; background: var(--grad-brand); padding: 4px 12px; border-radius: 999px; font-size: 12.5px; }
.article .lead-p { font-size: 20px; color: var(--ink); font-weight: 500; line-height: 1.55; margin-bottom: 24px; }

@media (max-width: 900px) {
  .page-wrap { grid-template-columns: 1fr; }
  .aside { position: static; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .fimg { min-height: 180px; }
}
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Reveal animation --------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* Floating WhatsApp -------------------------------------------------------- */
.wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37,211,102,.45);
  transition: transform .25s; animation: pulse 2.4s infinite;
}
.wa:hover { transform: scale(1.08); }
.wa svg { width: 32px; fill: #fff; }
@keyframes pulse { 0%,100%{ box-shadow: 0 12px 28px rgba(37,211,102,.45);} 50%{ box-shadow: 0 12px 28px rgba(37,211,102,.75);} }

/* Mobile nav panel --------------------------------------------------------- */
.mobile-menu { display: none; }
.mobile-menu.open {
  display: flex; flex-direction: column; position: fixed; inset: 0; z-index: 70;
  background: var(--navy); color: #fff; padding: 24px; overflow-y: auto;
}
.mobile-menu .mm-head { display: flex; justify-content: space-between; align-items: center; height: 54px; flex: none; }
.mobile-menu .mm-head img { height: 28px; width: auto; background: #fff; padding: 7px 12px; border-radius: 10px; box-sizing: content-box; }
.mobile-menu .mm-close { background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; padding: 4px 10px; }
.mobile-menu nav { display: grid; gap: 6px; margin-top: 20px; }
.mobile-menu nav a { color: #fff; font-family: var(--serif); font-weight: 600; font-size: clamp(19px, 5.5vw, 24px); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
.mobile-menu .btn { width: 100%; margin-top: 22px; flex: none; }

/* Responsive --------------------------------------------------------------- */
/* Tablette large : le menu passe en hamburger avant que les liens ne débordent */
@media (max-width: 1080px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .why { grid-template-columns: 1fr; gap: 40px; }
  .success { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .services-grid, .dest-grid, .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step .line { display: none; }
  .footer .cols { grid-template-columns: 1fr 1fr; }
  /* Le bandeau des pays devient défilable au doigt plutôt que coupé */
  .strip .container { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .strip .container::-webkit-scrollbar { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .topbar .hide-sm { display: none; }
  .topbar { font-size: 12.5px; }
  .topbar a[href^="tel"] { font-weight: 600; }
  .nav { height: 68px; gap: 12px; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand img { height: 34px; max-width: 100%; object-fit: contain; object-position: left center; }
  .nav-cta { gap: 10px; flex: none; }
  .nav-cta .btn { padding: 11px 16px; font-size: 13.5px; }
  .services-grid, .dest-grid, .tst-grid, .steps, .why-stats, .footer .cols { grid-template-columns: 1fr; }
  .statband .grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
  .hero-trust .div { display: none; }
  .ctaband, .success-badge, .why-panel { padding: 34px 24px; }
  .hv-float { position: static; margin-top: 16px; width: max-content; }
  .subhero { padding: 46px 0 58px; }
  .subhero .flag-xl { font-size: 44px; }
  .blog-featured .ftx { padding: 26px 22px; }
  .form-card { padding: 26px 20px; }
  .prose h2 { margin-top: 32px; }
}

/* Petits téléphones */
@media (max-width: 560px) {
  /* L'en-tête garde logo + hamburger ; le CTA reste dans le hero, le menu et le bouton WhatsApp */
  .nav-cta .btn-primary { display: none; }
  .brand img { height: 38px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 54px 0; }
  .hero { padding: 52px 0 64px; }
  .hero h1 { font-size: clamp(31px, 9vw, 38px); }
  .hero p.lead { font-size: 16.5px; }
  .hero-cta, .sub-cta, .ctaband .row { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .sub-cta .btn, .ctaband .row .btn { width: 100%; }
  .btn-lg { padding: 15px 24px; font-size: 15.5px; }
  .statband .grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .hv-card { padding: 18px; }
  .hv-item { padding: 11px 12px; gap: 10px; }
  .wa { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa svg { width: 27px; }
  .aside-card { padding: 20px; }
  .optcard { padding: 18px; }
  .footer { padding: 52px 0 22px; }
  .section-head { margin-bottom: 38px; }
}

/* Placeholders */
.field input::placeholder, .field textarea::placeholder { color: var(--placeholder); }

/* Facebook ----------------------------------------------------------------- */
.btn-fb { background: #1877F2; color: #fff; }
.btn-fb:hover { background: #0f66d8; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(24,119,242,.35); }
.btn-fb svg { fill: #fff; }
.fb-band {
  margin-top: 56px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 32px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; box-shadow: var(--shadow-sm);
}
.fb-band .fb-logo { width: 54px; height: 54px; border-radius: 14px; background: #1877F2; display: grid; place-items: center; flex: none; }
.fb-band .fb-logo svg { width: 30px; fill: #fff; }
.fb-band .tx { flex: 1; min-width: 220px; }
.fb-band h3 { font-size: 20px; margin-bottom: 4px; }
.fb-band p { font-size: 14.5px; }
.fb-band .followers { font-family: var(--nunito); font-weight: 800; color: var(--vert); }
@media (max-width: 560px) {
  .fb-band { padding: 22px; }
  .fb-band .btn { width: 100%; }
}

/* Réseaux sociaux dans la barre du haut */
.topbar .tb-right a { gap: 6px; }
.topbar .tb-right a svg { width: 15px; height: 15px; }
@media (max-width: 620px) { .topbar .tb-right .tb-social-label { display: none; } }
