/* ===== VARIABLES ===== */
:root {
  --primary: #C9A227;
  --primary-dark: #a8871e;
  --primary-light: #e8c84a;
  --bg: #0a0a0f;
  --bg-card: #111118;
  --text: #f0f0f0;
  --text-muted: rgba(240,240,240,0.55);
  --border: rgba(255,255,255,0.07);
  --white: #ffffff;
  --radius: 4px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
  transition: font-family 0.2s;
}
body.lang-en {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  direction: ltr;
}
body.lang-en .hero-quote { border-right: none; padding-right: 0; border-left: 3px solid var(--primary); padding-left: 16px; }
body.lang-en .timeline::before { right: auto; left: 0; }
body.lang-en .timeline-dot { order: -1; }
body.lang-en .timeline-item { flex-direction: row-reverse; }
body.lang-en .section-label:not(.center) { flex-direction: row-reverse; justify-content: flex-end; }
body.lang-en .pub-border { right: auto; left: 0; }
body.lang-en .nav-links { flex-direction: row-reverse; }
body.lang-en .close-menu { left: auto; right: 24px; }
body.lang-en .about-facts { flex-direction: row; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ===== LOGO ===== */
.logo-svg-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(201,162,39,0.35));
  transition: filter 0.3s;
}
.logo-svg-wrap:hover { filter: drop-shadow(0 4px 16px rgba(201,162,39,0.6)); }
.logo-svg { width: 52px; height: 52px; }
.logo-svg-sm { width: 44px; height: 44px; }
.logo-svg-sm .logo-svg { width: 44px; height: 44px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,162,39,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-name { font-weight: 700; font-size: 16px; line-height: 1.2; }
.logo-sub { font-size: 11px; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links button {
  font-size: 13px; font-weight: 600; color: rgba(240,240,240,0.8);
  transition: color 0.2s; font-family: inherit;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links button:hover { color: var(--primary); border-bottom-color: var(--primary); }
.btn-cta {
  background: var(--primary); color: #000 !important;
  font-weight: 700; padding: 9px 22px;
  font-size: 13px; border-bottom: none !important;
  transition: background 0.2s !important;
  letter-spacing: 0.3px;
}
.btn-cta:hover { background: var(--primary-light) !important; transform: translateY(-1px); }

/* Language Toggle Button */
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  border: 1.5px solid rgba(201,162,39,0.4); color: var(--primary);
  padding: 6px 14px; font-size: 12px; font-weight: 700;
  font-family: inherit; cursor: pointer;
  transition: all 0.2s; border-radius: 2px;
  letter-spacing: 0.5px; background: transparent;
  white-space: nowrap;
}
.lang-toggle:hover { background: rgba(201,162,39,0.1); border-color: var(--primary); }
.lang-icon { font-size: 13px; }
.mobile-lang { display: none; }
.nav-right-group { display: none; align-items: center; gap: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,15,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.close-menu {
  position: absolute; top: 24px; left: 24px;
  font-size: 28px; color: rgba(240,240,240,0.6);
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.close-menu:hover { color: var(--text); }
.mobile-links { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-links button {
  font-size: 22px; font-weight: 700; color: rgba(240,240,240,0.9);
  transition: color 0.2s; font-family: inherit; background: none; border: none; cursor: pointer;
}
.mobile-links button:hover { color: var(--primary); }
.mobile-links .btn-cta {
  font-size: 16px; padding: 12px 32px;
  background: var(--primary); color: #000 !important;
  font-weight: 700; margin-top: 8px; border-bottom: none !important;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to left, rgba(10,10,15,0.35), rgba(10,10,15,0.78), rgba(10,10,15,0.97));
}
body.lang-en .hero-overlay {
  background: linear-gradient(to right, rgba(10,10,15,0.35), rgba(10,10,15,0.78), rgba(10,10,15,0.97));
}
.hero-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding-top: 40px; padding-bottom: 60px;
}
.hero-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hero-label span:not(.line) { color: var(--primary); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; }
.line { display: block; width: 32px; height: 2px; background: var(--primary); flex-shrink: 0; }
.hero-title {
  font-size: clamp(36px, 5.5vw, 76px); font-weight: 900;
  color: var(--white); line-height: 1.05; margin-bottom: 16px;
}
body.lang-en .hero-title { font-size: clamp(28px, 4vw, 58px); }
.hero-subtitle { font-size: 17px; color: rgba(240,240,240,0.72); margin-bottom: 20px; font-weight: 400; }
.hero-quote {
  font-size: 15px; color: rgba(240,240,240,0.62); font-style: italic;
  border-right: 3px solid var(--primary); padding-right: 16px; margin-bottom: 32px;
  line-height: 1.6;
}
.hero-stats { display: flex; gap: 32px; margin-bottom: 36px; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num { font-size: 40px; font-weight: 900; color: var(--primary); line-height: 1; font-family: 'Cairo', sans-serif; }
.stat > span:not(.stat-num):not(.stat-label) { font-size: 24px; color: var(--primary); font-weight: 900; }
.stat-label { font-size: 11px; color: var(--text-muted); text-align: center; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary); color: #000;
  font-weight: 700; padding: 13px 30px; font-size: 14px;
  font-family: inherit; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  border: none; letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,162,39,0.3); }
.btn-primary.full-width { width: 100%; text-align: center; }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(240,240,240,0.3); padding: 13px 30px;
  font-size: 14px; font-family: inherit; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(201,162,39,0.06); }

/* Hero photo */
.hero-photo { position: relative; display: flex; justify-content: center; align-items: center; }
.photo-glow {
  position: absolute; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(201,162,39,0.3), transparent 70%);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.photo-frame {
  position: relative; width: 290px; height: 290px; border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 6px rgba(201,162,39,0.12), 0 0 60px rgba(201,162,39,0.25);
  z-index: 1;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.bg-dark { background: var(--bg); }
.bg-card { background: var(--bg-card); }
.border-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header { margin-bottom: 56px; }
.section-label {
  display: flex; align-items: center; gap: 12px;
  color: var(--primary); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 12px;
}
.section-label.center { justify-content: center; }
.section-title { font-size: clamp(26px, 3.5vw, 46px); font-weight: 900; color: var(--white); }
.section-title.center { text-align: center; }
.section-desc { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; line-height: 1.85; }

/* ===== TWO-COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }

/* ===== ABOUT ===== */
.about-facts { display: flex; gap: 24px; margin-top: 32px; }
.fact { text-align: center; padding: 16px 20px; background: rgba(201,162,39,0.06); border: 1px solid rgba(201,162,39,0.15); }
.fact-num { font-size: 34px; font-weight: 900; color: var(--primary); font-family: 'Cairo', sans-serif; }
.fact-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.about-photo-wrap { position: relative; }
.about-photo-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle at center, rgba(201,162,39,0.12), transparent 70%);
  border-radius: 8px;
}
.about-photo {
  width: 100%; max-width: 420px; margin: 0 auto;
  border-radius: 2px; border: 1px solid rgba(201,162,39,0.2);
  position: relative; z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ===== VISION ===== */
.vision-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.vision-card {
  background: var(--bg); border: 1px solid var(--border); padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.vision-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--primary);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: right;
}
body.lang-en .vision-card::after { transform-origin: left; }
.vision-card:hover { border-color: rgba(201,162,39,0.35); transform: translateY(-4px); }
.vision-card:hover::after { transform: scaleX(1); }
.vision-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.vision-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.vision-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.vision-card p { color: var(--text-muted); font-size: 14px; line-height: 1.75; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  overflow: hidden; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  border-radius: var(--radius);
}
.service-card:hover {
  border-color: rgba(201,162,39,0.4); transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.service-img-wrap { position: relative; height: 200px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-icon-badge {
  position: absolute; bottom: 14px; right: 14px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
body.lang-en .service-icon-badge { right: auto; left: 14px; }
.service-icon-badge svg { width: 18px; height: 18px; stroke: #000; }
.service-body { padding: 20px; }
.service-body h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.service-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ===== CAREER TIMELINE ===== */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
}
body.lang-en .timeline::before { right: auto; left: 0; }
.timeline-item { display: flex; gap: 24px; padding-bottom: 28px; position: relative; }
body.lang-en .timeline-item { flex-direction: row-reverse; }
.timeline-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--primary); background: var(--bg);
  flex-shrink: 0; margin-top: 8px; position: relative; z-index: 1;
  transition: background 0.3s;
}
.timeline-item:hover .timeline-dot { background: var(--primary); }
.timeline-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 20px 24px; flex: 1;
  transition: border-color 0.3s, transform 0.2s;
}
.timeline-card:hover { border-color: rgba(201,162,39,0.3); transform: translateX(-4px); }
body.lang-en .timeline-card:hover { transform: translateX(4px); }
.timeline-year { color: var(--primary); font-weight: 700; font-size: 12px; letter-spacing: 1px; font-family: 'Cairo', monospace; }
.timeline-card h4 { color: var(--white); font-size: 15px; font-weight: 700; margin: 6px 0 4px; }
.timeline-org { color: var(--text-muted); font-size: 13px; }

/* ===== PUBLICATIONS ===== */
.pubs-layout { align-items: stretch; }
.pub-card { padding: 24px; border: 1px solid var(--border); margin-bottom: 16px; position: relative; overflow: hidden; }
.main-pub { background: var(--bg-card); }
.secondary-pub { background: rgba(255,255,255,0.02); }
.pub-border {
  position: absolute; top: 0; right: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
}
body.lang-en .pub-border { right: auto; left: 0; }
.pub-card h3 { font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pub-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pub-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.pub-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pub-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(240,240,240,0.8); }
.pub-features li.gold { color: var(--primary); font-weight: 600; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.gold-dot { background: var(--primary) !important; }

/* Book Cover */
.book-wrap { position: relative; width: 260px; }
.book-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(201,162,39,0.18), transparent 70%);
  transform: translate(10px, 10px);
  border-radius: 8px;
}
.book-cover {
  position: relative; z-index: 1;
  display: flex; width: 260px; height: 360px;
  box-shadow: -10px 10px 40px rgba(0,0,0,0.8), 0 2px 8px rgba(201,162,39,0.2);
  border-radius: 0 4px 4px 0;
  transition: transform 0.4s;
}
.book-cover:hover { transform: rotate(-2deg) scale(1.02); }
.book-spine {
  width: 20px; flex-shrink: 0;
  background: linear-gradient(to bottom, #a8871e, #c9a227 40%, #e8c84a 50%, #c9a227 60%, #8b6914);
  border-radius: 4px 0 0 4px;
}
.book-front {
  flex: 1;
  background: linear-gradient(155deg, #14142a 0%, #0a0a18 50%, #14142a 100%);
  border: 1px solid rgba(201,162,39,0.4);
  border-right: none;
  display: flex; flex-direction: column;
  padding: 20px 18px; overflow: hidden;
  position: relative;
}
.book-front::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 18px,
    rgba(201,162,39,0.025) 18px, rgba(201,162,39,0.025) 19px
  );
}
.book-header { margin-bottom: 12px; position: relative; z-index: 1; }
.book-publisher {
  font-size: 8.5px; color: rgba(201,162,39,0.65); text-align: center;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px;
}
.book-line { height: 1px; background: linear-gradient(to left, transparent, var(--primary), transparent); }
.book-title-area {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 12px 0; position: relative; z-index: 1;
}
.book-title-main {
  font-size: 23px; font-weight: 900; color: var(--primary);
  line-height: 1.2; margin-bottom: 8px;
}
.book-title-sub {
  font-size: 14px; font-weight: 600; color: rgba(240,240,240,0.85); line-height: 1.3;
}
.book-decoration { display: flex; justify-content: center; margin: 8px 0; position: relative; z-index: 1; }
.book-decoration svg { width: 80px; height: 30px; }
.book-footer {
  text-align: center; position: relative; z-index: 1;
  padding-top: 12px; border-top: 1px solid rgba(201,162,39,0.2);
}
.book-author { font-size: 11px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.book-edition { font-size: 10px; color: rgba(240,240,240,0.45); }

/* ===== CLIENTS ===== */
.clients-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; max-width: 960px; margin: 0 auto;
}
.client-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 24px 16px; background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.client-card:hover {
  border-color: rgba(201,162,39,0.4);
  background: rgba(255,255,255,0.025);
  transform: translateY(-3px);
}
.client-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(201,162,39,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s;
}
.client-card:hover .client-icon { border-color: rgba(201,162,39,0.5); }
.client-icon svg { width: 28px; height: 28px; }
.client-card p { font-size: 12px; color: var(--text-muted); text-align: center; line-height: 1.5; font-weight: 500; }
.client-card:hover p { color: var(--text); }
.clients-note {
  margin-top: 32px; font-size: 11.5px; color: rgba(240,240,240,0.28); text-align: center;
}

/* ===== CONTACT ===== */
.contact-layout { align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--primary); }
.contact-icon.whatsapp-icon { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.25); }
.contact-icon.whatsapp-icon svg { stroke: none; fill: #25d366; }
.contact-label { font-size: 10px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.contact-value { font-size: 14px; font-weight: 600; color: var(--text); }
a.contact-value:hover { color: var(--primary); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #000; font-weight: 700;
  padding: 13px 28px; font-size: 14px; font-family: inherit;
  transition: background 0.2s, transform 0.1s; cursor: pointer; border: none;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-whatsapp svg { fill: #000; }

.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 36px; border-radius: var(--radius);
}
.contact-form-wrap h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: rgba(240,240,240,0.65); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.8px; }
.form-group input, .form-group textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  color: var(--text); padding: 11px 14px; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; border-radius: 2px;
  direction: rtl;
}
body.lang-en .form-group input, body.lang-en .form-group textarea { direction: ltr; }
.form-group input[dir="ltr"], .form-group textarea[dir="ltr"] { direction: ltr; text-align: left; }
.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(201,162,39,0.5);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.08);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none; text-align: center; padding: 24px 16px;
  color: var(--primary); font-weight: 700; font-size: 16px;
  border: 1px solid rgba(201,162,39,0.3); background: rgba(201,162,39,0.06);
}

/* ===== FOOTER ===== */
.footer { background: var(--bg-card); border-top: 1px solid rgba(201,162,39,0.12); padding: 36px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s ease forwards; }
.fade-in.delay { animation-delay: 0.25s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== LANGUAGE TRANSITION ===== */
[data-ar], [data-en] { transition: opacity 0.15s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav-links { gap: 14px; }
  .nav-links button { font-size: 12px; }
  .btn-cta { padding: 8px 16px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .vision-grid { grid-template-columns: repeat(2,1fr); }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right-group { display: flex; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .hero-stats { gap: 20px; }
  .two-col { grid-template-columns: 1fr; }
  .pubs-layout .col-img { order: -1; }
  .vision-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 64px 0; }
  .timeline::before { right: auto; left: 6px; }
  body.lang-en .timeline::before { right: auto; left: 6px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-num { font-size: 32px; }
  .book-wrap { width: 220px; }
  .book-cover { width: 220px; height: 300px; }
  .contact-form-wrap { padding: 24px 16px; }
  .about-facts { flex-direction: column; gap: 12px; }
}
