/* =========================================================================
   GULF MEDIA BROADCASTING FZC LLC — Premium Stylesheet
   Author: Gulf Media Broadcasting
   -------------------------------------------------------------------------
   Structure:
   1. CSS Variables & Reset
   2. Base / Typography
   3. Buttons & Helpers
   4. Accessibility
   5. Preloader
   6. Header / Topbar / Navbar / Mobile menu
   7. Hero
   8. Sections & Layout primitives
   9. Cards (services, feature, process, gallery)
   10. Stats
   11. CTA
   12. Footer
   13. Contact page / forms / info
   14. WhatsApp float / back-to-top
   15. Animations & keyframes
   16. Reduced motion
   17. Responsive
   ========================================================================= */

/* ============ 1. CSS VARIABLES ============ */
:root {
  --red: #D51F26;
  --blue: #172B8C;
  --navy: #09152F;
  --white: #FFFFFF;
  --grey-soft: #F5F7FA;
  --charcoal: #20242B;

  --red-dark: #B11820;
  --blue-dark: #101E63;
  --red-soft: #FBEAEB;
  --blue-soft: #E9EDFB;

  --grad-red: linear-gradient(135deg, #E02930, #C0181F);
  --grad-blue: linear-gradient(135deg, #1E3BC0, #101E63);
  --grad-navy: linear-gradient(135deg, #12244a 0%, #09152F 55%, #0c1f42 100%);
  --grad-accent: linear-gradient(90deg, var(--red), var(--blue));
  --grad-text: linear-gradient(90deg, #FF5A61, #4E6Bff);

  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 4px 14px rgba(9, 21, 47, 0.08);
  --shadow-md: 0 12px 30px rgba(9, 21, 47, 0.12);
  --shadow-lg: 0 24px 60px rgba(9, 21, 47, 0.18);
  --shadow-red: 0 14px 34px rgba(213, 31, 38, 0.28);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1200px;
  --nav-h: 82px;
  --nav-h-scrolled: 70px;
  --topbar-h: 40px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.0625rem;
  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: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ============ 2. BASE / TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--soft { background: var(--grey-soft); }
.section--navy { background: var(--grad-navy); color: rgba(255,255,255,0.82); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.gap-lg { gap: 2rem; }

/* Eyebrow / label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}
.eyebrow--light { color: #aeb9e0; }

.lead { font-size: 1.15rem; color: #565d6b; max-width: 46em; }
.section--navy .lead { color: rgba(255,255,255,0.82); }

.section-head { max-width: 760px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow { justify-content: center; }

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

/* ============ 3. BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
  border: 2px solid transparent;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }

.btn--primary { background: var(--grad-red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 44px rgba(213,31,38,0.38); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--white { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn--outline { background: transparent; color: var(--navy); border-color: rgba(23,43,140,0.35); }
.btn--outline:hover { background: var(--blue-soft); transform: translateY(-3px); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn--block { width: 100%; }

.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ripple accent */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-140%);
  transition: transform 0.7s var(--ease);
}
.btn:hover::after { transform: translateX(140%); }

/* ============ LINK ============ */
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}
.textlink svg { width: 17px; height: 17px; transition: transform var(--transition); }
.textlink:hover svg { transform: translateX(4px); }

/* ============ 4. ACCESSIBILITY ============ */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 2000;
  background: var(--blue);
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  transition: left 0.2s;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ 5. PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #fff, #B9C4FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: preloadPulse 1.6s var(--ease) infinite;
}
.preloader__bar {
  width: 180px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
}
.preloader__bar::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: var(--grad-accent);
  border-radius: 3px;
  animation: preloadBar 1.3s var(--ease) infinite;
}

/* ============ 6. HEADER ============ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  position: relative;
  z-index: 40;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar__left { display: flex; align-items: center; gap: clamp(0.9rem, 2.5vw, 1.8rem); white-space: nowrap; overflow: hidden; }
.topbar__item { display: inline-flex; align-items: center; gap: 0.45rem; transition: color var(--transition); }
.topbar__item svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }
.topbar__item:hover { color: #fff; }
.topbar__right { display: flex; align-items: center; gap: 0.9rem; white-space: nowrap; }
.topbar__chip { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.82rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(9,21,47,0.07);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.98);
}
.site-header.scrolled .nav {
  min-height: var(--nav-h-scrolled);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--nav-h);
  transition: min-height var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  min-width: 0;
  overflow: visible;
}

.logo__mark {
  width: 160px;
  height: 120px;
  flex-shrink: 0;
  overflow: visible;
}

.logo__mark img,
.logo__mark svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.25);
  transform-origin: left center;
}

/* Mobile */
@media (max-width: 768px) {
  .logo__mark {
    width: 125px;
    height: 90px;
  }

  .logo__mark img,
  .logo__mark svg {
    transform: scale(1.2);
    transform-origin: left center;
  }
}
.logo__text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.logo__text-en {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.95rem, 2vw, 1.18rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo__text-en span { color: var(--red); }
.logo__text-ar {
  font-size: clamp(0.55rem, 1.1vw, 0.68rem);
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Desktop nav links */
.nav__links { display: flex; align-items: center; gap: clamp(0.6rem, 1.6vw, 1.4rem); }
.nav__link {
  position: relative;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--charcoal);
  padding: 0.4rem 0.15rem;
  transition: color var(--transition);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%; height: 2.5px;
  background: var(--grad-accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--blue); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__cta { margin-left: 0.4rem; }
.nav__cta .btn { padding: 0.78rem 1.4rem; font-size: 0.92rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(9,21,47,0.12);
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #fff;
  transition: var(--transition);
}
.nav-toggle:hover { background: var(--blue-soft); }
.nav-toggle svg { width: 24px; height: 24px; }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition), visibility var(--transition);
}
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,21,47,0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(88vw, 360px);
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.8rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(9,21,47,0.08);
}
.mobile-menu__brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
}
.mobile-menu__brand span { color: var(--red); }
.mobile-menu__close {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(9,21,47,0.12);
  color: var(--navy);
  transition: var(--transition);
}
.mobile-menu__close:hover { background: var(--red-soft); color: var(--red); }
.mobile-menu__close svg { width: 22px; height: 22px; }

.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-menu__link {
  padding: 0.9rem 0.4rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid rgba(9,21,47,0.06);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu__link svg { width: 18px; height: 18px; color: var(--red); transition: var(--transition); }
.mobile-menu__link:hover { color: var(--red); padding-left: 0.8rem; }
.mobile-menu__link.active { color: var(--red); }

.mobile-menu__foot { margin-top: auto; padding-top: 1.4rem; }
.mobile-menu__contact { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.2rem; }
.mobile-menu__contact a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; color: var(--charcoal); font-weight: 500;
}
.mobile-menu__contact svg { width: 17px; height: 17px; color: var(--blue); }

body.lock { overflow: hidden; }

/* ============ 7. HERO ============ */
.hero {
  position: relative;
  min-height: max(88vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: kenburns 22s var(--ease) infinite alternate;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(9,21,47,0.94) 0%, rgba(9,21,47,0.82) 38%, rgba(13,25,58,0.55) 70%, rgba(9,21,47,0.6) 100%);
  z-index: 1;
}
.hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(9,21,47,1) 0%,
    rgba(9,21,47,0.75) 12%,
    transparent 34%,
    transparent 72%,
    rgba(9,21,47,0.5) 100%);
}
.hero__waves {
  position: absolute;
  right: -5%;
  bottom: 8%;
  z-index: 2;
  width: 52%;
  max-width: 560px;
  opacity: 0.28;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom right, #000, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom right, #000, transparent 70%);
  opacity: 0.4;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding-block: 6rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFD8DA;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  margin-bottom: 1.6rem;
  backdrop-filter: blur(4px);
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.hero__title {
  font-size: clamp(2.3rem, 6vw, 4.3rem);
  color: #fff;
  margin-bottom: 1.4rem;
  font-weight: 800;
}
.hero__text {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin-bottom: 2.2rem;
}
.hero__trust {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 1.5rem;
}
.hero__trust b { color: #fff; font-weight: 600; }
.hero__trust .sep { color: var(--red); font-weight: 700; }

/* Reveal classes */
.reveal-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-in { opacity: 1; transform: none; }
.hero .reveal-up { transition-delay: var(--d, 0s); }
@media (prefers-reduced-motion: reduce) { .reveal-up { opacity: 1; transform: none; } }

/* ============ 8. LAYOUT PRIMITIVES ============ */
.grid { display: grid; gap: 1.6rem; }
.grid-cards { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--alt .split__media { order: 2; }

/* Image frame */
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.img-frame:hover img { transform: scale(1.06); }
.img-frame--16x9 { aspect-ratio: 16 / 9; }
.img-frame--4x3 { aspect-ratio: 4 / 3; }
.img-frame--tall { aspect-ratio: 4 / 5; }
.img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(9,21,47,0.55) 100%);
  z-index: 1;
  opacity: 0.7;
}
.img-frame .tag {
  position: absolute;
  z-index: 2;
  left: 1.2rem; bottom: 1.2rem;
  background: rgba(9,21,47,0.72);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.img-frame .icon-badge {
  position: absolute;
  z-index: 2;
  right: 1rem; top: 1rem;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: var(--grad-red);
  box-shadow: var(--shadow-sm);
}
.ring-accent { position: absolute; width: 120px; height: 120px; border: 14px solid var(--red); border-radius: 50%; opacity: 0.16; }

/* ============ 9. CARDS ============ */
.card {
  background: #fff;
  border: 1px solid rgba(9,21,47,0.08);
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(23,43,140,0.18); }
.card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.card__num { font-family: var(--font-display); font-weight: 800; color: #e6e9f2; font-size: 1.9rem; }
.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  background: var(--blue-soft);
  transition: var(--transition);
}
.card:hover .card__icon { background: var(--grad-red); color: #fff; transform: rotate(-6deg); }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.7rem; }
.card p { color: #565d6b; font-size: 0.97rem; margin-bottom: 1.3rem; }
.card .textlink { font-size: 0.92rem; }
.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover::after { transform: scaleX(1); }

/* Service card with image */
.srvc {
  background: #fff;
  border: 1px solid rgba(9,21,47,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.srvc:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.srvc__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.srvc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.srvc:hover .srvc__media img { transform: scale(1.1); }
.srvc__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,21,47,0.28), transparent 50%);
}
.srvc__body { padding: 1.7rem; display: flex; flex-direction: column; flex: 1; }
.srvc__body h3 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; }
.srvc__body h3 svg { width: 24px; height: 24px; color: var(--red); }
.srvc__body p { color: #565d6b; font-size: 0.96rem; flex: 1; }
.srvc__body .textlink { margin-top: 1.2rem; }

/* Process */
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.step {
  position: relative;
  padding: 1.9rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(9,21,47,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-navy);
  color: #fff;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  border: 3px solid transparent;
  background-image: linear-gradient(140deg, var(--blue), var(--navy));
  box-shadow: 0 8px 20px rgba(23,43,140,0.3);
}
.step h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.step p { color: #565d6b; font-size: 0.92rem; }
.step--red .step__icon { background-image: linear-gradient(140deg, var(--red-dark), var(--red)); box-shadow: 0 8px 20px rgba(213,31,38,0.3); }

/* Capability item */
.cap {
  background: #fff;
  border: 1px solid rgba(9,21,47,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(23,43,140,0.2); }
.cap__icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  background: var(--blue-soft);
}
.cap__icon svg { width: 26px; height: 26px; }
.cap h4 { margin-bottom: 0.3rem; }
.cap p { font-size: 0.92rem; color: #565d6b; margin: 0; }

/* ============ 10. STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.stat {
  text-align: center;
  padding: 2rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(9,21,47,0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat__value .suffix { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 0.7em; }
.stat__label { font-size: 0.95rem; color: #565d6b; font-weight: 500; }

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grad-navy);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -1;
  background:
    radial-gradient(420px circle at 20% 30%, rgba(213,31,38,0.45), transparent 55%),
    radial-gradient(460px circle at 85% 80%, rgba(23,43,140,0.7), transparent 55%);
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; font-weight: 800; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 2rem; }
.cta-banner .btn-row { justify-content: center; }

/* ============ 11. FOOTER ============ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.78); }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
.footer__brand .logo__text-en { color: #fff; }
.footer__brand .logo__text-ar { color: #aeb9e0; }
.footer__about {
  font-size: 0.95rem;
  margin: 1.1rem 0 1.4rem;
  max-width: 30em;
  color: rgba(255,255,255,0.72);
}
.footer__social { display: flex; gap: 0.7rem; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  transition: var(--transition);
}
.footer__social a:hover { background: var(--grad-red); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }

.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer__col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--grad-accent); }
.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a { font-size: 0.94rem; color: rgba(255,255,255,0.7); transition: var(--transition); display: inline-flex; align-items: center; gap: 0.4rem; }
.footer__links a svg { width: 13px; height: 13px; color: var(--red); }
.footer__links a:hover { color: #fff; padding-left: 4px; }

.footer__contact { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact li { display: flex; gap: 0.8rem; align-items: flex-start; }
.footer__contact svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer__contact a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.footer__contact a:hover { color: #fff; }
.footer__contact span { font-size: 0.94rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a:hover { color: #fff; }

/* ============ 12. PAGE HERO (inner) ============ */
.page-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 7rem) clamp(3.5rem, 8vw, 6rem);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(9,21,47,0.95), rgba(9,21,47,0.78) 55%, rgba(16,30,80,0.72));
}
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--red); }
.breadcrumb .current { color: #fff; }

/* ============ 13. CONTACT ============ */
.info-card {
  background: #fff;
  border: 1px solid rgba(9,21,47,0.08);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: var(--transition);
  height: 100%;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: var(--grad-blue);
  margin-bottom: 1.2rem;
}
.info-card--red .info-card__icon { background: var(--grad-red); }
.info-card__icon svg { width: 26px; height: 26px; }
.info-card h3 { margin-bottom: 0.4rem; }
.info-card p { color: #565d6b; font-size: 0.95rem; margin-bottom: 0.4rem; }
.info-card a { color: var(--blue); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }

/* Form */
.form-card {
  background: #fff;
  border: 1px solid rgba(9,21,47,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.2rem; position: relative; }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.form-label .req { color: var(--red); }
.form-control {
  width: 100%;
  padding: 0.85rem 1.05rem;
  border: 1.5px solid rgba(9,21,47,0.16);
  border-radius: 12px;
  background: var(--grey-soft);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-control::placeholder { color: #98a0ae; }
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23,43,140,0.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 500;
  min-height: 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.form-group.has-error .form-error { opacity: 1; margin-top: 0.15rem; }
.form-group.has-error .form-control { border-color: var(--red); background: #FFF7F7; }
.form-note { font-size: 0.85rem; color: #98a0ae; }

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success.show { display: block; animation: fadeInUp 0.6s var(--ease); }
.form-success__icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8F7EE, #D2F0DC);
  color: #1b9e4e;
  display: flex; align-items: center; justify-content: center;
}
.form-success__icon svg { width: 36px; height: 36px; }
.form-success h3 { color: #1b9e4e; margin-bottom: 0.5rem; }

/* ============ 14. WHATSAPP / TOP ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(37,211,102,0.42);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 34px rgba(37,211,102,0.5); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.5);
  animation: pulseWa 2.4s var(--ease) infinite;
  z-index: -1;
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
.wa-tooltip::after {
  content: "";
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

.back-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(9,21,47,0.12);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--grad-red); color: #fff; }
.back-top svg { width: 22px; height: 22px; }

/* ============ GALLERY (productions) ============ */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.4rem; }
.filter-btn {
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(9,21,47,0.14);
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--grad-blue); border-color: transparent; color: #fff; box-shadow: var(--shadow-sm); }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  box-shadow: var(--shadow-sm);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.g-item:hover img { transform: scale(1.1); }
.g-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,21,47,0.85), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.3rem;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.g-item:hover .g-item__overlay { opacity: 1; }
.g-item__play {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.g-item__play svg { width: 24px; height: 24px; }
.g-item:hover .g-item__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.g-item__label { font-weight: 700; color: #fff; font-size: 1.02rem; }
.g-item__cat { font-size: 0.8rem; color: #c9d3f3; }
.g-item.hide { display: none; }
.g-item { animation: fadeInUp 0.5s var(--ease); }

/* Formats */
.format {
  background: #fff;
  border: 1px solid rgba(9,21,47,0.08);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.format:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(23,43,140,0.2); }
.format__icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-soft);
  color: var(--red);
}
.format__icon svg { width: 24px; height: 24px; }
.format h4 { font-size: 1.02rem; margin-bottom: 0.1rem; }
.format p { font-size: 0.86rem; color: #6b7280; }

/* Features list (inline) */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.4rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.97rem; }
.checklist svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.checklist--onecol { grid-template-columns: 1fr; }

/* Values */
.value-item { text-align: center; padding: 1.8rem 1.3rem; }
.value-item .card__icon { margin: 0 auto 1rem; }

/* ============ COMPACT DIGITAL MEDIA ECOSYSTEM ============ */
.ecosystem-lite {
  overflow: hidden;
  background: linear-gradient(180deg, #f5f7fb, #fff 55%, #f6f8fc);
}
.ecosystem-lite__hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 4.7rem);
  color: rgba(255,255,255,0.76);
  background:
    radial-gradient(circle at 83% 25%, rgba(78,107,255,0.34), transparent 28%),
    radial-gradient(circle at 15% 85%, rgba(213,31,38,0.2), transparent 26%),
    linear-gradient(135deg, #071126, #0c1f45 52%, #09152f);
  border-radius: 28px;
  box-shadow: 0 28px 72px rgba(9,21,47,0.22);
}
.ecosystem-lite__hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -140px;
  top: -150px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,0.025), 0 0 0 84px rgba(255,255,255,0.014);
}
.ecosystem-lite__grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}
.ecosystem-lite__hero-content { position: relative; z-index: 2; max-width: 900px; }
.ecosystem-lite__label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  padding: 0.5rem 0.85rem;
  color: #d6defd;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.ecosystem-lite__label i,
.ecosystem-lite__ticker > strong i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: #ff4249;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,66,73,0.16);
}
.ecosystem-lite__hero h2 { max-width: 880px; color: #fff; font-size: clamp(2.25rem, 5vw, 4.2rem); line-height: 1.07; }
.ecosystem-lite__hero h2 span { background: linear-gradient(90deg, #ff6970, #8da1ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ecosystem-lite__hero p { max-width: 790px; margin-top: 1.2rem; color: rgba(255,255,255,0.73); font-size: 1.05rem; }
.ecosystem-lite__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.ecosystem-lite__positioning { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem 0.75rem; margin-top: 1.8rem; padding-top: 1.15rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.68rem; letter-spacing: 0.09em; }
.ecosystem-lite__positioning strong { color: #fff; margin-right: 0.35rem; }
.ecosystem-lite__positioning span { color: #cbd4f5; font-weight: 700; }
.ecosystem-lite__positioning b { color: #ff7379; }
.ecosystem-lite__ticker {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 58px;
  margin: -24px 30px 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e6ef;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(9,21,47,0.11);
}
.ecosystem-lite__ticker > strong { display: flex; align-items: center; gap: 0.6rem; padding: 0 1.15rem; color: #fff; background: var(--grad-red); font-size: 0.7rem; letter-spacing: 0.1em; }
.ecosystem-lite__ticker > strong i { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.18); }
.ecosystem-lite__ticker > div { min-width: 0; display: flex; align-items: center; gap: 0.85rem; overflow-x: auto; padding: 0 1.15rem; scrollbar-width: none; white-space: nowrap; color: var(--navy); font-size: 0.76rem; font-weight: 700; }
.ecosystem-lite__ticker > div::-webkit-scrollbar { display: none; }
.ecosystem-lite__ticker b { color: var(--red); }
.ecosystem-lite__section-head { max-width: 700px; margin: clamp(3.8rem, 8vw, 5.5rem) 0 1.5rem; }
.ecosystem-lite__section-head > span { display: inline-block; margin-bottom: 0.5rem; color: var(--red); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.ecosystem-lite__section-head h3 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
.ecosystem-lite__section-head p { margin-top: 0.6rem; color: #687180; }
.ecosystem-lite__journeys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ecosystem-lite__journey {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e1e6ef;
  border-radius: 18px;
  box-shadow: 0 13px 34px rgba(9,21,47,0.08);
  transition: var(--transition);
}
.ecosystem-lite__journey::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--grad-blue); }
.ecosystem-lite__journey--watch::before { background: var(--grad-red); }
.ecosystem-lite__journey--listen::before { background: linear-gradient(90deg, #702ac7, #3448ce); }
.ecosystem-lite__journey:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(9,21,47,0.13); }
.ecosystem-lite__journey > div { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; }
.ecosystem-lite__journey > div span { color: #dce1ec; font: 800 2rem/1 var(--font-display); }
.ecosystem-lite__journey svg { width: 48px; height: 48px; padding: 11px; color: #fff; background: var(--blue); border-radius: 13px; }
.ecosystem-lite__journey--watch svg { background: var(--red); }
.ecosystem-lite__journey--listen svg { background: #5d36bb; }
.ecosystem-lite__journey h3 { font-size: 1.35rem; letter-spacing: 0.06em; }
.ecosystem-lite__journey p { margin-top: 0.65rem; color: #68717f; font-size: 0.86rem; }
.ecosystem-lite__section-head--network { margin-top: 5rem; }
.ecosystem-lite__network {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #c9d0df transparent;
  padding: 0.2rem 0 1rem;
}
.ecosystem-lite__network article { flex: 0 0 clamp(245px, 27vw, 295px); min-height: 205px; padding: 1.35rem; scroll-snap-align: start; background: #fff; border: 1px solid #e1e6ef; border-radius: 16px; box-shadow: 0 11px 28px rgba(9,21,47,0.075); }
.ecosystem-lite__network article > span { display: block; margin-bottom: 1.3rem; color: #dce1ec; font: 800 1.8rem/1 var(--font-display); }
.ecosystem-lite__network h4 { font-size: 1.1rem; }
.ecosystem-lite__network p { margin-top: 0.55rem; color: #697281; font-size: 0.82rem; }
.ecosystem-lite__relationships { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 0.5rem; padding: 0.9rem 1rem; color: #fff; background: var(--navy); border-radius: 13px; }
.ecosystem-lite__relationships strong { margin-right: 0.35rem; font-size: 0.72rem; }
.ecosystem-lite__relationships span { padding: 0.32rem 0.58rem; color: #d4dcf6; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-pill); font-size: 0.64rem; font-weight: 700; }
.ecosystem-lite__section-head--details { scroll-margin-top: 110px; }
.ecosystem-lite__accordions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; align-items: start; }
.ecosystem-lite__detail { overflow: hidden; background: #fff; border: 1px solid #e0e5ee; border-radius: 13px; box-shadow: 0 7px 22px rgba(9,21,47,0.055); }
.ecosystem-lite__detail summary { position: relative; min-height: 60px; display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 3rem 0.8rem 0.9rem; color: var(--navy); font-weight: 750; cursor: pointer; list-style: none; }
.ecosystem-lite__detail summary::-webkit-details-marker { display: none; }
.ecosystem-lite__detail summary span { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue); background: var(--blue-soft); border-radius: 9px; font-size: 0.65rem; font-weight: 800; }
.ecosystem-lite__detail summary i, .ecosystem-lite__detail summary i::after { position: absolute; width: 13px; height: 2px; background: var(--blue); border-radius: 2px; transition: var(--transition); }
.ecosystem-lite__detail summary i { right: 1rem; }
.ecosystem-lite__detail summary i::after { content: ""; transform: rotate(90deg); }
.ecosystem-lite__detail[open] summary i::after { transform: rotate(0); }
.ecosystem-lite__detail[open] summary { background: #f7f9ff; }
.ecosystem-lite__detail > div { padding: 0.2rem 1rem 1rem 3.65rem; color: #626b79; font-size: 0.82rem; }
.ecosystem-lite__detail > div p { margin-bottom: 0.65rem; }
.ecosystem-lite__detail ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 0.8rem; }
.ecosystem-lite__detail li { display: flex; gap: 0.4rem; }
.ecosystem-lite__detail li::before { content: "✓"; color: var(--red); font-weight: 900; }
.ecosystem-lite__detail a { color: var(--blue); font-weight: 800; }
.ecosystem-lite__menu { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1rem; }
.ecosystem-lite__menu > div { padding: 1rem; background: #fff; border: 1px solid #e1e6ef; border-radius: 13px; }
.ecosystem-lite__menu span, .ecosystem-lite__menu strong { display: block; }
.ecosystem-lite__menu span { margin-bottom: 0.3rem; color: var(--red); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.ecosystem-lite__menu strong { color: var(--navy); font-size: 0.7rem; line-height: 1.55; }
.ecosystem-lite__platforms { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.45rem 0.7rem; margin-top: 3.5rem; padding: 1rem; color: var(--navy); background: #fff; border: 1px solid #e1e6ef; border-radius: 14px; box-shadow: var(--shadow-sm); font-size: 0.63rem; font-weight: 800; letter-spacing: 0.05em; }
.ecosystem-lite__platforms i { color: var(--red); font-style: normal; }
.ecosystem-lite__final { position: relative; overflow: hidden; margin-top: 1rem; padding: clamp(2rem, 5vw, 3.6rem); text-align: center; color: rgba(255,255,255,0.74); background: linear-gradient(135deg, #101e63, #09152f 56%, #4b1219); border-radius: 22px; }
.ecosystem-lite__final::after { content: ""; position: absolute; width: 230px; height: 230px; right: -110px; bottom: -150px; border: 30px solid rgba(255,255,255,0.045); border-radius: 50%; }
.ecosystem-lite__final > * { position: relative; z-index: 1; }
.ecosystem-lite__final > span { color: #ff858a; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; }
.ecosystem-lite__final h3 { max-width: 760px; margin: 0.55rem auto 0; color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.35rem); }
.ecosystem-lite__final p { max-width: 720px; margin: 0.9rem auto 1.35rem; }
.ecosystem-lite__final .btn-row { justify-content: center; }

@media (max-width: 800px) {
  .ecosystem-lite__hero { min-height: auto; border-radius: 22px; }
  .ecosystem-lite__ticker { margin-inline: 12px; }
  .ecosystem-lite__journeys, .ecosystem-lite__accordions, .ecosystem-lite__menu { grid-template-columns: 1fr; }
  .ecosystem-lite__journey { min-height: auto; }
}
@media (max-width: 560px) {
  .ecosystem-lite__hero { padding: 1.5rem; }
  .ecosystem-lite__hero h2 { font-size: 2.2rem; }
  .ecosystem-lite__label { align-items: flex-start; font-size: 0.6rem; line-height: 1.5; }
  .ecosystem-lite__actions .btn { width: 100%; }
  .ecosystem-lite__positioning strong { width: 100%; }
  .ecosystem-lite__ticker { min-height: 52px; margin-top: -16px; }
  .ecosystem-lite__ticker > strong { padding-inline: 0.75rem; font-size: 0; }
  .ecosystem-lite__ticker > strong::after { content: "LIVE"; font-size: 0.63rem; }
  .ecosystem-lite__detail > div { padding-left: 1rem; }
  .ecosystem-lite__detail ul { grid-template-columns: 1fr; }
}

/* ============ GULF JOBS HUNTS — CLEAN HOMEPAGE FEATURE ============ */
.jobs-hunts {
  overflow: hidden;
  background: #fff;
  color: #626b79;
}
.jobs-hunts::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(23,43,140,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,43,140,0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}
.jobs-hunts__inner { position: relative; z-index: 2; }
.jobs-hunts__accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.jobs-hunts__accent--blue {
  width: 330px;
  height: 330px;
  left: -220px;
  top: 8%;
  background: rgba(78,107,255,0.075);
}
.jobs-hunts__accent--red {
  width: 380px;
  height: 380px;
  right: -250px;
  bottom: 12%;
  background: rgba(213,31,38,0.055);
}
.jobs-hunts .section-head { max-width: 820px; }
.jobs-hunts .lead { margin-inline: auto; color: #626b79; }
.jobs-hunts__eyebrow {
  padding: 0.48rem 0.95rem;
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid rgba(213,31,38,0.12);
  border-radius: var(--radius-pill);
  letter-spacing: 0.15em;
}
.jobs-hunts__main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 1.4rem;
  align-items: stretch;
}
.jobs-hunts__card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3.5vw, 2.6rem);
  background: linear-gradient(145deg, #fff 0%, #fbfcff 65%, #f4f7ff 100%);
  border: 1px solid #e1e6f0;
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(9,21,47,0.11);
}
.jobs-hunts__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--grad-accent);
}
.jobs-hunts__intro {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.jobs-hunts__flag {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 2rem;
  background: #fff;
  border: 1px solid #e3e8f2;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.jobs-hunts__kicker {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.jobs-hunts__intro h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
.jobs-hunts__copy { margin-top: 1.1rem; color: #667080; }
.jobs-hunts__form { margin-top: 1.4rem; }
.jobs-hunts__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.jobs-hunts__fields label:nth-child(3) { grid-column: 1 / -1; }
.jobs-hunts__fields label span {
  display: block;
  margin: 0 0 0.38rem 0.12rem;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 750;
}
.jobs-hunts__fields input {
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 0.9rem;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid #d9dfeb;
  border-radius: 11px;
  outline: none;
  box-shadow: 0 3px 10px rgba(9,21,47,0.035);
  transition: var(--transition);
}
.jobs-hunts__fields input::placeholder { color: #929aaa; }
.jobs-hunts__fields input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23,43,140,0.1);
}
.jobs-hunts__fields input[aria-invalid="true"] { border-color: var(--red); }
.jobs-hunts__error {
  display: none;
  margin: 0.7rem 0 0;
  color: var(--red-dark);
  font-size: 0.84rem;
  font-weight: 650;
}
.jobs-hunts__error.show { display: block; }
.jobs-hunts__submit { margin-top: 1rem; }
.jobs-hunts__contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e4e8f0;
}
.jobs-hunts__contact-grid > a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem;
  background: #fff;
  border: 1px solid #e1e6ef;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(9,21,47,0.045);
  transition: var(--transition);
}
.jobs-hunts__contact-grid > a:hover {
  transform: translateY(-3px);
  border-color: #cbd4e7;
  box-shadow: 0 12px 25px rgba(9,21,47,0.1);
}
.jobs-hunts__contact-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--blue);
  border-radius: 10px;
}
.jobs-hunts__contact-icon--green { background: #1fa855; }
.jobs-hunts__contact-icon svg { width: 18px; height: 18px; }
.jobs-hunts__contact-grid small,
.jobs-hunts__contact-grid strong { display: block; min-width: 0; overflow-wrap: anywhere; }
.jobs-hunts__contact-grid small { color: #7b8493; font-size: 0.63rem; }
.jobs-hunts__contact-grid strong { color: var(--navy); font-size: 0.7rem; line-height: 1.35; }
.jobs-hunts__address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0.82rem 0.9rem;
  background: #f5f7ff;
  border: 1px solid #dfe5f2;
  border-radius: 12px;
}
.jobs-hunts__address-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--grad-red);
  border-radius: 10px;
}
.jobs-hunts__address-icon svg { width: 18px; height: 18px; }
.jobs-hunts__address small,
.jobs-hunts__address strong { display: block; }
.jobs-hunts__address small { color: var(--blue); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.jobs-hunts__address strong { color: var(--navy); font-size: 0.78rem; line-height: 1.45; }
.jobs-hunts__feature {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(9,21,47,0.15);
}
.jobs-hunts__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,12,30,0.9), transparent 56%);
  pointer-events: none;
}
.jobs-hunts__feature img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
}
.jobs-hunts__feature:hover img { transform: scale(1.04); }
.jobs-hunts__feature figcaption {
  position: absolute;
  z-index: 1;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
}
.jobs-hunts__feature figcaption span {
  display: block;
  margin-bottom: 0.35rem;
  color: #ff8e93;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.jobs-hunts__feature figcaption strong {
  display: block;
  max-width: 380px;
  color: #fff;
  font: 700 clamp(1.05rem, 2vw, 1.35rem)/1.35 var(--font-display);
}
.jobs-hunts__showcase {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
}
.jobs-hunts__showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.jobs-hunts__showcase-head > div > span,
.jobs-hunts__media-head > span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.jobs-hunts__showcase-head h3,
.jobs-hunts__media-head h3 { font-size: clamp(1.35rem, 3vw, 2rem); }
.jobs-hunts__showcase-head small { color: #808998; font-size: 0.75rem; }
.jobs-hunts__scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #c8cfdf transparent;
  padding: 0.25rem 0 1rem;
}
.jobs-hunts__scroll figure {
  position: relative;
  flex: 0 0 clamp(260px, 26vw, 320px);
  height: 390px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #eef1f6;
  border: 5px solid #fff;
  border-radius: 18px;
  box-shadow: 0 15px 34px rgba(9,21,47,0.12);
}
.jobs-hunts__scroll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.jobs-hunts__scroll figure:hover img { transform: scale(1.055); }
.jobs-hunts__media {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding: clamp(1.4rem, 3.5vw, 2.4rem);
  background: linear-gradient(145deg, #f6f8fc, #fff);
  border: 1px solid #e2e7f0;
  border-radius: 24px;
}
.jobs-hunts__media-head { max-width: 650px; margin-bottom: 1.3rem; }
.jobs-hunts__media-head p { margin-top: 0.5rem; color: #707987; }
.jobs-hunts__videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.jobs-hunts__video-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe4ed;
  border-radius: 16px;
  box-shadow: 0 13px 32px rgba(9,21,47,0.1);
}
.jobs-hunts__video-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border-bottom: 1px solid #e6eaf1;
}
.jobs-hunts__video-card strong { color: var(--navy); font-size: 0.86rem; }
.jobs-hunts__video-card > div span {
  padding: 0.3rem 0.55rem;
  color: #137c40;
  background: #ecfbf2;
  border: 1px solid #c8efd7;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}
.jobs-hunts__video-card video {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 500px);
  object-fit: contain;
  background: #020611;
}

@media (max-width: 1050px) {
  .jobs-hunts__contact-grid { grid-template-columns: 1fr; }
  .jobs-hunts__feature img { min-height: 670px; }
}
@media (max-width: 900px) {
  .jobs-hunts__main { grid-template-columns: 1fr; }
  .jobs-hunts__feature img { min-height: 520px; max-height: 650px; }
  .jobs-hunts__videos { grid-template-columns: 1fr; }
  .jobs-hunts__video-card video { height: min(82vw, 560px); }
}
@media (max-width: 600px) {
  .jobs-hunts::before { background-size: 32px 32px; }
  .jobs-hunts__card { padding: 1.25rem; }
  .jobs-hunts__intro { align-items: flex-start; }
  .jobs-hunts__flag { width: 50px; height: 50px; font-size: 1.7rem; }
  .jobs-hunts__fields { grid-template-columns: 1fr; }
  .jobs-hunts__fields label:nth-child(3) { grid-column: auto; }
  .jobs-hunts__submit { width: 100%; }
  .jobs-hunts__feature img { min-height: 430px; }
  .jobs-hunts__showcase-head { align-items: flex-start; flex-direction: column; }
  .jobs-hunts__scroll figure { flex-basis: 82vw; height: 420px; }
  .jobs-hunts__media { padding: 1rem; }
  .jobs-hunts__video-card > div { align-items: flex-start; flex-direction: column; }
  .jobs-hunts__video-card video { height: min(115vw, 540px); }
}

/* ============ 15. KEYFRAMES ============ */
@keyframes kenburns {
  0% { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1.2%, -0.8%); }
}
@keyframes preloadPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
@keyframes preloadBar {
  0% { margin-left: -45%; }
  100% { margin-left: 100%; }
}
@keyframes pulseWa {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes waveMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ 16. REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .hero__bg img { animation: none; transform: scale(1); }
  .wa-float::before { animation: none; }
}

/* ============ 17. RESPONSIVE ============ */
@media (max-width: 1024px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .topbar__right { display: none; }
  .topbar { justify-content: center; }
  .topbar__inner { justify-content: center; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .split { grid-template-columns: 1fr; }
  .split--alt .split__media { order: 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 700px) {
  .process__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .hero__waves { opacity: 0.16; }
  .topbar__left { overflow-x: auto; scrollbar-width: none; }
  .topbar__left::-webkit-scrollbar { display: none; }
  .topbar { height: auto; }
  .wa-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .back-top { bottom: 18px; left: 18px; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero__trust { gap: 0.5rem 1rem; }
  .btn-row .btn { width: 100%; }
  .wa-tooltip { display: none; }
}
