/* ═══════════════════════════════════════════════════════════════
   ONE VISION — Complete Light Theme
   IBM Plex Sans Arabic + Fraunces · Bilingual · Responsive
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────── TOKENS ─────────────────── */
:root {
  /* Colors */
  --c-primary:       #004a87;
  --c-primary-light: #e6f1fb;
  --c-secondary:     #00b1ff;
  --c-tertiary:      #00cece;
  --c-bg:            #ffffff;
  --c-bg-warm:       #f8fafc;
  --c-bg-cool:       #f0f5fa;
  --c-text:          #152232;
  --c-text-muted:    #526070;
  --c-text-light:    #8da0b3;
  --c-border:        rgba(0,74,135,0.09);
  --c-white:         #ffffff;

  /* Basic Fonts */
  --f-body:    'Almarai', 'Montserrat', system-ui, sans-serif;
  --f-display: 'Almarai', 'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  clamp(4rem, 8vw, 7.5rem);

  /* Radius */
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-full: 100px;

  /* Navigation */
  --nav-h:    80px;
  --sidebar-w: 300px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px  rgba(0,0,0,0.04);
  --shadow-md: 0 10px 40px rgba(0,74,135,0.07);
  --shadow-lg: 0 30px 60px rgba(0,74,135,0.12);
}

/* Arabic Specific Typography Logic */
[lang="ar"] {
  --f-display: 'Almarai', sans-serif;
  --f-body:    'Almarai', sans-serif;
  letter-spacing: 0 !important;
}

/* ─────────────────── RESET ─────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 {
  font-family: var(--f-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--c-primary);
}
a  { color:inherit; text-decoration:none; }
ul { list-style:none; }
img{ max-width:100%; height:auto; display:block; }

.container { max-width:1280px; margin:0 auto; padding:0 5%; }
.section    { padding: var(--space-xl) 0; position:relative; }

/* ─────────────────── TYPOGRAPHY ─────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(0, 74, 135, 0.08);
  box-shadow: 0 4px 12px rgba(0, 74, 135, 0.05);
}
.section-tag--light { 
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-tertiary);
  border-color: rgba(255, 255, 255, 0.2);
}


.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: var(--space-sm);
  color: var(--c-primary);
}
.section-heading--light { color:var(--c-white); }
.section-sub   { font-size:1.05rem; color:var(--c-text-muted); max-width:540px; }
.section-header {
  text-align:center; display:flex; flex-direction:column;
  align-items:center; margin-bottom:1.5rem; max-width:800px; margin-left:auto; margin-right:auto;
}
[lang="ar"] .section-heading { line-height: 1.4; }

/* ─────────────────── BUTTONS ─────────────────── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:0.8rem 2rem; border-radius:var(--radius-full);
  font-weight:700; font-family:var(--f-body); font-size:0.95rem;
  cursor:pointer; border:1px solid transparent;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
[lang="ar"] .btn { font-weight: 800; padding: 0.7rem 2rem 0.9rem; }
.btn--primary {
  background:var(--c-primary); color:var(--c-white);
  box-shadow: 0 10px 25px rgba(0,74,135,0.15);
}
.btn--primary:hover {
  background:var(--c-secondary); transform:translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,177,255,0.25);
}
.btn--outline { background:transparent; color:var(--c-primary); border-color:var(--c-border); }
.btn--outline:hover { border-color:var(--c-primary); background:var(--c-primary-light); transform:translateY(-2px); }
.btn--white   { background:var(--c-white); color:var(--c-primary); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.btn--white:hover { background:var(--c-bg-warm); transform:translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.btn--full    { width:100%; }

/* ═══════════════════ SKIP LINK ═══════════════════ */
.skip-link {
  position:absolute; top:-100%; left:50%; transform:translateX(-50%);
  background:var(--c-primary); color:var(--c-white);
  padding:0.75rem 1.5rem; border-radius:0 0 var(--radius-sm) var(--radius-sm);
  font-weight:700; z-index:9999; transition:top 0.2s;
}
.skip-link:focus { top:0; }

/* ═══════════════════ LANGUAGE TOGGLE ═══════════════════ */
.lang-toggle {
  display:inline-flex; align-items:center; gap:4px;
  font-size:0.8rem; font-weight:700; font-family:var(--f-body);
  background:transparent; border:1.5px solid var(--c-border);
  border-radius:var(--radius-full); padding:0.35rem 0.85rem;
  cursor:pointer; color:var(--c-text); transition:all 0.3s;
}
.lang-toggle:hover { border-color:var(--c-primary); color:var(--c-primary); }
.lang-toggle__sep { opacity:0.35; }
[data-lang="ar"] .lang-toggle__ar { color:var(--c-primary); font-weight:800; }
[data-lang="en"] .lang-toggle__en { color:var(--c-primary); font-weight:800; }
[data-lang="en"] { direction: ltr; }

/* ═══════════════════ NAV ═══════════════════ */
.nav {
  position:fixed; top:0; left:0; width:100%; height:var(--nav-h); z-index:100;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); border-bottom:1px solid transparent;
}
.nav.is-scrolled {
  background:rgba(255,255,255,0.85); backdrop-filter:blur(25px);
  -webkit-backdrop-filter:blur(25px);
  box-shadow:0 10px 40px rgba(0,74,135,0.05); height:68px; border-bottom:1px solid rgba(255,255,255,0.6);
}
/* Grid layout: logo | links (centered) | actions */
.nav__container {
  max-width:1400px; margin:0 auto; padding:0 5%;
  height:100%;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:1rem;
}
.nav__logo-img { height: 60px; }
.nav__links {
  display:flex; gap:2rem; align-items:center;
  justify-content:center; /* truly centered in its column */
}
.nav__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color 0.25s;
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover { color: var(--c-primary); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
/* Active state — bolder so it reads clearly on the transparent hero */
.nav__link.is-active {
  color: var(--c-primary);
  font-weight: 700;
}
.nav__link.is-active::after { transform: scaleX(1); }

/* Nav actions — compact so the bar doesn't feel heavy */
.nav__actions { display: flex; align-items: center; gap: 0.6rem; }
.nav__cta   { padding: 0.45rem 1rem; font-size: 0.82rem; }
.nav__shop  {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  background: var(--c-bg-cool);
  color: var(--c-primary);
  border-color: transparent;
}
.nav__shop:hover { background: var(--c-primary-light); }

.nav__burger {
  display:none; background:transparent; border:none;
  width:26px; height:20px; position:relative; cursor:pointer; z-index:101;
}
.nav__burger span {
  position:absolute; width:100%; height:2px; background:var(--c-primary); left:0;
  transition:all 0.3s;
}
.nav__burger span:nth-child(1) { top:0; }
.nav__burger span:nth-child(2) { top:50%; transform:translateY(-50%); }
.nav__burger span:nth-child(3) { bottom:0; }
.nav__burger.is-active span:nth-child(1) { top:50%; transform:translateY(-50%) rotate(45deg); }
.nav__burger.is-active span:nth-child(2) { opacity:0; }
.nav__burger.is-active span:nth-child(3) { bottom:50%; transform:translateY(50%) rotate(-45deg); }

/* ═══════════ Transparent Nav State — over dark hero ═══════════ */
.nav--dark-hero:not(.is-scrolled) {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom-color: transparent !important;
}
.nav--dark-hero:not(.is-scrolled) .nav__logo-img {
  filter: brightness(0) invert(1);
}
.nav--dark-hero:not(.is-scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}
.nav--dark-hero:not(.is-scrolled) .nav__link:hover {
  color: #fff;
}
.nav--dark-hero:not(.is-scrolled) .nav__link.is-active {
  color: #fff;
  font-weight: 700;
}
.nav--dark-hero:not(.is-scrolled) .nav__link::after {
  background: #fff;
}
.nav--dark-hero:not(.is-scrolled) .lang-toggle {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.35);
}
.nav--dark-hero:not(.is-scrolled) .nav__burger span { background: var(--c-white); }
.nav--dark-hero:not(.is-scrolled) .btn--primary {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
}
.nav--dark-hero:not(.is-scrolled) .nav__shop {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.35);
}
.nav--dark-hero:not(.is-scrolled) .nav__shop:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Desktop: hide sidebar controls; Mobile: hide nav links & CTA ── */
@media (min-width:1025px) {
  .nav__burger      { display:none !important; }
  .sidebar          { display:none !important; }
  .sidebar-overlay  { display:none !important; }
}
@media (max-width:1024px) {
  .nav__links       { display:none; }
  .nav__cta         { display:none; }
  .nav__burger      { display:block; }
  /* On mobile, nav uses flex not grid */
  .nav__container   {
    display:flex; justify-content:space-between;
    grid-template-columns:none;
  }
}

/* ═══════════════════ SIDEBAR ═══════════════════ */
/* ─── Sidebar overlay ─── */
.sidebar-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,0.45); z-index:199;
  opacity:0; pointer-events:none; transition:opacity 0.35s;
}
.sidebar-overlay.is-active { opacity:1; pointer-events:auto; }

/* ─── Sidebar drawer (slides in from RIGHT in RTL) ─── */
.sidebar {
  position:fixed; top:0; right:0; height:100%;
  width:var(--sidebar-w); background:var(--c-white);
  z-index:200; display:flex; flex-direction:column;
  /* hidden: pushed 100% off screen to the right */
  transform:translateX(100%);
  transition:transform 0.42s var(--ease);
  box-shadow:-6px 0 40px rgba(0,0,0,0.14);
}
.sidebar.is-active { transform:translateX(0); }

/* LTR: sidebar comes from LEFT */
[data-lang="en"] .sidebar {
  right:auto; left:0;
  transform:translateX(-100%);
}
[data-lang="en"] .sidebar.is-active { transform:translateX(0); }

.sidebar__header {
  display:flex; justify-content:space-between; align-items:center;
  padding:1.5rem; border-bottom:1px solid var(--c-border);
}
.sidebar__logo { height:48px; }
.sidebar__close {
  background:transparent; border:none; font-size:1.3rem; cursor:pointer;
  color:var(--c-text-muted); width:36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; transition:all 0.2s;
}
.sidebar__close:hover { background:var(--c-bg-cool); color:var(--c-primary); }

.sidebar__nav {
  flex:1; padding:2rem 1.5rem; display:flex; flex-direction:column; gap:0.5rem;
}
.sidebar__link {
  font-size:1.15rem; font-weight:600; color:var(--c-text);
  padding:0.9rem 1rem; border-radius:var(--radius-sm);
  transition:all 0.25s; display:block;
}
.sidebar__link:hover { background:var(--c-primary-light); color:var(--c-primary); }

.sidebar__footer {
  padding:1.5rem; border-top:1px solid var(--c-border);
  display:flex; flex-direction:column; gap:1rem; align-items:flex-start;
}
.lang-toggle--sidebar { font-size:0.9rem; }
.sidebar__email { font-size:0.85rem; color:var(--c-text-muted); }

/* ═══════════════════ 01 · HERO ═══════════════════ */
.hero {
  min-height:100vh; display:flex; align-items:center;
  padding-top:var(--nav-h); position:relative; overflow:hidden;
  background:var(--c-bg);
}
.hero__shape {
  position:absolute; border-radius:50%; z-index:0; pointer-events:none;
}
.hero__shape--1 {
  width:550px; height:550px;
  background:radial-gradient(circle, rgba(0,177,255,0.06), transparent 70%);
  top:-10%; inset-inline-end:-8%;
  animation:shape-drift 18s ease-in-out infinite alternate;
}
.hero__shape--2 {
  width:380px; height:380px;
  background:radial-gradient(circle, rgba(0,206,206,0.05), transparent 70%);
  bottom:-5%; inset-inline-start:-5%;
  animation:shape-drift 22s ease-in-out infinite alternate-reverse;
}
@keyframes shape-drift {
  0%   { transform:translate(0,0) scale(1); }
  100% { transform:translate(25px,35px) scale(1.08); }
}

.hero__content {
  position:relative; z-index:1;
  width:100%; max-width:1300px; margin:0 auto; padding:0 5%;
  display:grid; grid-template-columns:1fr 1.15fr;
  align-items:center; gap:4rem;
}
@media (max-width: 992px) {
  .hero__content { grid-template-columns:1fr; text-align:center; gap:3rem; padding-top:4rem; }
  .hero__heading { font-size: 2.3rem !important; }
}

.hero__heading {
  font-size:clamp(2.5rem, 4.5vw, 4.3rem);
  line-height:1.35; letter-spacing:-1px;
  margin-bottom:1.5rem; color:var(--c-text);
}
.hero__heading-accent {
  display: inline-block;
  position: relative;
  color: var(--c-primary);
  font-weight: 800;
  padding: 0 0.2em;
}

.hero__heading-accent::after {
  content: '';
  position: absolute;
  bottom: 0.15em;
  left: 0;
  width: 100%;
  height: 0.3em;
  background: var(--c-secondary);
  opacity: 0.15;
  z-index: -1;
  border-radius: 1px;
}
.hero__subtext {
  font-size:clamp(1.1rem, 1.8vw, 1.25rem);
  color:var(--c-text-muted); margin-bottom:3rem; line-height:1.8;
}
.hero__actions {
  display:flex; gap:1.25rem; flex-wrap:wrap; margin-bottom:0;
}

/* Visual column */
.hero__visual {
  position:relative; overflow:hidden;
  aspect-ratio:4/3; 
}
.hero__visual::after {
  content:''; position:absolute; inset:0; border-radius:var(--radius-lg);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.3); pointer-events:none; z-index:2;
}
.hero__visual img {
  width:100%; height:100%; object-fit:cover; border-radius:var(--radius-lg);
  transition:transform 8s ease; box-shadow: 0 40px 80px rgba(0,74,135,0.18);
}
.hero__visual-badge {
  position:absolute; bottom:1.5rem; inset-inline-end:1.5rem; z-index:3;
  background:var(--c-white); border-radius:var(--radius-md);
  padding:0.7rem 1.1rem; box-shadow:var(--shadow-md);
  display:flex; align-items:center; gap:0.6rem;
  font-size:0.82rem; font-weight:700; color:var(--c-primary);
}
.hero__visual-badge-dot {
  width:9px; height:9px; border-radius:50%; background:var(--c-tertiary);
  box-shadow:0 0 0 4px rgba(0,206,206,0.2);
  animation:pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.6; transform:scale(1.3); }
}

.hero__scroll {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:0.7rem;
  color:var(--c-text-light); font-size:0.72rem; letter-spacing:1.5px; text-transform:uppercase;
  animation:hero-bounce 2.5s infinite;
}
.hero__scroll-bar { width:1px; height:32px; background:linear-gradient(to bottom, var(--c-text-light), transparent); }
@keyframes hero-bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(-7px); }
}

@media (max-width:1024px) {
  .hero__content { grid-template-columns:1fr; gap:2.5rem; }
  .hero__visual  { aspect-ratio:16/9; max-height:420px; }
  .hero__heading { text-align:center; }
  .hero__subtext { text-align:center; }
  .hero__actions { justify-content:center; }
}
@media (max-width:640px) {
  .hero__heading { letter-spacing:-0.5px; }
  .hero__actions { flex-direction:column; }
  .hero__actions .btn { width:100%; }
}

/* ═══════════════════ 02 · PARTNERS ═══════════════════ */
.partners {
  padding:3rem 0;
  background:var(--c-bg-warm);
  border-top:1px solid var(--c-border);
  border-bottom:1px solid var(--c-border);
}
.partners__title {
  text-align:center; font-size:0.77rem; text-transform:uppercase;
  letter-spacing:3px; color:var(--c-text-light); font-weight:700; margin-bottom:2rem;
}
.partners__track {
  display:flex; justify-content:center; flex-wrap:wrap; gap:1.25rem;
}
.partner-item {
  display:flex; flex-direction:column; align-items:center; gap:0.5rem;
  padding:1rem 1.5rem; border:1px solid var(--c-border); border-radius:var(--radius-sm);
  background:var(--c-white); min-width:130px; cursor:default;
  transition:all 0.35s var(--ease);
}
.partner-item:hover { border-color:var(--c-secondary); transform:translateY(-4px); box-shadow:var(--shadow-md); }
.partner-item__icon { width:64px; height:40px; color:var(--c-primary); }
.partner-item span  { font-size:0.72rem; color:var(--c-text-muted); font-weight:600; white-space:nowrap; }

/* ═══════════════════ 03 · TICKER ═══════════════════ */
.ticker {
  padding: 1rem 0;
  background: var(--c-primary);
  overflow: hidden;
  direction: ltr;
}
/* ticker__track is the moving element, styled like mq-inner */
.ticker__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: mq-ltr 30s linear infinite;
}
.ticker__inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker__inner span {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-white);
  padding: 0 1.25rem;
  direction: rtl;
  unicode-bidi: isolate;
  white-space: nowrap;
}
.ticker__dot {
  color: var(--c-tertiary) !important;
  font-size: 0.55rem !important;
  padding: 0 0.25rem !important;
  vertical-align: middle;
}

/* ═══════════════════ 04 · ABOUT ═══════════════════ */
.about { background:var(--c-bg); }
.about__grid { display:grid; grid-template-columns:1fr 1.15fr; gap:3.5rem; align-items:center; }
.about__img-stack { position:relative; padding-bottom:1rem; display:flex; justify-content:center; }
.about__img-main {
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg);
  position:relative; width:100%;
}
.about__img-main img { aspect-ratio:4/5; object-fit:cover; width:100%; }
.about__badge {
  position:absolute; bottom:2rem; inset-inline-end:2rem;
  background:var(--c-primary); color:var(--c-white);
  width:90px; height:90px; border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow:var(--shadow-lg); border:4px solid var(--c-white); pointer-events:none;
}
.about__badge-year  { font-family:var(--f-display); font-size:1.4rem; font-weight:700; line-height:1; margin-bottom:2px; }
.about__badge-label { font-size:0.65rem; text-transform:uppercase; letter-spacing:0.5px; opacity:0.9; }
.about .section-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.about__body { font-size: 0.94rem; color:var(--c-text-muted); line-height: 1.6; }
.about__body p { margin-bottom: 0.85rem; }
.about__body p:last-child { margin-bottom: 0; }
.about__body strong { color:var(--c-primary); }
.about__pillars { margin:2rem 0; display:grid; gap:1.25rem; }
.about__pillar {
  display:flex; align-items:flex-start; gap:1.25rem;
  background:var(--c-bg-warm); padding:1.25rem; border-radius:var(--radius-md);
  border:1px solid var(--c-border); transition:all 0.3s;
}
.about__pillar:hover { background:var(--c-white); box-shadow:var(--shadow-sm); border-color:var(--c-primary-light); }
.about__pillar-icon { color:var(--c-secondary); font-size:1.4rem; line-height:1; margin-top:3px; }
.about__pillar strong { display:block; color:var(--c-primary); margin-bottom:2px; font-size:1.05rem; }
.about__pillar p { color:var(--c-text-muted); font-size:0.9rem; }
@media (max-width:992px) {
  .about__grid { grid-template-columns:1fr; gap:2.5rem; }
}

/* ═══════════════════ 04 · WHY PARTNER ══════════════════════════ */
.why-partner { background: var(--c-bg); }
.why-partner__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--c-white);
  padding: 2rem 1.25rem;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,74,135,0.03);
  transition: all 0.4s var(--ease);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,74,135,0.08);
  border-color: var(--c-primary);
}
.why-card__icon {
  width: 64px;
  height: 64px;
  background: var(--c-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--c-primary);
  transition: all 0.4s var(--ease);
}
.why-card:hover .why-card__icon {
  background: var(--c-primary);
  color: var(--c-white);
  transform: scale(1.1);
}
.why-card__title {
  font-size: 1rem;
  color: var(--c-text);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.why-card__body {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .why-partner__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-partner__grid { grid-template-columns: 1fr; }
}

.why-partner__signature {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--c-primary);
  position: relative;
  display: inline-block;
  padding: 0 1rem;
}

.why-partner__signature::before,
.why-partner__signature::after {
  content: '';
  position: absolute;
  top: 50%;
  width: clamp(30px, 8vw, 80px);
  height: 2px;
  background: var(--c-secondary);
  opacity: 0.2;
}

[dir="rtl"] .why-partner__signature::before { right: 100%; margin-right: 2rem; }
[dir="rtl"] .why-partner__signature::after  { left: 100%; margin-left: 2rem; }

[dir="ltr"] .why-partner__signature::before { left: 100%; margin-left: 2rem; }
[dir="ltr"] .why-partner__signature::after  { right: 100%; margin-right: 2rem; }

@media (max-width: 768px) {
  .why-partner__signature::before,
  .why-partner__signature::after { display: none; }
}

/* ═══════════════════ 04 · SOLUTIONS ═══════════════════ */
.categories { background: var(--c-bg-cool); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3.5rem auto 0;
}
.category-card {
  background: var(--c-white);
  padding: 3.5rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,74,135,0.03);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,74,135,0.08);
  border-color: var(--c-primary-light);
}
.category-card__icon {
  width: 72px;
  height: 72px;
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: all 0.4s var(--ease);
}
.category-card:hover .category-card__icon {
  background: var(--c-primary);
  color: var(--c-white);
  transform: scale(1.1) rotate(5deg);
}
.category-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 992px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 600px) {
  .categories-grid { grid-template-columns: 1fr; }
}

/* Commitment Section - Integrated Card */
.commitment-wrap {
  margin-top: 3rem;
  text-align: center;
}

.commitment-card {
  background: var(--c-primary);
  color: var(--c-white);
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 177, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.commitment-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--c-secondary);
}

.commitment-title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--c-white) !important;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.commitment-text {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════ 05 · ADVANTAGE ══════════════════════════ */
.advantage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.advantage-card {
  background: var(--c-white);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,74,135,0.03);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,74,135,0.08);
  border-color: var(--c-primary);
}
.advantage-card__num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}
.advantage-card__title {
  font-size: 1rem;
  color: var(--c-text);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.advantage-card__body {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
@media (max-width: 992px) {
  .advantage__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .advantage__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════ MARKET PRESENCE (ENHANCED) ═══════════════════ */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 1200px) {
  .presence-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.presence-card {
  background: var(--c-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 10px 30px rgba(0,74,135,0.02);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

@media (min-width: 1200px) {
  .presence-card {
    padding: 4rem 2.5rem;
  }
}

.presence-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(0,186,188,0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.presence-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,74,135,0.12);
  border-color: var(--c-secondary);
}
.presence-card:hover::before {
  opacity: 1;
}
.presence-card__icon {
  width: 64px;
  height: 64px;
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: all 0.5s var(--ease);
  position: relative;
  z-index: 1;
}
.presence-card:hover .presence-card__icon {
  background: var(--c-primary);
  color: var(--c-white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(0,74,135,0.2);
}
.presence-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}
.presence-card__body {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ── Decorative icons in solutions ── */
.decorative-icon {
  opacity: 0.3;
  transition: all 0.6s var(--ease);
  filter: grayscale(1);
}
.decorative-icon:hover {
  opacity: 1;
  transform: scale(1.2) translateY(-8px);
  color: var(--c-secondary);
  filter: grayscale(0);
}

@media (max-width: 1100px) {
  .presence-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}
@media (max-width: 600px) {
  .presence-grid { grid-template-columns: 1fr; }
}



/* ═══════════════════ 07 · VALUES ═══════════════════ */
.values {
  padding: 8rem 0;
  position: relative;
  background: #001f3d;
  color: var(--c-white);
}
.values__bg-img { 
  position: absolute; inset: 0; z-index: 0; opacity: 0.6; 
  overflow: hidden; 
}
.values__bg-img img { 
  width: 100%; height: 100%; object-fit: cover; 
}
.values__bg-overlay { 
  position: absolute; inset: 0; z-index: 1; 
  background: linear-gradient(135deg, rgba(0,20,40,0.92) 0%, rgba(0,45,85,0.85) 100%); 
}
.values .container  { position: relative; z-index: 2; }

.values__grid {
  display: flex;
  flex-direction: column;
  gap: 15vh;
  margin-top: 5rem;
  padding-bottom: 25vh; /* So the last card can scroll up */
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.value-card {
  position: sticky;
  display: grid;
  grid-template-columns: minmax(auto, 150px) 1fr;
  align-items: center;
  gap: 1.5rem 4rem;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.3); /* Catch the light as it scrolls */
  padding: 4rem 5rem; 
  border-radius: var(--radius-lg); 
  box-shadow: 0 -20px 40px rgba(0,0,0,0.3); /* Upwards shadow to cast on the card below */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s;
}

/* Stagger sticky positions to stack perfectly */
.value-card:nth-child(1) { top: 15vh; z-index: 10; }
.value-card:nth-child(2) { top: calc(15vh + 30px); z-index: 11; }
.value-card:nth-child(3) { top: calc(15vh + 60px); z-index: 12; }
.value-card:nth-child(4) { top: calc(15vh + 90px); z-index: 13; }
.value-card:nth-child(5) { top: calc(15vh + 120px); z-index: 14; }

.value-card:hover {
  background: rgba(255,255,255,0.06);
}

.value-card__num { 
  grid-row: 1 / span 2;
  grid-column: 1;
  font-family: var(--f-display); 
  font-size: 8rem; 
  font-weight: 800;
  color: transparent; 
  -webkit-text-stroke: 2px rgba(255,255,255,0.25);
  line-height: 1;
  text-align: center;
  margin: 0;
}
.value-card__title { 
  grid-row: 1; 
  grid-column: 2; 
  align-self: end;
  font-size: 1.75rem; 
  margin: 0; 
  color: var(--c-white); 
  font-weight: 700; 
  letter-spacing: 0.5px;
}
.value-card__body { 
  grid-row: 2; 
  grid-column: 2; 
  align-self: start;
  font-size: 1.1rem; 
  color: rgba(255,255,255,0.8); 
  line-height: 1.8; 
  margin: 0;
}

@media (max-width: 992px) { 
  .values__grid { gap: 10vh; padding-bottom: 20vh; max-width: 800px; }
  .value-card { padding: 3rem; gap: 1rem 2rem; }
  .value-card__num { font-size: 6rem; }
  .value-card__title { font-size: 1.4rem; }
}

@media (max-width: 560px) { 
  .values__grid { gap: 8vh; padding-bottom: 15vh; }
  .value-card { 
    grid-template-columns: 1fr;
    padding: 2.5rem; 
    top: 10vh;
  }
  .value-card:nth-child(1) { top: 10vh; }
  .value-card:nth-child(2) { top: calc(10vh + 20px); }
  .value-card:nth-child(3) { top: calc(10vh + 40px); }
  .value-card:nth-child(4) { top: calc(10vh + 60px); }
  .value-card:nth-child(5) { top: calc(10vh + 80px); }
  
  .value-card__num {
    grid-row: 1; grid-column: 1;
    font-size: 5rem;
    text-align: right;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
    margin-bottom: 0.5rem;
  }
  .value-card__title {
    grid-row: 2; grid-column: 1; align-self: start;
    font-size: 1.3rem; 
    margin-bottom: 0.75rem;
  }
  .value-card__body {
    grid-row: 3; grid-column: 1; align-self: start;
    font-size: 1rem;
  }
}


/* ═══════════════════ 08 · BRANDS & CLIENTS ═══════════════════ */
.brands-clients {
  padding: 5rem 0 7rem;
  background: var(--c-bg);
  background: radial-gradient(circle at 0% 0%, rgba(0,177,255,0.03) 0%, transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(0,74,135,0.02) 0%, transparent 50%);
  overflow: hidden;
  border-top: 1px solid rgba(0,74,135,0.03);
  border-bottom: 1px solid rgba(0,74,135,0.03);
  position: relative;
}
.brands-clients::before {
  content: ''; position: absolute; top: 0; left: 10%; width: 80%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,74,135,0.1), transparent);
}

/* ── Marquee Row ── */
.mq-row { padding: 2.5rem 0 0; }
.mq-header { padding-bottom: 2rem; text-align: center; }

/* ── Clipping viewport — LTR so scroll origin is left edge ── */
.mq-wrap {
  overflow: hidden;
  width: 100%;
  direction: ltr;         /* critical: prevents RTL start-from-right */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* ── Inner strip — contains base + exact duplicate ── */
.mq-inner {
  display: inline-flex;   /* inline-flex so width is content-driven */
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  /* CSS animation — JS overrides animationDelay for clock-sync & drag resume */
  animation: mq-ltr 50s linear infinite;
}

[data-dir="rev"] .mq-inner {
  animation: mq-rtl 40s linear infinite;
}

@keyframes mq-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes mq-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── Logo items ── */
.mq-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 260px;
  padding: 0 2.5rem;
  border: none;
  background: transparent;
}
.mq-logo img {
  height: 140px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: grayscale(10%) opacity(90%);
  transition: all 0.3s ease;
  transform: scale(1.15);
}
.mq-logo:hover img {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.25);
}

/* ── Placeholder (text-only brand slots) ── */
.mq-logo--ph {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: rgba(0,74,135,0.3);
  text-transform: uppercase;
}
.mq-logo--ph:hover { color: rgba(0,74,135,0.55); }


.brands-clients .section-header { text-align: center; margin-bottom: 3.5rem; }
.bc-section { margin-bottom: 4rem; text-align: center; }
.bc-section:last-child { margin-bottom: 0; }
.bc-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-primary);
  opacity: 0.5;
  display: block;
  margin-bottom: 0;
  position: relative;
}
/* Remove the underline bar when inside a marquee row */
.marquee-row__header .bc-title::after { display: none; }

.clients__grid {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.client-logo {
  display: flex; align-items: center; justify-content: center;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); width: calc(16.666% - 1.5rem); min-width: 130px; height: 100px; padding: 1.25rem;
  transition: all 0.4s var(--ease);
  filter: grayscale(100%) opacity(40%);
}
.client-logo:hover {
  filter: grayscale(0%) opacity(100%);
  border-color: var(--c-secondary);
  transform: translateY(-5px); box-shadow: var(--shadow-md);
}
.client-logo img { 
  height: 60px;
  width: auto;
  max-width: 100%; 
  object-fit: contain; 
}

.client-logo--placeholder {
  opacity: 1;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(0, 74, 135, 0.03);
  filter: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: rgba(0, 74, 135, 0.3);
  text-transform: uppercase;
}
.client-logo--placeholder:hover {
  filter: none;
  opacity: 1;
  background: rgba(0, 74, 135, 0.06);
  color: rgba(0, 74, 135, 0.5);
  border-color: rgba(0, 74, 135, 0.15);
}

/* Static grid responsive sizes (only for index.html's .clients__grid children) */
@media (max-width: 900px) {
  .clients__grid .client-logo { width: calc(33.333% - 1.5rem); }
}
@media (max-width: 480px) {
  .clients__grid .client-logo { width: calc(50% - 1.5rem); }
}
/* Marquee logos are always the same fixed size */
.marquee-inner .client-logo {
  width: 160px !important;
  min-width: 160px !important;
  height: 90px !important;
}


/* ═══════════════════ 09 · CONTACT ═══════════════════ */
.contact { background:var(--c-bg-warm); position:relative; overflow:hidden; }
.contact::before {
  content:''; position:absolute; top:-10%; right:-10%; width:600px; height:600px;
  background:radial-gradient(circle, rgba(0,177,255,0.04), transparent 70%);
  z-index:0; pointer-events:none;
}
.contact::after {
  content:''; position:absolute; bottom:-10%; left:-10%; width:500px; height:500px;
  background:radial-gradient(circle, rgba(0,206,206,0.05), transparent 70%);
  z-index:0; pointer-events:none;
}
.contact .container { position:relative; z-index:1; }
.contact__grid {
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  background:var(--c-white); border:1px solid rgba(0,74,135,0.06);
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 30px 80px rgba(0,74,135,0.08);
  margin-bottom:3rem;
  align-items: stretch;
}
@media (max-width: 992px) {
  .contact__grid { grid-template-columns: 1fr; }
}
.contact__info { padding:4rem; background:linear-gradient(135deg, var(--c-primary) 0%, #00305a 100%); color:var(--c-white); position:relative; }
@media (max-width: 992px) { .contact__info { padding: 3rem 2rem; } }
.contact__info::before {
  content:''; position:absolute; inset:0; opacity:0.1;
  background-image:radial-gradient(circle at 100% 100%, var(--c-white) 0%, transparent 50%);
}
.contact__info .section-heading { color:var(--c-white); font-size:clamp(1.8rem, 3vw, 2.6rem); margin-bottom:1.5rem; position:relative; z-index:2; }
.contact__body  { color:rgba(255,255,255,0.85); font-size:1.05rem; margin-bottom:3rem; line-height:1.8; position:relative; z-index:2; }
.contact__details { display:flex; flex-direction:column; gap:2rem; position:relative; z-index:2; }
.contact__detail  { display:flex; align-items:flex-start; gap:1.25rem; }
.contact__detail-icon {
  width:44px; height:44px; background:rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius:12px;
  display:flex; align-items:center; justify-content:center; color:#5ed2ff; flex-shrink:0;
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
}
.contact__detail strong { display:block; color:var(--c-white); margin-bottom:4px; font-size:0.95rem; }
.contact__detail a, .contact__detail span { color:rgba(255,255,255,0.7); font-size:0.9rem; transition:color 0.25s; }
.contact__detail a:hover { color:var(--c-white); }
.contact__form-wrap { padding:4rem; background:var(--c-white); display:flex; align-items:center; }
@media (max-width: 992px) { .contact__form-wrap { padding: 3rem 2rem; } }
.contact__form { display:flex; flex-direction:column; gap:1.5rem; width:100%; }
.form-group   { display:flex; flex-direction:column; gap:0.5rem; }
.form-label   { font-size:0.88rem; color:var(--c-text); font-weight:700; }
.form-input {
  background:var(--c-bg-warm); border:1px solid transparent;
  padding:1rem 1.25rem; border-radius:var(--radius-sm);
  color:var(--c-text); font-family:var(--f-body); font-size:0.95rem;
  transition:all 0.3s var(--ease);
  width:100%; box-shadow:inset 0 2px 4px rgba(0,0,0,0.01);
}
.form-input:focus { outline:none; border-color:var(--c-secondary); background:var(--c-white); box-shadow:inset 0 0 0 1px var(--c-secondary), 0 5px 15px rgba(0,177,255,0.08); }
.form-input::placeholder { color:var(--c-text-light); }
.form-select {
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300b1ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat:no-repeat; 
  background-position:left 1.25rem center; 
  background-size:1em;
  padding-left: 3rem;
  padding-right: 3rem;
  text-align: center;
  text-align-last: center;
}
[dir="rtl"] .form-select { 
  background-position:right 1.25rem center; 
}
.form-textarea { resize:vertical; min-height:130px; }
.contact__status { font-size:0.85rem; text-align:center; min-height:20px; font-weight:600; margin-top:0.5rem; }
.form-hint { font-size: 0.75rem; color: var(--c-text-light); margin-top: -0.25rem; }
[lang="ar"] .form-hint { font-size: 0.82rem; }

.form-group-container {
  animation: form-fade-in 0.4s var(--ease) forwards;
}

@keyframes form-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width:900px) {
  .contact__grid { grid-template-columns:1fr; }
  .contact__info, .contact__form-wrap { padding:2.5rem; }
}



/* ═══════════════════ FOOTER ═══════════════════ */
.footer { 
  background: var(--c-primary);
  background: linear-gradient(135deg, #004a87 0%, #003159 100%);
  color: var(--c-white); 
  padding: 5rem 0 2rem; 
  position: relative;
  overflow: hidden;
}

.footer::before {
  content:''; position:absolute; top:0; left:0; width:100%; height:4px;
  background: linear-gradient(to right, var(--c-secondary), var(--c-tertiary));
}

.footer__top { margin-bottom:3rem; }
.footer__logo { 
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.footer__logo img { height: 90px; filter: brightness(0) invert(1); width: fit-content; }
.footer__logo span { font-size: 1.25rem; font-weight: 800; color: var(--c-white); }

.footer__tagline { font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; font-size: 1rem; line-height: 1.6; max-width: 400px; }
.footer__legals { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.footer__nav { display:grid; grid-template-columns:repeat(3, 1fr); gap:1.5rem; }
.footer__nav-col { display:flex; flex-direction:column; gap:0.65rem; align-items: flex-start; }
.footer__nav-col strong { 
  color: var(--c-white); 
  font-size: 0.95rem; 
  margin-bottom: 1rem; 
  text-transform: uppercase; 
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.footer__nav-col a { 
  color: var(--c-white); 
  font-size: 0.95rem; 
  font-weight: 500;
  transition: all 0.3s var(--ease); 
  opacity: 0.85;
}
.footer__nav-col a:hover { 
  color: var(--c-secondary); 
  transform: translateX(5px); 
  opacity: 1;
}

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
}

.bottom-certs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 0 0.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  direction: ltr;
  text-align: left;
}
.bottom-certs .bc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width:768px) {
  .footer__top { grid-template-columns:1fr; }
  .footer__nav { grid-template-columns:1fr 1fr; }
  .footer__bottom { flex-direction:column; gap:0.5rem; text-align:center; }
  .bottom-certs { flex-direction: column; gap: 1rem; align-items: flex-start; padding-inline-start: 0; }
}

/* ═══════════════════ BACK TO TOP ═══════════════════ */
.back-top {
  position:fixed; bottom:2rem; inset-inline-end:2rem;
  width:46px; height:46px; background:var(--c-primary); color:var(--c-white);
  border:none; border-radius:50%; font-size:1.2rem;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; opacity:0; pointer-events:none; transform:translateY(15px);
  transition:all 0.35s var(--ease); z-index:90; box-shadow:var(--shadow-md);
}
.back-top.is-visible { opacity:1; pointer-events:auto; transform:translateY(0); }
.back-top:hover { background:var(--c-secondary); transform:translateY(-3px); }

/* ═══════════════════ FLOATING WHATSAPP ═══════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  inset-inline-start: 2rem;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  z-index: 90;
  transition: all 0.3s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(37,211,102,0.5);
  background-color: #128c7e;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Move whatsapp up if back-to-top is also present (they are on opposite sides, so no collision usually, but just in case) */
[data-lang="en"] .whatsapp-float {
  inset-inline-start: auto;
  inset-inline-end: 2rem;
}
[data-lang="en"] .back-top {
  inset-inline-start: 2rem;
  inset-inline-end: auto;
}

/* ═══════════════════ ANIMATE ═══════════════════ */
.reveal-up, .reveal-left, .reveal-right, [data-reveal] {
  opacity:0; will-change:transform, opacity;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-up, [data-reveal] { transform:translateY(28px); }
.reveal-left  { transform:translateX(32px); }
.reveal-right { transform:translateX(-32px); }

.reveal-up.is-revealed, .reveal-left.is-revealed, .reveal-right.is-revealed,
[data-reveal].is-revealed { opacity:1; transform:translate(0); }

/* ═══════════════════ LTR OVERRIDES ═══════════════════ */
[data-lang="en"] .section-tag::before { margin-right:0; margin-left:10px; }
[data-lang="en"] .nav__link::after    { transform-origin:left; }
[data-lang="en"] .sidebar            { inset-inline-end:auto; inset-inline-start:0; }

/* ═══════════════════ HERO BANNER VARIANT ═══════════════════ */
.hero--banner {
  height: 100vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 !important;
  color: var(--c-white);
  background: #000;
  position: relative;
  overflow: hidden;
}

.hero--banner .container {
  max-width: 1000px;
  position: relative;
  z-index: 5;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
}

.hero--banner .hero__content {
  display: block;
  grid-template-columns: none;
  text-align: center;
  width: 100%;
}

.hero__text--center {
  margin: 0 auto;
}

.hero__heading--light {
  color: var(--c-white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  font-size: clamp(2.5rem, 5vw, 3.8rem); 
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.hero__subheading {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero__subtext--light {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.7;
}

.hero__value-line {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  color: #5ed2ff;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.hero--banner .hero__actions {
  justify-content: center;
}

.hero--banner .btn--white.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--c-white);
}

.hero--banner .btn--white.btn--outline:hover {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-white);
}

.hero--banner .hero__heading-accent {
  color: #5ed2ff; 
  text-shadow: 0 0 20px rgba(94, 210, 255, 0.4);
}

.hero--banner .hero__heading-accent::after {
  background: #5ed2ff;
  opacity: 0.2;
  height: 0.35em;
}

/* Ensure navbar visibility on banner hero */
.hero--banner + .ticker {
  position: relative;
  z-index: 10;
}

/* ═══════════════════ FOOTER CERTIFICATES (VAT + SFDA) ══════════════════════════ */
.footer__brand { 
  grid-area: brand;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.footer__nav   { grid-area: nav; }

[dir="ltr"] .footer__top { 
  display:grid; 
  grid-template-columns: 1.5fr 2fr; 
  grid-template-areas: "brand nav";
  gap:3.5rem; margin-bottom:3rem; 
}
[dir="rtl"] .footer__top { 
  display:grid; 
  grid-template-columns: 1.5fr 2fr; 
  grid-template-areas: "brand nav";
  gap:3.5rem; margin-bottom:3rem; 
}

@media (max-width: 1024px) {
  [dir="ltr"] .footer__top, [dir="rtl"] .footer__top {
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "nav";
    gap: 2.5rem;
  }
}

.footer__certs-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: fit-content;
}


.fc-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.4s var(--ease);
  direction: ltr !important;
  text-align: left;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.fc-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  border-color: var(--c-secondary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.fc-vat-badge {
  display: flex;
  flex-direction: column;
  width: 48px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.fc-vat-top {
  background: #015a3a;
  color: #fff;
  font-size: 0.4rem;
  font-weight: 800;
  text-align: center;
  padding: 2px 0;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.fc-vat-bottom {
  background: #cea230;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  padding: 2px 0;
  position: relative;
  letter-spacing: 1px;
}

.fc-vat-check {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #015a3a;
}

.fc-vat-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}
.fc-vat-text strong {
  color: var(--c-secondary);
  margin-inline-end: 0.25rem;
}

.fc-sfda-text {
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.fc-sfda-text strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.fc-sfda-text span {
  font-size: 0.75rem;
  opacity: 0.75;
}


/* ═══════════════════ MARKET PRESENCE (PREMIUM LUXURY VARIANT) ══════════════════════════ */
.presence-premium {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 5rem 0; /* Reduced from 8rem for better mobile feel */
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .presence-premium {
    padding: 8rem 0;
  }
}

.presence-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.pp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem; /* Reduced gap for mobile */
}

@media (min-width: 1024px) {
  .pp-container {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Left side content */
.pp-header {
  flex: 0 0 auto;
  position: relative; /* Default to relative on mobile */
}

@media (min-width: 1024px) {
  .pp-header {
    flex: 0 0 35%;
    position: sticky;
    top: 120px;
  }
}

.pp-tag {
  display: inline-block;
  color: var(--c-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--c-secondary);
}

.pp-title {
  font-size: 2.2rem; /* Slightly smaller on mobile */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--c-white);
}

@media (min-width: 768px) {
  .pp-title { font-size: 3rem; }
}

.pp-desc {
  font-size: 1rem; /* Better for mobile */
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .pp-desc {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

/* Right side grid */
.pp-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .pp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pp-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem; /* Reduced padding on mobile */
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pp-card {
    padding: 2.5rem;
  }
}

.pp-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pp-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-secondary);
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pp-card:hover .pp-icon-wrapper {
  background: var(--c-secondary);
  color: var(--c-primary);
  transform: scale(1.1) rotate(-5deg);
}

.pp-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--c-white);
}

.pp-card-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════ CAREERS SECTION ══════════════════════════ */
.careers {
  background: var(--c-bg-cool);
  padding: 6rem 0;
  text-align: center;
}

.careers-content {
  max-width: 800px;
  margin: 0 auto;
}

.careers-content .section-tag {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.careers-content .section-heading {
  margin-bottom: 2.5rem;
}

.careers-desc {
  font-size: 1.15rem;
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.careers-cta {
  margin-top: 3rem;
  display: inline-flex;
}

/* ═══════════════════ DISTRIBUTORS SECTION ══════════════════════════ */
.distributors {
  background: var(--c-white);
  padding: 6rem 0;
}

.dist-container {
  max-width: 900px;
  margin: 0 auto;
}

.dist-header {
  text-align: center;
  margin-bottom: 4rem;
}

.dist-header .section-tag {
  justify-content: center;
  margin-bottom: 1rem;
}

.dist-desc {
  font-size: 1.25rem;
  color: var(--c-text);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

.dist-form {
  background: var(--c-bg-cool);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.dist-form-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.75rem !important;
}

.form-group--full {
  grid-column: 1 / -1;
}

.dist-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}

.dist-form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  background: var(--c-white);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.dist-form-input:focus {
  outline: none;
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 4px rgba(206, 162, 48, 0.1);
}

.dist-form-submit {
  width: 100%;
  margin-top: 2rem;
  justify-content: center;
}

.file-input-wrapper {
  position: relative;
  display: block;
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-input-custom {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px dashed rgba(0,0,0,0.2);
  border-radius: 10px;
  background: rgba(0,0,0,0.02);
  color: var(--c-text-light);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.file-input-wrapper:hover .file-input-custom {
  background: rgba(206, 162, 48, 0.05);
  border-color: var(--c-secondary);
}

/* ═══════════════════ MARKET ENTRY SECTION ══════════════════════════ */
.market-entry {
  background: var(--c-bg-cool);
  padding: 8rem 0;
}

.me-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.me-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  text-align: center;
}

.me-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.me-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
}

.me-list li::before {
  content: '✓';
  color: #5ed2ff;
  font-weight: 800;
}

.me-form-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--c-primary);
}
