
/* ───── CSS VARIABLES ───── */
:root[data-theme="dark"] {
  --bg: #0A0D14;
  --heading: #C9A84C;
  --secondary: #5D7590;
  --card-bg: #111420;
  --text: #E8E8E8;
  --text-muted: #5D7590;
  --border: rgba(201,168,76,0.15);
  --border-light: rgba(255,255,255,0.06);
  --accent-glow: rgba(201,168,76,0.12);
  --nav-bg: rgba(10,13,20,0.92);
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --card-shadow: 0 4px 24px rgba(0,0,0,0.4);
  --divider: rgba(201,168,76,0.2);
  --hero-overlay: linear-gradient(135deg, rgba(10,13,20,0.97) 0%, rgba(17,20,32,0.9) 100%);
  --tag-bg: rgba(201,168,76,0.1);
  --tag-color: #C9A84C;
}
:root[data-theme="light"] {
  --bg: #FCF9FE;
  --heading: #925A97;
  --secondary: #6A7476;
  --card-bg: #FFFFFF;
  --text: #2D2D2D;
  --text-muted: #6A7476;
  --border: rgba(146,90,151,0.15);
  --border-light: rgba(146,90,151,0.08);
  --accent-glow: rgba(146,90,151,0.08);
  --nav-bg: rgba(252,249,254,0.92);
  --shadow: 0 8px 40px rgba(146,90,151,0.12);
  --card-shadow: 0 4px 24px rgba(146,90,151,0.1);
  --divider: rgba(146,90,151,0.2);
  --hero-overlay: linear-gradient(135deg, rgba(252,249,254,0.97) 0%, rgba(240,232,245,0.9) 100%);
  --tag-bg: rgba(146,90,151,0.08);
  --tag-color: #925A97;
}

/* ───── RESET & BASE ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
  line-height: 1.7;
}
body.rtl {
  font-family: 'Cairo', 'Poppins', sans-serif;
  direction: rtl;
}
body.rtl .nav-links { flex-direction: row-reverse; }
body.rtl .hero-content { text-align: right; }
body.rtl .stat-item { text-align: center; }
body.rtl .section-header { text-align: right; }
body.rtl .contact-grid { direction: rtl; }
body.rtl .service-card { text-align: right; }
body.rtl .team-info { text-align: right; }
body.rtl .client-table th, body.rtl .client-table td { text-align: right; }
body.rtl .value-item { text-align: right; }
body.rtl .footer-grid { direction: rtl; }
body.rtl .contact-item { flex-direction: row-reverse; text-align: right; }
body.rtl .leader-details { text-align: right; }
body.rtl .cert-badge { text-align: center; }

/* ───── TYPOGRAPHY ───── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--heading);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5, body.rtl h6 {
  font-family: 'Cairo', sans-serif;
  letter-spacing: 0;
}
p { color: var(--text); }

/* ───── SCROLLBAR ───── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--heading); border-radius: 3px; }

/* ───── NAVBAR ───── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled { height: 60px; box-shadow: var(--shadow); }

.nav-logo { display: flex; flex-direction: column; gap: 1px; cursor: pointer; text-decoration: none; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
body.rtl .nav-logo-name { font-family: 'Cairo', sans-serif; letter-spacing: 0; }
.nav-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
body.rtl .nav-logo-sub { font-family: 'Cairo', sans-serif; letter-spacing: 0.05em; font-size: 0.6rem; }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
body.rtl .nav-links a { letter-spacing: 0; font-size: 0.88rem; text-transform: none; }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--heading);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--heading); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-controls { display: flex; align-items: center; gap: 0.75rem; }

.btn-control {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--heading);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}
.btn-control:hover { background: var(--heading); color: var(--bg); border-color: var(--heading); }

.lang-btn { min-width: 42px; font-size: 0.72rem; letter-spacing: 0.05em; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card-bg);
  cursor: pointer;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ───── HERO ───── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--hero-overlay);
  z-index: 0;
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  opacity: 0.6;
}
.hero-accent {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--accent-glow);
  filter: blur(100px);
  z-index: 0;
  right: -10%; top: -10%;
  pointer-events: none;
}
.hero-accent-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--accent-glow);
  filter: blur(80px);
  z-index: 0;
  left: -5%; bottom: 10%;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 900px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
body.rtl .hero-eyebrow { letter-spacing: 0.05em; font-size: 0.82rem; }
.hero-eyebrow::before {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--heading);
}
body.rtl .hero-eyebrow { flex-direction: row-reverse; }
body.rtl .hero-eyebrow::before { display: none; }
body.rtl .hero-eyebrow::after {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--heading);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
  margin-bottom: 0.3rem;
}
.hero-title-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--secondary);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
body.rtl .hero-title-sub { letter-spacing: 0.05em; }
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 640px;
  opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
}
body.rtl .hero-tagline { font-family: 'Cairo', sans-serif; font-style: normal; }

.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
}
body.rtl .stat-num { font-family: 'Cairo', sans-serif; }
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.rtl .stat-label { letter-spacing: 0; font-size: 0.82rem; }

.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.95s forwards;
}
.btn-primary {
  padding: 0.9rem 2.2rem;
  background: var(--heading);
  color: var(--bg);
  border: none; border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
body.rtl .btn-primary { font-family: 'Cairo', sans-serif; letter-spacing: 0; font-size: 0.9rem; }
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
[data-theme="light"] .btn-primary:hover { box-shadow: 0 8px 24px rgba(146,90,151,0.3); }
.btn-outline {
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--heading);
  border: 1px solid var(--heading);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
body.rtl .btn-outline { font-family: 'Cairo', sans-serif; letter-spacing: 0; font-size: 0.9rem; }
.btn-outline:hover { background: var(--heading); color: var(--bg); transform: translateY(-2px); }

/* ───── SECTIONS ───── */
section {
  padding: 100px 5%;
}
.section-header {
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
body.rtl .section-eyebrow { letter-spacing: 0.05em; font-size: 0.82rem; flex-direction: row-reverse; justify-content: flex-end; }
.section-eyebrow::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--heading);
}
body.rtl .section-eyebrow::before { display: none; }
body.rtl .section-eyebrow::after {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--heading);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--heading);
}
.section-divider {
  width: 60px; height: 2px;
  background: var(--heading);
  margin-top: 1.2rem;
  opacity: 0.5;
}
body.rtl .section-divider { margin-left: auto; margin-right: 0; }

/* ───── ABOUT ───── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-text p {
  color: var(--secondary);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.value-item {
  padding: 1.2rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex; align-items: center; gap: 0.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.value-item:hover { border-color: var(--border); transform: translateY(-2px); }
.value-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--heading);
  flex-shrink: 0;
}
.value-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
}
body.rtl .value-name { letter-spacing: 0; }
.mission-vision-grid {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.mv-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--heading);
  border-radius: 0 8px 8px 0;
  transition: box-shadow 0.3s;
}
body.rtl .mv-card { border-left: none; border-right: 3px solid var(--heading); border-radius: 8px 0 0 8px; }
.mv-card:hover { box-shadow: var(--card-shadow); }
.mv-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
body.rtl .mv-label { letter-spacing: 0.05em; }
.mv-text {
  font-size: 0.95rem;
  color: var(--secondary);
  line-height: 1.8;
}

/* ───── SERVICES ───── */
#services { background: var(--card-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  padding: 2.5rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--heading);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--tag-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.tag {
  padding: 0.3rem 0.75rem;
  background: var(--tag-bg);
  color: var(--tag-color);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
body.rtl .tag { letter-spacing: 0; font-size: 0.82rem; }

/* ───── LEADERSHIP ───── */
.leader-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  transition: box-shadow 0.3s;
}
.leader-card:hover { box-shadow: var(--shadow); }
.leader-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--tag-bg);
  border: 2px solid var(--heading);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--heading);
  flex-shrink: 0;
}
body.rtl .leader-avatar { font-family: 'Cairo', sans-serif; }
.leader-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.25rem;
}
.leader-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
body.rtl .leader-role { letter-spacing: 0.05em; }
.leader-bio {
  font-size: 0.95rem;
  color: var(--secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.certs-grid {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2rem;
}
.cert-badge {
  padding: 0.75rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}
.cert-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  font-family: 'Cormorant Garamond', serif;
}
body.rtl .cert-title { font-family: 'Cairo', sans-serif; }
.cert-sub {
  font-size: 0.68rem;
  color: var(--secondary);
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.ey-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--tag-bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.ey-years {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}
body.rtl .ey-years { font-family: 'Cairo', sans-serif; }
.ey-info { font-size: 0.78rem; color: var(--secondary); line-height: 1.5; }
.leader-details { }

/* ───── TEAM ───── */
#team { background: var(--card-bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  display: flex; flex-direction: column; gap: 1rem;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); border-color: var(--border); }
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--tag-bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading);
}
body.rtl .team-avatar { font-family: 'Cairo', sans-serif; }
.team-info {}
.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.rtl .team-role { letter-spacing: 0; font-size: 0.85rem; }
.team-exp {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.team-quals {
  font-size: 0.78rem;
  color: var(--secondary);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
}

/* ───── CLIENTS ───── */
.clients-tabs {
  display: flex; gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s;
}
body.rtl .tab-btn { font-family: 'Cairo', sans-serif; letter-spacing: 0; font-size: 0.9rem; }
.tab-btn.active { background: var(--heading); color: var(--bg); border-color: var(--heading); }
.tab-btn:hover:not(.active) { border-color: var(--heading); color: var(--heading); }

.client-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--border-light); }
.client-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem;
}
.client-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
}
body.rtl .client-table th { letter-spacing: 0; font-size: 0.8rem; }
.client-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--secondary);
  vertical-align: middle;
}
.client-table tr:last-child td { border-bottom: none; }
.client-table tr:hover td { background: var(--accent-glow); color: var(--text); }
.client-name { font-weight: 600; color: var(--text); }
.client-panel { display: none; }
.client-panel.active { display: block; }

/* ───── CONTACT ───── */
#contact { background: var(--card-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-item:hover { border-color: var(--border); transform: translateX(4px); }
body.rtl .contact-item:hover { transform: translateX(-4px); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--tag-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--heading);
}
.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
body.rtl .contact-label { letter-spacing: 0; font-size: 0.8rem; }
.contact-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
}
.contact-value a { color: inherit; text-decoration: none; transition: color 0.3s; }
.contact-value a:hover { color: var(--heading); }
.contact-cta-box {
  padding: 2.5rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-cta-box h3 { font-size: 1.6rem; color: var(--heading); margin-bottom: 0.5rem; }
.contact-cta-box p { color: var(--secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.contact-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ───── FOOTER ───── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.25rem;
}
body.rtl .footer-brand-name { font-family: 'Cairo', sans-serif; letter-spacing: 0; }
.footer-brand-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
body.rtl .footer-brand-sub { letter-spacing: 0.05em; font-size: 0.7rem; }
.footer-desc {
  font-size: 0.88rem;
  color: var(--secondary);
  line-height: 1.8;
  max-width: 320px;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
body.rtl .footer-col-title { letter-spacing: 0; font-size: 0.8rem; }
.footer-links {
  display: flex; flex-direction: column; gap: 0.75rem;
  list-style: none;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--secondary);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--heading); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-license {
  font-size: 0.75rem;
  color: var(--secondary);
  background: var(--tag-bg);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ───── ANIMATIONS ───── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ───── MOBILE NAV ───── */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%;
  flex-direction: column; gap: 1rem;
  z-index: 999;
  transition: top 0.3s;
}
nav.scrolled ~ .mobile-nav { top: 60px; }
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.3s;
}
body.rtl .mobile-nav a { letter-spacing: 0; text-align: right; }
.mobile-nav a:hover { color: var(--heading); }

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-avatar { width: 80px; height: 80px; font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  section { padding: 70px 5%; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .certs-grid { flex-direction: column; }
}