/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --navy-900: #0a1628;
  --navy-800: #0f1f37;
  --navy-700: #0c2645;
  --navy-600: #1a3255;
  --navy-500: #2d4a6f;
  --navy-400: #4a6a8a;

  --teal-700: #0a6b65;
  --teal-600: #0f7a73;
  --teal-500: #189189;
  --teal-400: #15938b;
  --teal-300: #1b9e96;
  --teal-200: #3ab8b0;
  --teal-100: #d4f0ee;
  --teal-50: #eef9f8;

  --white: #ffffff;
  --gray-50: #f8fafb;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;

  --text-primary: var(--navy-800);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --text-accent: var(--teal-500);

  --bg-white: #ffffff;
  --bg-light: #f8fafb;
  --bg-subtle: #f1f5f9;

  --font-en: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar: 'Tajawal', 'Segoe UI', sans-serif;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.35s var(--ease-smooth);
  --transition-spring: 0.5s var(--ease-spring);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(15,31,55,0.06), 0 4px 12px rgba(15,31,55,0.03);
  --shadow-xl: 0 24px 60px rgba(15,31,55,0.08), 0 8px 20px rgba(15,31,55,0.03);
  --shadow-teal: 0 8px 32px rgba(24,145,137,0.15);

  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-en);
  background: var(--bg-white);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

html[lang="ar"] body {
  font-family: var(--font-ar);
  line-height: 1.9;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ===== LANGUAGE TOGGLE ===== */
.lang-ar { display: none !important; }
.lang-en { display: inline !important; }
html[lang="ar"] .lang-ar { display: inline !important; }
html[lang="ar"] .lang-en { display: none !important; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION ===== */
.section {
  padding: 120px 0;
  position: relative;
}

.section--gray {
  background-color: var(--bg-light);
  background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
  background-size: 24px 24px;
}

.section--accent {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--accent::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(24,145,137,0.1) 0%, transparent 50%);
  animation: rotateAccent 30s linear infinite;
  pointer-events: none;
}

.section--accent .section__title,
.section--accent .section__subtitle {
  color: var(--white);
  position: relative;
  z-index: 2;
}

.section--accent .section__subtitle {
  color: rgba(255,255,255,0.7);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 20px;
}

html[lang="ar"] .section__label {
  letter-spacing: 0.5px;
  font-size: 18px;
  font-weight: 800;
}

.section__label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  border-radius: 2px;
}

html[dir="rtl"] .section__label::before { display: none; }
html[dir="rtl"] .section__label::after {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-300), var(--teal-500));
  border-radius: 2px;
}

.section__title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

html[lang="ar"] .section__title {
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0;
}

.section__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== ICON BOX ===== */
.icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  color: var(--teal-500);
  transition: all var(--transition-spring);
  flex-shrink: 0;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
  transition: all var(--transition-spring);
}

.icon-box--sm {
  width: 44px;
  height: 44px;
}

.icon-box--sm svg {
  width: 20px;
  height: 20px;
}

.icon-box--lg {
  width: 64px;
  height: 64px;
}

.icon-box--lg svg {
  width: 28px;
  height: 28px;
}

.icon-box--gradient {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
}

/* Icon hover animations */
.hoverable:hover .icon-box {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: var(--shadow-teal);
}

.hoverable:hover .icon-box svg {
  animation: iconBounce 0.5s var(--ease-spring);
}

/* Floating icon animation */
.icon-float {
  animation: iconFloat 3s ease-in-out infinite;
}

.icon-float-d1 { animation-delay: 0s; }
.icon-float-d2 { animation-delay: 0.5s; }
.icon-float-d3 { animation-delay: 1s; }
.icon-float-d4 { animation-delay: 1.5s; }
.icon-float-d5 { animation-delay: 2s; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  padding: 8px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

.nav__logo { flex-shrink: 0; height: 38px; }
.nav__logo img { height: 100%; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1px;
}

.nav__link {
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}

.nav__link:hover { color: var(--teal-500); background: var(--teal-50); }
.nav__link--active { color: var(--teal-500); font-weight: 600; }

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-trigger .chevron-icon {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.nav__dropdown:hover .nav__dropdown-trigger .chevron-icon {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

html[dir="rtl"] .nav__dropdown-menu {
  left: auto; right: 50%;
  transform: translateX(50%) translateY(8px);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

html[dir="rtl"] .nav__dropdown:hover .nav__dropdown-menu {
  transform: translateX(50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__dropdown-item:hover {
  color: var(--teal-500);
  background: var(--teal-50);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-toggle:hover { border-color: var(--teal-200); }

.lang-toggle__option {
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  border-radius: 100px;
  transition: all var(--transition-fast);
  cursor: pointer;
  user-select: none;
}

.lang-toggle__option--active {
  background: var(--teal-500);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(24,145,137,0.25);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  background: none;
  border: none;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: all var(--transition-base);
  display: block;
}

.nav__hamburger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, var(--teal-50) 40%, var(--gray-50) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orbFloat 25s ease-in-out infinite;
}

.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--teal-100), transparent 70%);
  top: -15%; right: -8%;
}

.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(24,145,137,0.15), transparent 70%);
  bottom: -20%; left: -10%;
  animation-delay: -8s;
}

.hero__orb--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(15,31,55,0.06), transparent 70%);
  top: 30%; right: 30%;
  animation-delay: -16s;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(24,145,137,0.06) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-500);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}

html[lang="ar"] .hero__badge { letter-spacing: 0; }

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

html[lang="ar"] .hero__title {
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 600px;
}

html[lang="ar"] .hero__desc { font-size: 1.15rem; line-height: 2; }

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal-400), transparent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  font-family: inherit;
  white-space: nowrap;
}

html[lang="ar"] .btn { font-family: var(--font-ar); font-weight: 700; }

.btn--primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(24,145,137,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(24,145,137,0.4);
}

.btn--outline {
  background: var(--white);
  color: var(--text-primary);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
  border-color: var(--teal-400);
  color: var(--teal-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== CARDS ===== */
.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-base);
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.9);
  background: var(--white);
}

.card:hover::after { opacity: 1; }

.card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  margin-top: 20px;
}

.card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  transition: color var(--transition-base);
  z-index: 0;
}

html[dir="rtl"] .card__number {
  right: auto;
  left: 20px;
}

.card:hover .card__number {
  color: var(--teal-50);
}

/* Highlight text used in titles */
.section__title .highlight {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

/* ===== WHO WE ARE ===== */
.whoweare { text-align: center; }

.whoweare__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.whoweare__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300), var(--teal-500));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.whoweare__text {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 2;
  position: relative;
  z-index: 1;
}

html[lang="ar"] .whoweare__text {
  line-height: 2.1;
  font-size: 1.5rem;
  font-weight: 700;
}

/* ===== VISION & MISSION ===== */
.vm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.vm-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.9);
  background: var(--white);
}

.vm-card__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--teal-500);
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 20px;
}

html[lang="ar"] .vm-card__label { letter-spacing: 0; font-size: 14px; }

.vm-card__text {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.7;
}

html[lang="ar"] .vm-card__text { line-height: 1.9; }

/* ===== FOCUS CARDS ===== */
.focus-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition-base);
}

.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.focus-card .icon-box {
  margin: 0 auto 16px;
}

.focus-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ===== ABOUT ===== */
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 32px;
}

.about__vm-list { display: flex; flex-direction: column; gap: 20px; }

.about__vm-item {
  padding: 24px 28px;
  background: var(--teal-50);
  border-left: 3px solid var(--teal-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.about__vm-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, var(--teal-100), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.about__vm-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-400);
  transform: translateX(6px);
}

.about__vm-item:hover::after {
  opacity: 1;
}

html[dir="rtl"] .about__vm-item {
  border-left: none;
  border-right: 3px solid var(--teal-500);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

html[dir="rtl"] .about__vm-item::after {
  background: radial-gradient(circle at left, var(--teal-100), transparent 70%);
}

html[dir="rtl"] .about__vm-item:hover {
  transform: translateX(-6px);
}

.about__vm-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-500);
  font-weight: 700;
  margin-bottom: 8px;
}

html[lang="ar"] .about__vm-label { letter-spacing: 0; font-size: 13px; }

.about__vm-text {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.value-item .icon-box {
  margin: 0 auto 14px;
}

.value-item__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== ECOSYSTEM ===== */
.ecosystem__intro { text-align: center; margin-bottom: 60px; }

.ecosystem__intro-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.ecosystem__entities {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ecosystem__tag {
  padding: 10px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-500);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.ecosystem__tag:hover {
  background: var(--teal-50);
  border-color: var(--teal-200);
  transform: translateY(-2px);
}

/* ===== DETAIL SECTIONS ===== */
.detail__header { margin-bottom: 48px; }

.detail__overview {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.9;
  margin-top: 16px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition-base);
  position: relative;
}

.detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
  transform: translateY(-4px);
}

.detail-card--wide {
  grid-column: 1 / -1;
}

.detail-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--teal-50);
  color: var(--teal-500);
  margin-bottom: 16px;
}

.detail-card__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.detail-group__title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

html[lang="ar"] .detail-group__title { letter-spacing: 0; font-size: 17px; }

.detail-list { display: flex; flex-direction: column; gap: 10px; }

.detail-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.detail-list__item:hover {
  border-color: var(--teal-200);
  background: var(--teal-50);
  transform: translateX(4px);
}

html[dir="rtl"] .detail-list__item:hover {
  transform: translateX(-4px);
}

.detail-list__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-300));
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(24,145,137,0.3);
}

/* ===== PARTNERSHIPS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.partner-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.partner-card .icon-box {
  margin: 0 auto 18px;
}

.partner-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ===== IMPACT ===== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-card {
  padding: 40px 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.impact-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-300), var(--teal-100));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.impact-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-6px);
}

.impact-card:hover::after { opacity: 1; }

.impact-card .icon-box {
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.impact-card:hover .icon-box {
  background: rgba(255,255,255,0.2);
  transform: scale(1.08) rotate(-3deg);
}

.impact-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

/* ===== LEADERSHIP ===== */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.leader-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  transition: all var(--transition-base);
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.leader-card__avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  border: 4px solid var(--teal-100);
  transition: all var(--transition-base);
}

.leader-card:hover .leader-card__avatar {
  transform: scale(1.08);
  border-color: var(--teal-200);
  box-shadow: 0 8px 24px rgba(24,145,137,0.2);
}

.leader-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.leader-card__role {
  font-size: 0.9rem;
  color: var(--teal-500);
  font-weight: 600;
}

/* ===== CONTACT ===== */
.contact-section { text-align: center; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.contact-card {
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.contact-card .icon-box {
  margin: 0 auto 20px;
}

.contact-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 32px;
  background: var(--navy-800);
  color: var(--gray-300);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 48px;
  gap: 40px;
}

.footer__brand { max-width: 320px; }

.footer__logo { height: 36px; margin-bottom: 16px; }
.footer__logo img { height: 100%; width: auto; filter: brightness(0) invert(1); }

.footer__tagline {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.footer__links-group { display: flex; gap: 60px; }

.footer__col-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal-300);
  font-weight: 700;
  margin-bottom: 16px;
}

html[lang="ar"] .footer__col-title { letter-spacing: 0; }

.footer__link {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer__link:hover { color: var(--white); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy { font-size: 13px; color: var(--gray-500); }

.footer__bottom-tagline {
  font-size: 13px;
  color: var(--teal-300);
  font-weight: 600;
}

/* ===== KEYFRAMES ===== */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(25px, -25px) scale(1.04); }
  50% { transform: translate(-15px, 15px) scale(0.96); }
  75% { transform: translate(10px, 10px) scale(1.02); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes rotateAccent {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes iconBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s var(--ease-smooth);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }
.reveal--d5 { transition-delay: 0.5s; }

/* Hero Entrance */
.hero__badge { animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero__title { animation: fadeInUp 0.8s ease-out 0.5s both; }
.hero__desc { animation: fadeInUp 0.8s ease-out 0.7s both; }
.hero__ctas { animation: fadeInUp 0.8s ease-out 0.9s both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links--mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
  }

  .nav__links--mobile-open .nav__link {
    font-size: 18px;
    padding: 14px 24px;
    color: var(--text-primary);
  }

  .nav__links--mobile-open .nav__dropdown-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none !important;
    background: transparent;
    border: none; box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 4px 0 4px 20px;
    min-width: auto;
  }

  html[dir="rtl"] .nav__links--mobile-open .nav__dropdown-menu {
    padding: 4px 20px 4px 0;
  }

  .grid-5, .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .about__content { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { flex-direction: column; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section__header { margin-bottom: 48px; }

  .hero__title { font-size: clamp(2rem, 7vw, 2.8rem); }
  html[lang="ar"] .hero__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  .vm-grid, .grid-3, .leaders-grid, .contact-cards, .grid-2, .detail-grid {
    grid-template-columns: 1fr;
  }

  .grid-5, .partners-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid, .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .hero__ctas { flex-direction: column; }
  .whoweare__text { font-size: 1.12rem; }

  .footer__links-group { flex-direction: column; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .vm-card { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }

  .grid-5, .partners-grid, .values-grid, .impact-grid, .grid-4 {
    grid-template-columns: 1fr;
  }

  .card { padding: 28px 20px; }
  .hero__scroll { display: none; }
}
