/* =====================================================================
   ELMA GROUPE — Design System
   Corporate holding group · Trilingual (EN / FR / AR + RTL)
   Author: brand & build by Claude. Edit tokens below to re-skin.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand colours */
  --navy-900: #081B33;
  --navy-800: #0B2545;
  --navy-700: #13315C;
  --navy-600: #1C4374;
  --blue-500: #2E6FB0;
  --blue-400: #4E8FD0;

  --gold-500: #C9A24A;
  --gold-400: #E7C871;
  --gold-100: #F6ECCF;

  --ink-900: #0C1116;
  --ink-700: #283543;
  --slate-600: #5B6B7B;
  --slate-400: #93A1AE;
  --mist-200: #E6ECF2;
  --mist-100: #EFF3F7;
  --mist-50:  #F7F9FC;
  --white:    #FFFFFF;

  /* Semantic */
  --bg:            var(--white);
  --bg-alt:        var(--mist-50);
  --bg-dark:       var(--navy-800);
  --text:          var(--ink-900);
  --text-soft:     var(--slate-600);
  --text-invert:   #E9EFF6;
  --accent:        var(--gold-500);
  --line:          var(--mist-200);
  --line-dark:     rgba(255,255,255,.12);

  /* Typography */
  --font-head: "Sora", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Scale & rhythm */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(8,27,51,.06), 0 4px 14px rgba(8,27,51,.05);
  --shadow-md: 0 10px 30px rgba(8,27,51,.10);
  --shadow-lg: 0 24px 60px rgba(8,27,51,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; border-radius: 4px; }

/* Arabic / RTL font + spacing tweaks */
html[lang="ar"] { --font-head: "Tajawal", "Sora", sans-serif; --font-body: "Tajawal", "Inter", sans-serif; }
html[lang="ar"] body { line-height: 1.9; font-size: 17.5px; }
[dir="rtl"] .nav__list { flex-direction: row; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: var(--navy-800); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { letter-spacing: 0; line-height: 1.4; }
h1 { font-size: clamp(2.3rem, 1.4rem + 4vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1rem + .8vw, 1.5rem); }
p  { color: var(--text-soft); }
.lead { font-size: clamp(1.05rem, .98rem + .5vw, 1.3rem); color: var(--text-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow::before { content: ""; inline-size: 26px; block-size: 2px; background: var(--gold-500); border-radius: 2px; }
html[lang="ar"] .eyebrow { letter-spacing: .04em; }

.gradient-text {
  background: linear-gradient(100deg, var(--gold-400), var(--gold-500) 60%, #b88f38);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 8vw, 120px); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--text-invert); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(233,239,246,.74); }
.section__head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head .lead { margin-top: 16px; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--navy-800); --fg: #fff;
  display: inline-flex; align-items: center; gap: .6em;
  padding: .92em 1.55em; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn svg { inline-size: 1.05em; block-size: 1.05em; }
.btn--gold { --bg: linear-gradient(100deg, var(--gold-400), var(--gold-500)); --fg: var(--navy-900); }
.btn--ghost { --bg: transparent; --fg: var(--navy-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy-600); }
.btn--light { --bg: #fff; --fg: var(--navy-800); }
.btn--outline-light { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.4); }
[dir="rtl"] .btn__arrow { transform: scaleX(-1); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.header__inner { display: flex; align-items: center; gap: 24px; min-block-size: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { inline-size: 42px; block-size: 42px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.brand__name { font-family: var(--font-head); font-weight: 800; letter-spacing: .02em; font-size: 1.18rem; color: #fff; line-height: 1; }
.brand__name b { font-weight: 800; }
.brand__name span { font-weight: 500; color: var(--gold-400); margin-inline-start: .35em; letter-spacing: .14em; font-size: .92em; }

.nav { margin-inline-start: auto; display: flex; align-items: center; gap: 8px; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: inline-block; padding: .55em .9em; border-radius: 999px;
  font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: rgba(255,255,255,.86);
  transition: color .2s, background .2s;
}
.nav__link:hover, .nav__link.is-active { color: #fff; background: rgba(255,255,255,.12); }

/* Header states: transparent over dark hero -> solid on scroll */
.header.is-solid { background: rgba(255,255,255,.92); backdrop-filter: saturate(140%) blur(12px); box-shadow: 0 1px 0 var(--line), var(--shadow-sm); }
.header.is-solid .brand__name { color: var(--navy-800); }
.header.is-solid .nav__link { color: var(--ink-700); }
.header.is-solid .nav__link:hover, .header.is-solid .nav__link.is-active { color: var(--navy-800); background: var(--mist-100); }
.header.is-solid .lang__btn { color: var(--ink-700); }
.header.is-solid .lang__btn.is-active { background: var(--navy-800); color: #fff; }
.header.is-solid .nav__toggle span { background: var(--navy-800); }

/* Language switcher */
.lang { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.12); }
.header.is-solid .lang { background: var(--mist-100); }
.lang__btn { padding: .3em .7em; border: 0; background: transparent; border-radius: 999px; color: rgba(255,255,255,.8); font-family: var(--font-head); font-weight: 600; font-size: .82rem; transition: background .2s, color .2s; }
.lang__btn.is-active { background: rgba(255,255,255,.9); color: var(--navy-800); }

/* Mobile toggle */
.nav__toggle { display: none; inline-size: 44px; block-size: 44px; border: 0; background: transparent; position: relative; }
.nav__toggle span { position: absolute; inset-inline: 11px; block-size: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle span:nth-child(1){ inset-block-start: 15px; }
.nav__toggle span:nth-child(2){ inset-block-start: 21px; }
.nav__toggle span:nth-child(3){ inset-block-start: 27px; }
body.nav-open .nav__toggle span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2){ opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px){
  .nav__toggle { display: block; }
  .nav { margin-inline-start: auto; gap: 6px; }
  .nav__list {
    position: fixed; inset-block-start: 0; inset-inline-end: 0; block-size: 100dvh; inline-size: min(82vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 6px;
    background: var(--navy-800); padding: 96px 22px 30px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto;
  }
  [dir="rtl"] .nav__list { inset-inline-end: 0; transform: translateX(-100%); }
  body.nav-open .nav__list { transform: translateX(0); }
  .nav__link { color: #fff !important; font-size: 1.05rem; padding: .8em 1em; }
  .header.is-solid .nav__link { color: #fff !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--text-invert); padding-block: clamp(130px, 18vh, 200px) clamp(70px, 10vw, 120px); overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background:
   radial-gradient(900px 500px at 78% -5%, rgba(46,111,176,.55), transparent 60%),
   radial-gradient(700px 500px at 8% 110%, rgba(201,162,74,.20), transparent 55%),
   linear-gradient(160deg, var(--navy-900), var(--navy-800) 55%, #0E2A50); }
.hero__grid-overlay { position: absolute; inset: 0; z-index: -1; opacity: .5;
   background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
   background-size: 64px 64px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 75%); }
.hero__inner { max-width: 820px; }
.hero h1 { color: #fff; }
.hero h1 .gradient-text { display: inline; }
.hero .lead { color: rgba(233,239,246,.82); max-width: 620px; margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(22px, 5vw, 64px); margin-top: clamp(48px, 7vw, 80px); padding-top: 32px; border-top: 1px solid var(--line-dark); }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 1.3rem + 2vw, 2.8rem); color: #fff; line-height: 1; }
.stat__num span { color: var(--gold-400); }
.stat__label { margin-top: 8px; font-size: .92rem; color: rgba(233,239,246,.66); }
.scroll-cue { position: absolute; inset-block-end: 26px; inset-inline-start: 50%; transform: translateX(-50%); display: grid; place-items: center; gap: 8px; color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue::after { content: ""; inline-size: 1px; block-size: 34px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0%{ transform: scaleY(0); transform-origin: top; } 50%{ transform: scaleY(1);} 100%{ transform: scaleY(0); transform-origin: bottom;} }

/* ---------- Cards ---------- */
.card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 34px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  block-size: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon { inline-size: 54px; block-size: 54px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(150deg, var(--navy-700), var(--navy-600)); color: var(--gold-400); margin-bottom: 20px; }
.card__icon svg { inline-size: 26px; block-size: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: .4em; margin-top: 18px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--blue-500); }
.card__link svg { transition: transform .25s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }
[dir="rtl"] .card__link svg { transform: scaleX(-1); }
[dir="rtl"] .card:hover .card__link svg { transform: scaleX(-1) translateX(4px); }
.card--accent { border-top: 3px solid var(--gold-500); }

/* Number-badge variant (group / activities) */
.card__num { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--gold-500); }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.2; background: linear-gradient(160deg, var(--navy-700), var(--navy-800)); }
.split__media .badge-float { position: absolute; inset-block-end: 20px; inset-inline-start: 20px; background: rgba(255,255,255,.96); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; gap: 12px; align-items: center; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick { flex: 0 0 auto; inline-size: 26px; block-size: 26px; border-radius: 8px; background: var(--gold-100); color: var(--navy-700); display: grid; place-items: center; margin-block-start: 2px; }
.feature-list h4 { font-size: 1.02rem; color: var(--navy-800); margin-bottom: 2px; }
.feature-list p { font-size: .95rem; }

/* ---------- Stats band ---------- */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
@media (max-width: 720px){ .statband { grid-template-columns: repeat(2,1fr); } }
.statband .stat__num { color: var(--navy-800); }
.section--dark .statband .stat__num { color: #fff; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); color: #fff; isolation: isolate; }
.cta-band__bg { position: absolute; inset: 0; z-index: -1; background:
   radial-gradient(600px 300px at 85% 10%, rgba(201,162,74,.35), transparent 60%),
   linear-gradient(140deg, var(--navy-800), var(--navy-700)); }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: rgba(233,239,246,.8); max-width: 52ch; margin-top: 14px; }
.cta-band .hero__cta { margin-top: 28px; }

/* ---------- Logos / partners strip ---------- */
.trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 60px); opacity: .8; }
.trust span { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--slate-400); letter-spacing: .02em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding-block: 18px; border-bottom: 1px solid var(--line); }
.info-row .ic { flex: 0 0 auto; inline-size: 46px; block-size: 46px; border-radius: 12px; background: var(--mist-100); color: var(--navy-700); display: grid; place-items: center; }
.info-row h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-600); font-family: var(--font-head); }
.info-row a, .info-row p { color: var(--navy-800); font-weight: 500; font-size: 1.05rem; margin-top: 3px; }
html[lang="ar"] .info-row h4 { letter-spacing: 0; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy-800); margin-bottom: 7px; font-family: var(--font-head); }
.field input, .field select, .field textarea {
  inline-size: 100%; padding: .85em 1em; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--text); background: var(--mist-50); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue-400); background: #fff; box-shadow: 0 0 0 4px rgba(78,143,208,.14); }
.field textarea { min-block-size: 130px; resize: vertical; }
.form .btn { inline-size: 100%; justify-content: center; }
.form__note { font-size: .82rem; color: var(--slate-600); margin-top: 12px; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(233,239,246,.7); padding-block: clamp(54px, 7vw, 84px) 28px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 52px); }
@media (max-width: 860px){ .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer__top { grid-template-columns: 1fr; } }
.footer .brand__name { color: #fff; }
.footer__about p { margin-top: 18px; font-size: .96rem; max-width: 34ch; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
html[lang="ar"] .footer h4 { letter-spacing: 0; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: .98rem; transition: color .2s; }
.footer__links a:hover { color: var(--gold-400); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { inline-size: 40px; block-size: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #fff; transition: background .2s, transform .2s; }
.social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-2px); }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; font-size: .88rem; }
.footer__bottom a:hover { color: var(--gold-400); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; color: var(--text-invert); padding-block: clamp(120px, 16vh, 180px) clamp(48px, 7vw, 84px); isolation: isolate; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; background:
   radial-gradient(700px 380px at 82% -10%, rgba(46,111,176,.5), transparent 60%),
   linear-gradient(160deg, var(--navy-900), var(--navy-800)); }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(233,239,246,.8); margin-top: 16px; max-width: 600px; }
.breadcrumb { display: flex; gap: .5em; align-items: center; font-size: .86rem; color: rgba(233,239,246,.6); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold-400); }
[dir="rtl"] .breadcrumb .sep { transform: scaleX(-1); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
.reveal[data-delay="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue::after { animation: none; }
}

/* ---------- Helpers ---------- */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 44px; }
.hidden { display: none !important; }
.skip-link { position: absolute; inset-inline-start: -999px; inset-block-start: 8px; background: #fff; color: var(--navy-800); padding: 10px 16px; border-radius: 8px; z-index: 200; }
.skip-link:focus { inset-inline-start: 8px; }

/* =====================================================================
   ELMA SERVICES — landing components
   ===================================================================== */

/* WhatsApp button + floating button */
.btn--wa { --bg: #25D366; --fg: #06351d; }
.btn--wa svg { inline-size: 1.25em; block-size: 1.25em; }
.wa-float {
  position: fixed; inset-block-end: 20px; inset-inline-end: 20px; z-index: 95;
  inline-size: 60px; block-size: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .25s var(--ease);
}
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366; z-index: -1; animation: wa-pulse 2.4s ease-out infinite; }
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { inline-size: 32px; block-size: 32px; }
@keyframes wa-pulse { 0%{ transform: scale(1); opacity:.6 } 70%{ transform: scale(1.7); opacity:0 } 100%{ opacity:0 } }
@media (prefers-reduced-motion: reduce){ .wa-float::before { animation: none; } }

/* Hero badge pill + trust badges */
.badge-pill { display: inline-flex; align-items: center; gap: .55em; padding: .5em 1.05em; border-radius: 999px; background: rgba(201,162,74,.16); border: 1px solid rgba(201,162,74,.45); color: var(--gold-400); font-family: var(--font-head); font-weight: 600; font-size: .85rem; }
.badge-pill .dot { inline-size: 8px; block-size: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(201,162,74,.2); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.trust-badges span { display: inline-flex; align-items: center; gap: .55em; font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: rgba(233,239,246,.92); }
.trust-badges svg { color: var(--gold-400); inline-size: 20px; block-size: 20px; }

/* Value strip */
.value-strip { background: var(--navy-900); }
.value-strip__inner { display: grid; grid-template-columns: repeat(4,1fr); }
@media (max-width: 760px){ .value-strip__inner { grid-template-columns: 1fr 1fr; } }
.value-strip__item { display: flex; align-items: center; gap: 13px; padding: 22px 20px; color: var(--text-invert); border-inline-start: 1px solid var(--line-dark); }
.value-strip__item:first-child { border-inline-start: 0; }
@media (max-width: 760px){ .value-strip__item:nth-child(odd){ border-inline-start: 0; } }
.value-strip__item svg { color: var(--gold-400); flex: 0 0 auto; inline-size: 26px; block-size: 26px; }
.value-strip__item span { font-family: var(--font-head); font-weight: 600; font-size: .96rem; line-height: 1.3; }

/* China benefits + checklist */
.china-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; margin-top: 26px; }
@media (max-width: 560px){ .china-benefits { grid-template-columns: 1fr; } }
.benefit { display: flex; gap: 14px; align-items: flex-start; }
.benefit .bi { flex: 0 0 auto; inline-size: 46px; block-size: 46px; border-radius: 12px; background: linear-gradient(150deg, var(--navy-700), var(--navy-600)); color: var(--gold-400); display: grid; place-items: center; }
.benefit h4 { font-size: 1.02rem; color: var(--navy-800); margin-bottom: 3px; }
.benefit p { font-size: .92rem; }

.doc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px,3vw,30px); box-shadow: var(--shadow-sm); }
.doc-card .visa-head { display: flex; gap: 14px; align-items: center; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px dashed var(--line); }
.doc-card .visa-head .vh { inline-size: 50px; block-size: 50px; border-radius: 13px; background: linear-gradient(150deg, var(--gold-400), var(--gold-500)); color: var(--navy-900); display: grid; place-items: center; flex: 0 0 auto; }
.doc-card .visa-head h3 { font-size: 1.12rem; }
.doc-card .visa-head p { font-size: .88rem; margin-top: 2px; }
.checklist { display: grid; gap: 10px; }
.checklist li { display: flex; gap: 12px; align-items: center; font-weight: 500; color: var(--navy-800); font-size: .96rem; }
.checklist .ck { flex: 0 0 auto; inline-size: 24px; block-size: 24px; border-radius: 7px; background: var(--gold-100); color: var(--navy-700); display: grid; place-items: center; }
.doc-card .center-note { margin-top: 18px; font-size: .86rem; color: var(--slate-600); display: flex; gap: 8px; align-items: flex-start; }
.doc-card .center-note svg { color: var(--gold-500); flex: 0 0 auto; margin-block-start: 2px; }

/* Visa types grid */
.visa-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
@media (max-width: 980px){ .visa-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 680px){ .visa-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 420px){ .visa-grid { grid-template-columns: repeat(2,1fr); } }
.vchip { display: flex; flex-direction: column; align-items: center; gap: 11px; text-align: center; padding: 22px 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.vchip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.vchip .vi { inline-size: 46px; block-size: 46px; border-radius: 12px; background: var(--mist-100); color: var(--navy-700); display: grid; place-items: center; }
.vchip:hover .vi { background: var(--navy-800); color: var(--gold-400); }
.vchip span { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy-800); line-height: 1.25; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; }
.step__n { inline-size: 50px; block-size: 50px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: #fff; background: linear-gradient(150deg, var(--navy-700), var(--navy-600)); border: 2px solid var(--gold-500); margin-bottom: 16px; position: relative; z-index: 1; }
.step h4 { font-size: 1.04rem; color: var(--navy-800); margin-bottom: 5px; }
.step p { font-size: .92rem; }
.step::after { content: ""; position: absolute; inset-block-start: 24px; inset-inline-start: 60px; inline-size: calc(100% - 50px); block-size: 2px; background: repeating-linear-gradient(90deg, var(--gold-500) 0 6px, transparent 6px 12px); opacity: .5; }
.step:last-child::after { display: none; }
@media (max-width: 900px){ .step::after { display: none; } }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: 14px; background: #fff; margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s; }
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 600; color: var(--navy-800); font-size: 1.04rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .chev { flex: 0 0 auto; transition: transform .25s var(--ease); color: var(--gold-500); }
.faq__item[open] summary .chev { transform: rotate(180deg); }
.faq__a { padding: 0 22px 20px; color: var(--text-soft); font-size: .98rem; line-height: 1.7; }

/* WhatsApp contact card */
.wa-card { background: linear-gradient(150deg, #0e7a3a, #16a957); color: #fff; border-radius: var(--radius); padding: 24px; display: flex; gap: 18px; align-items: center; box-shadow: var(--shadow-md); }
.wa-card .wi { inline-size: 54px; block-size: 54px; border-radius: 14px; background: rgba(255,255,255,.18); display: grid; place-items: center; flex: 0 0 auto; }
.wa-card h4 { color: #fff; font-size: 1.12rem; }
.wa-card p { color: rgba(255,255,255,.88); font-size: .92rem; margin-top: 2px; }
.wa-card .btn { margin-inline-start: auto; }
@media (max-width: 580px){ .wa-card { flex-wrap: wrap; } .wa-card .btn { margin-inline-start: 0; inline-size: 100%; justify-content: center; } }

/* Disclaimer line (footer) */
.disclaimer { font-size: .82rem; color: var(--slate-400); line-height: 1.6; }

/* Anchor offset so the fixed header doesn't cover section tops */
[id] { scroll-margin-block-start: 88px; }

/* =====================================================================
   ELMA SERVICES — trust sections + colour polish
   ===================================================================== */

/* Stats band */
.statband-sec { position: relative; padding-block: clamp(46px,6vw,76px); color: var(--text-invert); overflow: hidden; isolation: isolate; }
.statband-sec__bg { position: absolute; inset: 0; z-index: -1; background:
   radial-gradient(620px 320px at 14% -10%, rgba(201,162,74,.24), transparent 60%),
   radial-gradient(620px 340px at 92% 120%, rgba(46,111,176,.40), transparent 60%),
   linear-gradient(120deg, var(--navy-900), var(--navy-800)); }
.statband2 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
@media (max-width: 720px){ .statband2 { grid-template-columns: 1fr 1fr; gap: 32px 16px; } }
.stat2__n { font-family: var(--font-head); font-weight: 800; line-height: 1; font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem);
   background: linear-gradient(100deg, var(--gold-400), var(--gold-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat2__n span { -webkit-text-fill-color: var(--gold-400); color: var(--gold-400); }
.stat2__l { margin-top: 10px; font-size: .95rem; color: rgba(233,239,246,.74); font-family: var(--font-head); font-weight: 500; }

/* Destinations strip */
.dest-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; }
.dest { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border: 1px solid var(--line); border-radius: 999px;
   background: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--navy-800); box-shadow: var(--shadow-sm);
   transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.dest:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.dest .flag { font-size: 1.3rem; line-height: 1; }

/* Testimonials */
.tcard { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px 24px;
   box-shadow: var(--shadow-sm); block-size: 100%; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard::before { content: "\201C"; position: absolute; inset-block-start: 2px; inset-inline-end: 22px; font-family: Georgia, "Times New Roman", serif;
   font-size: 5rem; line-height: 1; color: var(--gold-100); z-index: 0; }
[dir="rtl"] .tcard::before { inset-inline-end: auto; inset-inline-start: 22px; }
.tcard .stars { position: relative; z-index: 1; color: var(--gold-500); letter-spacing: 3px; font-size: 1.05rem; }
.tcard blockquote { position: relative; z-index: 1; margin: 14px 0 18px; font-size: 1.02rem; line-height: 1.65; color: var(--ink-700); }
.tcard figcaption { margin-top: auto; display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy-800); }
.tcard .tdot { inline-size: 34px; block-size: 34px; border-radius: 50%; flex: 0 0 auto;
   background: linear-gradient(150deg, var(--navy-600), var(--navy-700)); box-shadow: inset 0 0 0 2px var(--gold-400); }

/* Colour polish */
.value-strip { border-block-start: 2px solid var(--gold-500); }
.hero__bg { background:
   radial-gradient(900px 520px at 80% -8%, rgba(46,111,176,.55), transparent 60%),
   radial-gradient(700px 500px at 4% 110%, rgba(201,162,74,.28), transparent 55%),
   radial-gradient(560px 460px at 60% 40%, rgba(201,162,74,.07), transparent 70%),
   linear-gradient(160deg, var(--navy-900), var(--navy-800) 55%, #0E2A50); }
.card--accent { border-top-width: 3px; }
.card__icon { box-shadow: 0 6px 16px rgba(11,37,69,.18); }
