/* ============================================================
   SAHEEL GROUP — MAIN STYLESHEET
   Color Palette:
     --primary:   #114542  (deep teal)
     --accent:    #DDBFA7  (warm beige)
     --crimson:   #550000  (deep red)
     --light:     #EDEDED  (light gray)
============================================================ */

/* ── RESET & VARIABLES ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #114542;
  --accent:    #DDBFA7;
  --crimson:   #550000;
  --light:     #EDEDED;
  --dark:      #090e0e;
  --white:     #ffffff;
  --text-dark: #1a2020;
  --text-mid:  #4a5c5a;
  --text-light:#d4d4d4;
  --font-ar:   'Cairo', sans-serif;
  --font-en:   'Outfit', sans-serif;
  --header-h:  76px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ar);
  background: var(--light);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body,
html[lang="en"] * {
  font-family: var(--font-en);
}

img, video, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── OVERLAY NAV ─────────────────────────────────────────── */
.overlay-nav {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-out);
  overflow: hidden;
}
.overlay-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(221,191,167,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.overlay-nav.open { transform: translateY(0); }

.close-nav {
  position: absolute;
  top: 28px;
  left: 32px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid rgba(221,191,167,0.4);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
html[lang="ar"] .close-nav { left: auto; right: 32px; }
.close-nav:hover { background: rgba(221,191,167,0.15); border-color: var(--accent); }
.close-nav span {
  position: absolute;
  width: 18px; height: 1.5px;
  background: var(--accent);
}
.close-nav span:first-child { transform: rotate(45deg); }
.close-nav span:last-child  { transform: rotate(-45deg); }

.overlay-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.overlay-nav-links .nav-link {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: rgba(237,237,237,0.5);
  transition: color 0.3s, transform 0.3s;
  letter-spacing: -0.02em;
}
.overlay-nav-links .nav-link:hover {
  color: var(--accent);
  transform: translateX(-8px);
}
html[lang="en"] .overlay-nav-links .nav-link:hover { transform: translateX(8px); }

.overlay-bottom {
  position: absolute;
  bottom: 32px;
  font-size: 0.85rem;
  color: rgba(237,237,237,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--light);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(17,69,66,0.12);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(17,69,66,0.1);
}

.hamburger-btn {
  position: absolute;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  justify-content: center;
}
html[lang="ar"] .hamburger-btn { left: auto; right: 24px; }
.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger-btn:hover span { background: var(--crimson); }

.header-logo-link { display: flex; align-items: center; }
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}

.lang-toggle {
  position: absolute;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}
html[lang="ar"] .lang-toggle { right: auto; left: 24px; }

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
  font-family: var(--font-ar);
}
.lang-btn.active {
  color: var(--primary);
  background: rgba(17,69,66,0.08);
}
.lang-btn:hover { color: var(--primary); }
.lang-divider { color: rgba(17,69,66,0.3); font-size: 0.7rem; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--primary);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9,14,14,0.82) 0%,
    rgba(17,69,66,0.65) 50%,
    rgba(85,0,0,0.45) 100%
  );
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(221,191,167,0.5);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.25em;
}
.title-word {
  opacity: 0;
  transform: translateY(40px);
}
.title-word:nth-child(1) { animation: heroReveal 0.9s var(--ease-out) 0.5s forwards; }
.title-word:nth-child(2) { animation: heroReveal 0.9s var(--ease-out) 0.65s forwards; color: var(--accent); }
.title-word:nth-child(3) { animation: heroReveal 0.9s var(--ease-out) 0.8s forwards; }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(237,237,237,0.75);
  font-weight: 400;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out) 1s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out) 1.2s forwards;
}

.btn-primary {
  padding: 14px 36px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 3px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(237,237,237,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 1.6s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(221,191,167,0.8));
  animation: scrollDrop 1.5s ease infinite;
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDrop {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
}

/* ── STATS SECTION ───────────────────────────────────────── */
.stats-section {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.stats-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 32px;
  text-align: center;
  position: relative;
}

.stat-sep {
  width: 1px;
  background: rgba(221,191,167,0.12);
  align-self: stretch;
  margin: 48px 0;
}

.stat-icon-shape {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  position: relative;
}

/* s1: circle with inner dot */
.s1::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(221,191,167,0.25);
}
.s1::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

/* s2: diamond */
.s2::before {
  content: '';
  position: absolute;
  inset: 8px;
  transform: rotate(45deg);
  border: 2px solid rgba(221,191,167,0.3);
  border-radius: 3px;
}

/* s3: upward triangle */
.s3::before {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-bottom: 44px solid rgba(221,191,167,0.25);
}

/* s4: plus cross */
.s4::before {
  content: '';
  position: absolute;
  top: 50%; left: 4px; right: 4px;
  height: 2px;
  background: rgba(221,191,167,0.3);
  transform: translateY(-50%);
}
.s4::after {
  content: '';
  position: absolute;
  left: 50%; top: 4px; bottom: 4px;
  width: 2px;
  background: rgba(221,191,167,0.3);
  transform: translateX(-50%);
}

.stat-counter-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
}

.stat-num {
  display: block;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  font-family: var(--font-en);
}

.stat-plus {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-en);
  opacity: 0.8;
}

.stat-lbl {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(237,237,237,0.5);
  letter-spacing: 0.08em;
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section {
  padding: 120px 0;
  background: var(--light);
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.about-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1.5px solid rgba(17,69,66,0.12);
  animation: ringPulse 4s ease-in-out infinite;
}
.about-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -80px;
  border-radius: 50%;
  border: 1.5px solid rgba(17,69,66,0.07);
  animation: ringPulse 4s ease-in-out infinite 1s;
}
.about-logo-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 50px rgba(17,69,66,0.2));
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.06); opacity: 0.15; }
}

/* About section heading — fixed size so "نحن مجموعة صهيل" always fits on one line */
.about-main-heading {
  font-size: clamp(1.6rem, 2.6vw, 2.5rem) !important;
  white-space: nowrap;
}

.about-text-col { animation-delay: var(--delay, 0); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
html[lang="ar"] .section-eyebrow::before { order: 1; }

.section-eyebrow.light { color: var(--accent); }

.section-heading {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}
.section-heading.light { color: var(--white); }
.blog-section .section-heading { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .section-eyebrow {
  justify-content: center;
}
.section-header .section-eyebrow::before { display: none; }

.about-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-tags span {
  padding: 6px 16px;
  background: rgba(17,69,66,0.07);
  border: 1px solid rgba(17,69,66,0.15);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}

/* ── VMV SECTION ─────────────────────────────────────────── */
.vmv-section {
  background: var(--primary);
  overflow: hidden;
}

.vmv-label-strip {
  padding: 80px 40px 48px;
  text-align: center;
  border-bottom: 1px solid rgba(237,237,237,0.07);
}

.vmv-label-text {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(221,191,167,0.4);
}

.vmv-row {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid rgba(237,237,237,0.07);
  overflow: hidden;
  transition: background 0.5s;
  cursor: default;
}
.vmv-row:hover { background: rgba(0,0,0,0.25); }
.vmv-row:last-of-type { border-bottom: none; }

.vmv-row-alt {
  grid-template-columns: 1fr 240px;
}

.vmv-row-shape {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 40px;
  gap: 20px;
  border-inline-end: 1px solid rgba(237,237,237,0.07);
}
.vmv-row-alt .vmv-row-shape {
  border-inline-end: none;
  border-inline-start: 1px solid rgba(237,237,237,0.07);
}

.vmv-shape {
  width: 80px; height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Eye / circle shape (vision) */
.vmv-shape-eye {
  border-radius: 50%;
  border: 2px solid rgba(221,191,167,0.25);
}
.vmv-shape-eye .vmv-shape-inner {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* Diamond shape (message) */
.vmv-shape-diamond {
  transform: rotate(45deg);
  border: 2px solid rgba(221,191,167,0.25);
  border-radius: 4px;
}
.vmv-shape-diamond .vmv-shape-inner {
  width: 30px; height: 30px;
  background: var(--accent);
  opacity: 0.6;
  border-radius: 3px;
  transform: rotate(-45deg);
}

/* Triangle shape (mission) */
.vmv-shape-tri {
  width: 0; height: 0;
  border: none;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid rgba(221,191,167,0.18);
  border-radius: 0;
  background: transparent;
  position: relative;
}
.vmv-shape-tri .vmv-shape-inner {
  position: absolute;
  top: 18px; left: -17px;
  width: 0; height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-bottom: 30px solid rgba(221,191,167,0.45);
}

.vmv-row-index {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(221,191,167,0.3);
  font-family: var(--font-en);
}

.vmv-row-content {
  padding: 64px 72px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vmv-row-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.vmv-row-line {
  width: 48px; height: 2px;
  background: var(--accent);
  margin-bottom: 24px;
  transition: width 0.4s var(--ease-out);
}
.vmv-row:hover .vmv-row-line { width: 88px; }

.vmv-row-text {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(237,237,237,0.62);
  max-width: 600px;
}

.vmv-row-num-bg {
  position: absolute;
  inset-inline-end: -16px;
  top: -16px;
  font-size: 220px;
  font-weight: 900;
  color: rgba(237,237,237,0.025);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-en);
  z-index: 1;
  transition: color 0.5s;
  user-select: none;
}
.vmv-row:hover .vmv-row-num-bg { color: rgba(221,191,167,0.05); }

/* ── INVEST CTA SECTION ──────────────────────────────────── */
.invest-cta-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.invest-cta-bg-shape {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,69,66,0.55) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.invest-cta-bg-shape2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85,0,0,0.18) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}

.invest-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.invest-cta-left { display: flex; flex-direction: column; align-items: flex-start; }

.invest-cta-heading {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.invest-cta-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(237,237,237,0.6);
  margin-bottom: 44px;
  max-width: 480px;
}

.invest-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 3px;
  transition: background 0.3s, transform 0.3s, color 0.3s;
  border: 2px solid var(--accent);
}
.invest-cta-btn::after {
  content: '←';
  font-size: 1.1rem;
  transition: transform 0.3s;
}
html[lang="en"] .invest-cta-btn::after { content: '→'; }
.invest-cta-btn:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}
.invest-cta-btn:hover::after { transform: translateX(-4px); }
html[lang="en"] .invest-cta-btn:hover::after { transform: translateX(4px); }

.invest-cta-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.invest-cta-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border: 1px solid rgba(221,191,167,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}
.invest-cta-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(221,191,167,0.25);
  transform: translateX(-4px);
}
html[lang="en"] .invest-cta-card:hover { transform: translateX(4px); }

.invest-cta-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* idea: lightbulb shape = circle + triangle base */
.icc-shape {
  position: relative;
}
.icc-shape-idea {
  width: 28px; height: 28px;
  border-radius: 50% 50% 40% 40%;
  border: 2px solid var(--accent);
}
.icc-shape-idea::after {
  content: '';
  position: absolute;
  bottom: -9px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 8px;
  border: 2px solid var(--accent);
  border-top: none;
  border-radius: 0 0 4px 4px;
}

/* growth: upward arrow */
.icc-shape-growth {
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 22px solid var(--accent);
}
.icc-shape-growth::after {
  content: '';
  position: absolute;
  bottom: -22px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 10px;
  background: var(--accent);
}

/* partner: two linked circles */
.icc-shape-partner {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  box-shadow: 16px 0 0 0 rgba(221,191,167,0.5);
}
.icc-shape-partner::after {
  content: '';
  position: absolute;
  top: 50%; left: 100%;
  transform: translateY(-50%);
  width: 16px; height: 2px;
  background: rgba(221,191,167,0.4);
}

.invest-cta-card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.invest-cta-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(237,237,237,0.45);
}

/* ── SERVICES SECTION (old — kept for reference) ──────────── */
.services-section {
  padding: 120px 0;
  background: var(--white);
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(17,69,66,0.08);
  border: 1px solid rgba(17,69,66,0.08);
}

.srv-item {
  position: relative;
  background: var(--white);
  padding: 56px 48px;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.srv-item:hover { background: #fafaf9; }

.srv-line-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
html[lang="en"] .srv-line-top { transform-origin: left; }
.srv-item:hover .srv-line-top { transform: scaleX(1); }

/* ── CSS Geometric Service Icons ─────────────────────────── */
.srv-visual {
  width: 100%;
  padding: 8px 0 4px;
}

.srv-ico {
  position: relative;
}

/* HR: Two overlapping circles */
.srv-ico-hr {
  width: 84px; height: 72px;
  position: relative;
}
.srv-ico-hr .sico-a {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2.5px solid var(--accent);
  top: 0; right: 0;
}
.srv-ico-hr .sico-b {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2.5px solid rgba(17,69,66,0.35);
  background: rgba(17,69,66,0.06);
  bottom: 0; left: 0;
}
html[lang="en"] .srv-ico-hr .sico-a { right: auto; left: 0; }
html[lang="en"] .srv-ico-hr .sico-b { left: auto; right: 0; }

/* Finance: Four ascending bars */
.srv-ico-fin {
  width: 84px; height: 70px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
}
.srv-ico-fin .sico-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--accent);
}
.srv-ico-fin .sico-bar:nth-child(1) { height: 28%; opacity: 0.35; }
.srv-ico-fin .sico-bar:nth-child(2) { height: 52%; opacity: 0.6; }
.srv-ico-fin .sico-bar:nth-child(3) { height: 76%; opacity: 0.8; }
.srv-ico-fin .sico-bar:nth-child(4) { height: 100%; }

/* Business Dev: Circle with arrow */
.srv-ico-biz {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2.5px solid rgba(17,69,66,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.srv-ico-biz::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(17,69,66,0.1);
}
.srv-ico-biz .sico-arrow {
  width: 28px; height: 28px;
  border-top: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  transform: rotate(-45deg) translate(3px, 3px);
}

/* Marketing: Concentric circles / target */
.srv-ico-mkt {
  width: 80px; height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.srv-ico-mkt .sico-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}
.srv-ico-mkt .sico-ring:nth-child(1) {
  width: 80px; height: 80px;
  border-color: rgba(221,191,167,0.12);
}
.srv-ico-mkt .sico-ring:nth-child(2) {
  width: 50px; height: 50px;
  border-color: rgba(221,191,167,0.3);
}
.srv-ico-mkt .sico-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  z-index: 1;
}

.srv-content { flex: 1; }
.srv-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--crimson);
  margin-bottom: 12px;
  font-family: var(--font-en);
}
.srv-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.srv-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ── TIMELINE SECTION ────────────────────────────────────── */
.timeline-section {
  background: var(--dark);
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
.timeline-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(17,69,66,0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(85,0,0,0.2) 0%, transparent 50%);
  pointer-events: none;
}


.timeline-track {
  position: relative;
  margin-top: 20px;
}

.timeline-spine {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), rgba(221,191,167,0.1));
}

.timeline-items { position: relative; z-index: 2; }

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
}

.tl-dot {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-dot-inner {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
  outline: 2px solid var(--accent);
  transition: transform 0.3s;
}
.tl-item:hover .tl-dot-inner { transform: scale(1.4); }

.tl-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(221,191,167,0.12);
  border-radius: 4px;
  padding: 24px 28px;
  transition: border-color 0.3s, background 0.3s;
}
.tl-item:hover .tl-card {
  border-color: rgba(221,191,167,0.3);
  background: rgba(221,191,167,0.05);
}

.tl-logo-wrap {
  width: 56px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tl-logo-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.tl-logo-placeholder {
  width: 56px; height: 56px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(221,191,167,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
}

.tl-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.tl-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(237,237,237,0.55);
}

.tl-sector-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(221,191,167,0.1);
  border: 1px solid rgba(221,191,167,0.22);
  border-radius: 3px;
  padding: 3px 10px;
  margin-bottom: 14px;
  width: fit-content;
}

.tl-year {
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(221,191,167,0.2);
  font-family: var(--font-en);
  transition: color 0.3s;
}
.tl-item:hover .tl-year { color: rgba(221,191,167,0.5); }

/* ── BLOG SECTION ────────────────────────────────────────── */
.blog-section {
  padding: 120px 0;
  background: var(--light);
}

.blog-slider-wrapper {
  position: relative;
  padding: 0;
}

.blog-slider-viewport {
  overflow: hidden;
  border-radius: 4px;
}

.blog-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

.blog-slide {
  flex-shrink: 0;
  display: flex;
}

.blog-nav-btn { display: none; }

.blog-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
}
.blog-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(17,69,66,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.35s, width 0.35s, border-radius 0.35s, transform 0.35s;
  padding: 0;
  flex-shrink: 0;
}
.blog-dot:hover { background: rgba(17,69,66,0.4); transform: scale(1.2); }
.blog-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 4px;
  transform: none;
}

.blog-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(17,69,66,0.12);
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(17,69,66,0.1);
  position: relative;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--primary), rgba(17,69,66,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img-placeholder svg { width: 48px; height: 48px; color: rgba(221,191,167,0.4); }

.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.blog-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson);
  border: 1px solid rgba(85,0,0,0.2);
  padding: 3px 10px;
  border-radius: 2px;
}
.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-mid);
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid rgba(17,69,66,0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.blog-card-read:hover { color: var(--crimson); border-color: var(--crimson); }
.blog-card-read svg { width: 14px; height: 14px; }

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section {
  padding: 0 0 120px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.contact-section .container {
  padding-top: 80px;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(221,191,167,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info-col h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-items { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.ci-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(221,191,167,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: background 0.3s;
}
.ci-icon svg { width: 18px; height: 18px; }
.contact-item:hover .ci-icon { background: rgba(221,191,167,0.1); }

.ci-text { display: flex; flex-direction: column; gap: 4px; }
.ci-text span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,237,237,0.4);
}
.ci-text a, .ci-text span:last-child {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s;
}
.ci-text a:hover { color: var(--accent); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  position: relative;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(221,191,167,0.2);
  border-radius: 3px;
  padding: 20px 20px 8px;
  color: var(--white);
  font-family: var(--font-ar);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: none;
}
html[lang="en"] .form-field input,
html[lang="en"] .form-field textarea { font-family: var(--font-en); }

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.form-field label {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: rgba(237,237,237,0.45);
  pointer-events: none;
  transition: top 0.25s, font-size 0.25s, color 0.25s, transform 0.25s;
}
html[lang="en"] .form-field label { right: auto; left: 20px; }

.form-field textarea ~ label { top: 22px; transform: none; }

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label {
  top: 10px;
  transform: none;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.btn-submit {
  padding: 16px 40px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  font-family: var(--font-ar);
}
html[lang="en"] .btn-submit { font-family: var(--font-en); }
.btn-submit:hover { background: #c9a991; transform: translateY(-2px); }
.btn-submit svg { width: 16px; height: 16px; }

.form-success {
  text-align: center;
  padding: 16px;
  background: rgba(17,69,66,0.4);
  border: 1px solid rgba(221,191,167,0.4);
  border-radius: 3px;
  color: var(--accent);
  font-size: 0.9rem;
}

/* ── PRE-FOOTER ──────────────────────────────────────────── */
.pre-footer {
  background: var(--dark);
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid rgba(221,191,167,0.08);
}
.pre-footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  /* إذا كان الشعار داكناً يمكن إزالة هذا الفلتر */
  filter: brightness(0) invert(1) sepia(1) saturate(0.5) hue-rotate(10deg) brightness(1.4);
  opacity: 0.85;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #070c0c;
  padding: 24px 0;
  border-top: 1px solid rgba(221,191,167,0.08);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(237,237,237,0.3);
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(237,237,237,0.3);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }

/* ── ABOUT SECTION ANIMATIONS ───────────────────────────── */
.about-heading-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out) 0.3s, transform 0.8s var(--ease-out) 0.3s;
}
.about-text-col.visible .about-heading-anim {
  opacity: 1;
  transform: none;
}

.about-body-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out) 0.6s, transform 0.8s var(--ease-out) 0.6s;
}
.about-text-col.visible .about-body-anim {
  opacity: 1;
  transform: none;
}

/* ── REVEAL ANIMATIONS base (directional overrides below) ── */

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .invest-cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .vmv-row, .vmv-row-alt { grid-template-columns: 1fr; }
  .vmv-row-shape {
    flex-direction: row;
    justify-content: flex-start;
    padding: 40px 40px 24px;
    border-inline-end: none;
    border-inline-start: none;
    border-bottom: 1px solid rgba(237,237,237,0.07);
    gap: 16px;
  }
  .vmv-row-alt .vmv-row-shape { border-inline-start: none; border-bottom: 1px solid rgba(237,237,237,0.07); }
  .vmv-row-content { padding: 32px 40px 56px; }
  .stats-inner { flex-wrap: wrap; }
  .stat-block { flex: 0 0 calc(50% - 1px); min-width: 0; }
  .stat-sep { display: none; }
  .stat-block:nth-child(3) { border-top: 1px solid rgba(221,191,167,0.12); }
  .stat-block:nth-child(4) { border-top: 1px solid rgba(221,191,167,0.12); }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-visual-col { height: 300px; }
  .about-main-heading { white-space: normal !important; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .services-showcase { grid-template-columns: 1fr; }
  .srv-item { padding: 40px 28px; }
  .stat-block { padding: 56px 24px; }
  .tl-item { grid-template-columns: 40px 1fr; grid-template-rows: auto auto; gap: 8px 16px; }
  .tl-dot { grid-column: 1; grid-row: 1; align-self: start; padding-top: 4px; }
  .tl-card { grid-column: 2; grid-row: 1; }
  .tl-year { grid-column: 2; grid-row: 2; font-size: 1.4rem; }
  .timeline-spine { display: none; }
  .vmv-row-shape { padding: 32px 24px 20px; }
  .vmv-row-content { padding: 24px 24px 48px; }
  .invest-cta-section { padding: 80px 0; }
  .about-section, .services-section, .blog-section, .timeline-section { padding: 80px 0; }
  .contact-section { padding-bottom: 80px; }
  .contact-section .container { padding-top: 60px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .section-heading { font-size: clamp(2.4rem, 8vw, 4rem); }
}

@media (max-width: 480px) {
  .stat-block { flex: 0 0 100%; }
  .stat-block:nth-child(3) { border-top: 1px solid rgba(221,191,167,0.12); }
  .container { padding: 0 20px; }
  .contact-layout { gap: 40px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}

/* ── BLOG MOBILE CARD SIZE ───────────────────────────────── */
@media (max-width: 639px) {
  .blog-section { padding: 64px 0; }
  .blog-card-img { aspect-ratio: 16/8; }
  .blog-card-body { padding: 16px; }
  .blog-card-title { font-size: 0.92rem; margin-bottom: 8px; }
  .blog-card-excerpt {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1.6;
  }
  .blog-card-meta { margin-bottom: 8px; gap: 8px; }
  .blog-card-date { font-size: 0.72rem; }
  .blog-dots { margin-top: 20px; gap: 6px; }
}

/* ── HERO VIDEO RESPONSIVE ───────────────────────────────── */
.hero-video-mobile  { display: none; }
.hero-video-desktop { display: block; }

@media (max-width: 767px) {
  .hero-video-desktop { display: none; }
  .hero-video-mobile  { display: block; }
}

/* ── HELLO SWITCHER ──────────────────────────────────────── */
.hello-switcher {
  text-align: center;
  padding: 64px 24px 48px;
  border-bottom: 1px solid rgba(221,191,167,0.12);
  user-select: none;
  overflow: hidden;
}
.hello-word-wrap {
  height: clamp(4rem, 11vw, 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hello-word {
  display: block;
  font-size: clamp(2.8rem, 8.5vw, 6.5rem);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: none;
  will-change: opacity, transform;
}
.hello-word.hello-exit {
  animation: helloSlideOut 0.28s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}
.hello-word.hello-enter {
  animation: helloSlideIn 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hello-lang-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(221,191,167,0.35);
  margin-top: 16px;
  transition: none;
}
.hello-lang-label.hello-exit {
  animation: helloFadeOut 0.28s ease forwards;
}
.hello-lang-label.hello-enter {
  animation: helloFadeIn 0.32s ease forwards;
}

@keyframes helloSlideOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-40px); }
}
@keyframes helloSlideIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes helloFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes helloFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── SECTION ENTER ANIMATIONS ────────────────────────────── */
/* Base */
.reveal-item {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.85s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.reveal-item.visible {
  opacity: 1;
  transform: none !important;
}

/* Directional variants per section */
.about-section    .reveal-item { transform: translateX(50px); }
.about-section    .about-text-col.reveal-item { transform: translateX(-50px); }
html[lang="ar"] .about-section .reveal-item { transform: translateX(-50px); }
html[lang="ar"] .about-section .about-text-col.reveal-item { transform: translateX(50px); }

.services-section .reveal-item { transform: translateY(50px); }
.srv-item.reveal-item          { transform: translateY(60px) scale(0.97); }

.vmv-section      .reveal-item { transform: translateY(40px); }
.vmv-row.reveal-item           { transform: translateY(50px) scale(0.98); }

.timeline-section .reveal-item { transform: translateX(40px); }
html[lang="ar"] .timeline-section .reveal-item { transform: translateX(-40px); }

.blog-section     .reveal-item { transform: translateY(50px); }

.contact-section  .reveal-item { transform: translateY(40px); }

.stats-section .reveal-item { transform: translateY(30px) scale(0.95); }

/* Section tag label slide-in */
.section-header.reveal-item    { transform: translateY(30px); }