/* ==========================================================================
   الأرض والمحيط الأزرق  |  Blue Oceane
   نظام تصميم متكامل — RTL  |  Design System
   ========================================================================== */

:root {
  /* الألوان — Brand palette */
  --navy:      #08233f;   /* أزرق المحيط العميق */
  --navy-2:    #0c3358;
  --blue:      #115e8b;
  --teal:      #18a4a0;   /* فيروزي */
  --teal-2:    #21c5bd;
  --sand:      #d8b380;   /* رملي ذهبي */
  --gold:      #c89b54;
  --cream:     #f6f1e7;
  --ink:       #0e1b27;
  --muted:     #5d7184;
  --line:      rgba(8, 35, 63, .10);
  --white:     #ffffff;

  --grad-deep: linear-gradient(135deg, #08233f 0%, #0c3358 45%, #115e8b 100%);
  --grad-teal: linear-gradient(135deg, #0c3358 0%, #115e8b 55%, #18a4a0 100%);
  --grad-sun:  linear-gradient(135deg, #c89b54 0%, #d8b380 100%);

  --shadow-s:  0 4px 16px rgba(8, 35, 63, .08);
  --shadow-m:  0 14px 40px rgba(8, 35, 63, .14);
  --shadow-l:  0 30px 70px rgba(8, 35, 63, .22);

  --r-s: 10px;
  --r-m: 18px;
  --r-l: 28px;

  --container: 1240px;
  --nav-h: 86px;

  --f-head: "Tajawal", "Cairo", system-ui, sans-serif;
  --f-body: "Tajawal", "Cairo", system-ui, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--teal); color: #fff; }

/* ----------------------------- Helpers --------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 90px) 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: #fff; }
.bg-deep  { background: var(--grad-deep); color: #fff; }
.bg-navy  { background: var(--navy); color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); display: inline-block; }
.bg-deep .eyebrow, .bg-navy .eyebrow { color: var(--teal-2); }

h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 800; line-height: 1.18; letter-spacing: -.01em; }
.h-xxl { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.h-xl  { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.h-l   { font-size: clamp(1.5rem, 3vw, 2.3rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 60ch; }
.bg-deep .lead, .bg-navy .lead { color: rgba(255,255,255,.78); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 18px; }

.text-grad {
  background: var(--grad-sun);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ----------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px; font-weight: 700; font-size: .98rem;
  transition: .35s var(--ease); white-space: nowrap; cursor: pointer; border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(-5px); }
.btn--primary { background: var(--gold); color: #fff; box-shadow: 0 10px 26px rgba(200,155,84,.35); }
.btn--primary:hover { background: #b88a45; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(200,155,84,.45); }
.btn--teal { background: var(--teal); color: #fff; box-shadow: 0 10px 26px rgba(24,164,160,.3); }
.btn--teal:hover { background: #138f8b; transform: translateY(-3px); }
.btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--dark { border-color: var(--navy); color: var(--navy); }
.btn--dark:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue); transition: gap .3s; }
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover { gap: 14px; }

/* ----------------------------- Navbar ---------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: .4s var(--ease);
}
.nav.is-solid { height: 70px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-s); }
.nav__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark { width: 46px; height: 46px; flex: none; transition: .4s var(--ease); }
.nav.is-solid .brand__mark { width: 40px; height: 40px; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand__ar { font-family: var(--f-head); font-weight: 800; font-size: 1.16rem; color: #fff; transition: color .4s; }
.brand__en { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.7); transition: color .4s; }
.nav.is-solid .brand__ar { color: var(--navy); }
.nav.is-solid .brand__en { color: var(--teal); }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 10px 16px; border-radius: 100px; font-weight: 600; font-size: .96rem;
  color: rgba(255,255,255,.9); transition: .25s; position: relative;
}
.nav.is-solid .nav__link { color: var(--ink); }
.nav__link:hover, .nav__link.active { color: #fff; background: rgba(255,255,255,.14); }
.nav.is-solid .nav__link:hover, .nav.is-solid .nav__link.active { color: var(--blue); background: rgba(17,94,139,.08); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__lang { font-weight: 700; font-size: .9rem; color: #fff; padding: 8px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,.35); transition: .25s; }
.nav.is-solid .nav__lang { color: var(--navy); border-color: var(--line); }
.nav__lang:hover { background: rgba(255,255,255,.15); }
.nav.is-solid .nav__lang:hover { background: var(--cream); }
.nav__cta .btn { padding: 11px 22px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 12px; }
.nav__burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav.is-solid .nav__burger span { background: var(--navy); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 110; pointer-events: none; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(8,35,63,.5); opacity: 0; transition: .4s; backdrop-filter: blur(2px); }
.drawer__panel {
  position: absolute; inset-block: 0; inset-inline-start: 0; width: min(86vw, 360px);
  background: var(--navy); color: #fff; transform: translateX(100%); transition: .45s var(--ease);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.drawer.open { pointer-events: auto; }
.drawer.open .drawer__overlay { opacity: 1; }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.drawer__close { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.1); color: #fff; font-size: 1.4rem; }
.drawer a.nav__link { color: rgba(255,255,255,.88); font-size: 1.1rem; padding: 14px 16px; border-radius: 14px; }
.drawer a.nav__link:hover { background: rgba(255,255,255,.1); }
.drawer .btn { margin-top: 20px; }

/* ------------------------------- Hero ---------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,35,63,.45) 0%, rgba(8,35,63,.15) 35%, rgba(8,35,63,.75) 100%); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg-fallback { position: absolute; inset: 0; z-index: -3; background: var(--grad-teal); }

.hero__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding: 0 24px clamp(70px, 10vw, 120px); }
.hero__tag { display: inline-flex; align-items: center; gap: 10px; padding: 9px 20px; border-radius: 100px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); font-weight: 600; font-size: .9rem; margin-bottom: 26px; }
.hero__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-2); box-shadow: 0 0 0 4px rgba(33,197,189,.3); }
.hero h1 { max-width: 17ch; text-shadow: 0 4px 30px rgba(0,0,0,.3); }
.hero__sub { max-width: 56ch; margin: 24px 0 36px; font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: rgba(255,255,255,.9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll { position: absolute; inset-block-end: 28px; inset-inline-end: 24px; display: none; align-items: center; gap: 10px; font-size: .8rem; letter-spacing: .1em; opacity: .85; }
.hero__scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; position: relative; }
.hero__scroll .mouse::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: #fff; border-radius: 2px; animation: scroll 1.6s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* hero stats strip */
.hero__stats { position: absolute; inset-inline-end: 24px; inset-block-end: 40px; display: flex; gap: 34px; text-align: center; }
.hero__stats .num { font-family: var(--f-head); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.hero__stats .lbl { font-size: .8rem; opacity: .8; }

/* ----------------------------- Marquee --------------------------------- */
.marquee { background: var(--navy); color: rgba(255,255,255,.85); overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: marq 28s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 14px; font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.marquee span::after { content: "✦"; color: var(--gold); }
@keyframes marq { to { transform: translateX(50%); } }

/* ------------------------- Intro / split ------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split--rev { grid-template-columns: 1fr 1.05fr; }
.split__media { position: relative; }
.media-frame { border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-l); aspect-ratio: 4/3.2; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-badge {
  position: absolute; inset-block-end: -26px; inset-inline-start: -26px; background: #fff; border-radius: var(--r-m);
  padding: 22px 26px; box-shadow: var(--shadow-m); display: flex; align-items: center; gap: 16px; max-width: 280px;
}
.media-badge .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-teal); display: grid; place-items: center; color: #fff; flex: none; }
.media-badge .ic svg { width: 26px; height: 26px; }
.media-badge b { font-family: var(--f-head); display: block; font-size: 1.05rem; }
.media-badge small { color: var(--muted); }

.feature-list { display: grid; gap: 18px; margin-top: 30px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ck { width: 26px; height: 26px; border-radius: 50%; background: rgba(24,164,160,.14); color: var(--teal); display: grid; place-items: center; flex: none; margin-top: 3px; }
.feature-list .ck svg { width: 14px; height: 14px; }
.feature-list b { font-family: var(--f-head); }

/* ------------------------------ Cards ---------------------------------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* destination card */
.dest {
  position: relative; border-radius: var(--r-l); overflow: hidden; min-height: 440px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-m); isolation: isolate;
}
.dest img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.dest::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,35,63,0) 30%, rgba(8,35,63,.85) 100%); }
.dest:hover img { transform: scale(1.08); }
.dest__body { padding: 30px; width: 100%; }
.dest__kicker { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-2); margin-bottom: 10px; }
.dest__body h3 { font-size: 1.6rem; }
.dest__body p { color: rgba(255,255,255,.82); margin-top: 8px; font-size: .96rem; max-height: 0; opacity: 0; overflow: hidden; transition: .5s var(--ease); }
.dest:hover .dest__body p { max-height: 90px; opacity: 1; margin-top: 12px; }
.dest__meta { display: flex; gap: 18px; margin-top: 16px; font-size: .86rem; color: rgba(255,255,255,.8); }
.dest__meta span { display: inline-flex; align-items: center; gap: 6px; }
.dest__meta svg { width: 15px; height: 15px; }
.dest--tall { min-height: 100%; }

/* experience card */
.exp { background: #fff; border-radius: var(--r-m); overflow: hidden; box-shadow: var(--shadow-s); transition: .4s var(--ease); border: 1px solid var(--line); }
.exp:hover { transform: translateY(-8px); box-shadow: var(--shadow-m); }
.exp__img { aspect-ratio: 16/11; overflow: hidden; }
.exp__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.exp:hover .exp__img img { transform: scale(1.07); }
.exp__body { padding: 26px; }
.exp__tag { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); }
.exp__body h3 { font-size: 1.25rem; margin: 8px 0 10px; }
.exp__body p { color: var(--muted); font-size: .96rem; }
.exp__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.exp__price { font-family: var(--f-head); font-weight: 800; color: var(--navy); }
.exp__price small { color: var(--muted); font-weight: 500; font-size: .8rem; }

/* feature/icon card */
.icard { background: #fff; border-radius: var(--r-m); padding: 34px 30px; box-shadow: var(--shadow-s); border: 1px solid var(--line); transition: .4s var(--ease); height: 100%; }
.icard:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.icard .ic { width: 60px; height: 60px; border-radius: 16px; background: var(--grad-teal); display: grid; place-items: center; color: #fff; margin-bottom: 22px; }
.icard .ic svg { width: 30px; height: 30px; }
.icard h3 { font-size: 1.2rem; margin-bottom: 10px; }
.icard p { color: var(--muted); font-size: .96rem; }
.bg-deep .icard, .bg-navy .icard { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.bg-deep .icard p, .bg-navy .icard p { color: rgba(255,255,255,.72); }

/* ------------------------------ Stats ---------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--f-head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; background: var(--grad-sun); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { margin-top: 10px; color: rgba(255,255,255,.78); font-weight: 600; }

/* --------------------------- Gallery / mosaic -------------------------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.mosaic figure { border-radius: var(--r-m); overflow: hidden; position: relative; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.mosaic figure:hover img { transform: scale(1.08); }
.mosaic figcaption { position: absolute; inset-block-end: 0; inset-inline: 0; padding: 30px 20px 16px; color: #fff; font-weight: 700; font-family: var(--f-head); background: linear-gradient(transparent, rgba(8,35,63,.8)); opacity: 0; transition: .4s; }
.mosaic figure:hover figcaption { opacity: 1; }
.mosaic .big { grid-column: span 2; grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }

/* ----------------------------- Steps ----------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: s; }
.step { position: relative; }
.step .n { font-family: var(--f-head); font-weight: 800; font-size: 1.05rem; width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--gold); color: var(--gold); display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }
.bg-deep .step p { color: rgba(255,255,255,.72); }

/* --------------------------- Testimonials ------------------------------ */
.quote { background: #fff; border-radius: var(--r-m); padding: 36px; box-shadow: var(--shadow-s); border: 1px solid var(--line); position: relative; height: 100%; }
.quote .mark { font-family: Georgia, serif; font-size: 4rem; line-height: .8; color: var(--teal); opacity: .25; }
.quote p { font-size: 1.05rem; color: var(--ink); margin: 6px 0 22px; }
.quote__who { display: flex; align-items: center; gap: 14px; }
.quote__who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.quote__who b { font-family: var(--f-head); display: block; }
.quote__who small { color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ----------------------------- Partners -------------------------------- */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 50px; opacity: .85; }
.partners span { font-family: var(--f-head); font-weight: 800; font-size: 1.3rem; color: var(--muted); letter-spacing: .02em; }

/* ------------------------------ CTA band ------------------------------- */
.cta-band { position: relative; border-radius: var(--r-l); overflow: hidden; padding: clamp(50px, 7vw, 90px); color: #fff; text-align: center; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(8,35,63,.9), rgba(17,94,139,.7)); }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 56ch; margin: 18px auto 32px; color: rgba(255,255,255,.85); }
.cta-band .hero__actions { justify-content: center; }

/* ------------------------------ Forms ---------------------------------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 700; font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 18px; border-radius: var(--r-s); border: 1.5px solid var(--line);
  background: #fff; font-family: inherit; font-size: 1rem; color: var(--ink); transition: .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(24,164,160,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.newsletter { display: flex; gap: 12px; max-width: 520px; }
.newsletter input { flex: 1; padding: 16px 20px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: #fff; font-family: inherit; }
.newsletter input::placeholder { color: rgba(255,255,255,.6); }
.newsletter input:focus { outline: none; border-color: var(--teal-2); }

/* ------------------------------ Accordion ------------------------------ */
.acc { border-bottom: 1px solid var(--line); }
.acc__head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; text-align: start; font-family: var(--f-head); font-weight: 700; font-size: 1.12rem; color: var(--navy); }
.acc__head .pm { width: 32px; height: 32px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; flex: none; transition: .3s; color: var(--teal); }
.acc.open .acc__head .pm { background: var(--teal); color: #fff; transform: rotate(45deg); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__body p { padding: 0 4px 22px; color: var(--muted); }

/* ----------------------------- Page hero ------------------------------- */
.page-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: #fff; padding-top: var(--nav-h); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,35,63,.5), rgba(8,35,63,.8)); }
.page-hero .container { padding-block: 50px 64px; }
.crumbs { display: flex; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.crumbs a:hover { color: #fff; }

/* ------------------------------ Footer --------------------------------- */
.footer { background: var(--navy); color: rgba(255,255,255,.72); padding-top: 80px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 22px; }
.footer__brand .brand__ar { color: #fff; }
.footer__brand .brand__en { color: var(--teal-2); }
.footer__about { margin: 20px 0; max-width: 42ch; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .3s; }
.footer__social a:hover { background: var(--teal); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__links { display: grid; gap: 12px; }
.footer__links a:hover { color: var(--teal-2); padding-inline-start: 6px; transition: .25s; }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--teal-2); flex: none; margin-top: 4px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 26px 0; flex-wrap: wrap; font-size: .9rem; }
.footer__bottom a:hover { color: #fff; }
.footer__credit { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; text-align: center; font-size: .85rem; opacity: .75; }
.footer__heart { color: #ff5a6b; }

/* ------------------------- WhatsApp FAB -------------------------------- */
.wa-fab {
  position: fixed; bottom: 22px; left: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0;
  height: 60px; padding: 0 18px; border-radius: 100px;
  background: #25D366; color: #fff;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: .4s var(--ease); overflow: hidden;
}
.wa-fab svg { width: 32px; height: 32px; flex: none; }
.wa-fab__tip { max-width: 0; opacity: 0; white-space: nowrap; font-weight: 700; transition: .4s var(--ease); }
.wa-fab:hover { background: #1ebe5a; transform: translateY(-3px); box-shadow: 0 16px 38px rgba(37,211,102,.55); }
.wa-fab:hover .wa-fab__tip { max-width: 160px; opacity: 1; margin-inline-start: 12px; }
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 100px;
  box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 640px) {
  .wa-fab { height: 56px; padding: 0 16px; bottom: 16px; left: 16px; }
  .wa-fab svg { width: 28px; height: 28px; }
}

/* --------------------------- Reveal anim ------------------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* ----------------------------- Responsive ------------------------------ */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero__stats { display: none; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav__menu, .nav__cta .nav__lang, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .split, .split--rev { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .media-badge { inset-inline-start: 16px; inset-block-end: -20px; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .mosaic .big { grid-column: span 2; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; }
  .newsletter .btn { width: 100%; }
  .hero__scroll { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
}
