@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* =========================================================
   VARIABLES
   ========================================================= */
:root {
  --navy:       #070c1a;
  --navy-2:     #0c1225;
  --navy-3:     #111827;
  --navy-card:  #0f172a;
  --gold:       #c9a635;
  --gold-light: #e2b93d;
  --gold-dim:   rgba(201,166,53,0.12);
  --gold-border:rgba(201,166,53,0.25);
  --white:      #ffffff;
  --text-1:     #f1f5f9;
  --text-2:     #cbd5e1;
  --text-3:     #94a3b8;
  --border:     rgba(255,255,255,0.07);
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-ar:    'Tajawal', system-ui, sans-serif;
  --ease:       cubic-bezier(.4,0,.2,1);
  --r:          8px;
  --r-lg:       14px;
  --max-w:      1280px;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
}
[dir="rtl"] body,
[dir="rtl"] * { font-family: var(--font-ar), var(--font-sans); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* =========================================================
   UTILITIES
   ========================================================= */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--alt { background: var(--navy-2); }
.section--dark { background: var(--navy-3); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-3);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 20px;
}
.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 48px;
  border-radius: 2px;
}
[dir="rtl"] .divider { margin-right: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn--outline {
  border: 1.5px solid var(--gold-border);
  color: var(--text-1);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.btn--ghost { color: var(--gold); }
.btn--ghost:hover { gap: 14px; }

/* Cards */
.card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }

/* Gold bullet list */
.bullet-list { display: flex; flex-direction: column; gap: 10px; }
.bullet-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text-2); }
.bullet-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: rgba(7,12,26,.97);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: .8rem;
  color: var(--text-3);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar__left a { color: var(--text-3); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar__left a:hover { color: var(--gold); }
.topbar__right { color: var(--text-3); }
.topbar__right span { display: flex; align-items: center; gap: 6px; }

.lang-toggle {
  padding: 5px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: all .2s;
}
.lang-toggle:hover { background: var(--gold-dim); border-color: var(--gold); }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,12,26,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.4); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar__logo svg { width: 44px; height: 44px; }
.navbar__logo-text { line-height: 1.2; }
.navbar__logo-name {
  display: block;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
}
.navbar__logo-sub {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__links a {
  padding: 8px 12px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.navbar__links a:hover { color: var(--white); background: var(--gold-dim); }
.navbar__links a.active { color: var(--gold); }
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px - 37px);
  position: relative;
  overflow: hidden;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: var(--navy);
  position: relative;
  z-index: 2;
}
.hero__content::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.hero__logo-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero__tag::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero__subtitle {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}
.hero__desc {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.85);
}
.hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,12,26,.3), transparent);
  z-index: 1;
}

/* =========================================================
   OVERVIEW
   ========================================================= */
.overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.overview__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.tab-btn {
  padding: 10px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  border-radius: var(--r) var(--r) 0 0;
  transition: all .2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn:hover { color: var(--text-1); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { color: var(--text-2); line-height: 1.8; margin-bottom: 16px; font-size: .95rem; }
.overview__quote {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  color: var(--gold);
  font-style: italic;
  font-size: 1rem;
  margin-top: 24px;
  background: var(--gold-dim);
  border-radius: 0 var(--r) var(--r) 0;
}
[dir="rtl"] .overview__quote { border-left: none; border-right: 3px solid var(--gold); border-radius: var(--r) 0 0 var(--r); }

.stat-stack { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  transition: border-color .2s;
}
.stat-card:hover { border-color: var(--gold); }
.stat-card__icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.3rem;
}
.stat-card__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-card__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
}
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.vm-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.vm-card__icon { font-size: 1.4rem; margin-bottom: 12px; }
.vm-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}
.vm-card p { font-size: .88rem; color: var(--text-2); line-height: 1.7; }
.vm-card__line { width: 32px; height: 2px; background: var(--gold); margin-top: 16px; border-radius: 2px; }

/* =========================================================
   APPROACH
   ========================================================= */
.approach__quote {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 64px;
}
.approach__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.approach__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px 20px;
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  transition: border-color .25s, transform .25s;
}
.step-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.step-card__num {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 20px;
}
.step-card__title { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.step-card p { font-size: .84rem; color: var(--text-3); line-height: 1.6; }

/* =========================================================
   DISCIPLINES
   ========================================================= */
.disciplines__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.disc-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all .25s;
}
.disc-card:hover { border-color: var(--gold); transform: translateY(-4px); background: var(--navy-2); }
.disc-card__icon {
  width: 60px; height: 60px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  transition: background .25s;
}
.disc-card:hover .disc-card__icon { background: rgba(201,166,53,.22); }
.disc-card__title { font-weight: 700; font-size: .95rem; color: var(--white); margin-bottom: 8px; }
.disc-card p { font-size: .8rem; color: var(--text-3); line-height: 1.6; }
.cta-banner {
  background: linear-gradient(135deg, var(--navy-card), var(--navy-2));
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-banner p { color: var(--text-3); font-size: .9rem; margin-top: 6px; }
.cta-banner h3 { font-weight: 700; color: var(--white); font-size: 1.05rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 2px;
  margin-bottom: 2px;
  border-bottom: 2px solid var(--border);
  scrollbar-width: none;
}
.services-tabs::-webkit-scrollbar { display: none; }
.stab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
  border-radius: var(--r) var(--r) 0 0;
}
.stab-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: var(--gold-dim); }
.stab-btn:hover { color: var(--text-1); }
.stab-btn .stab-icon { font-size: 1rem; }
.service-panel { display: none; }
.service-panel.active { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; margin-top: 48px; }
.service-panel__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.service-panel__img img { width: 100%; height: 320px; object-fit: cover; }
.service-panel__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--navy);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  padding: 8px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
}
.service-panel__content h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-panel__content p { color: var(--text-2); font-size: .9rem; line-height: 1.75; margin-bottom: 24px; }
.service-panel__lists { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-panel__cert {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.service-panel__cert::before { content: '✓'; width: 20px; height: 20px; background: var(--gold-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; }

/* =========================================================
   SECTORS
   ========================================================= */
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sector-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .25s;
}
.sector-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.sector-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.sector-card__icon { font-size: 1.8rem; }
.sector-card__tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 3px 10px;
}
.sector-card h3 { font-weight: 700; color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.sector-card p { font-size: .84rem; color: var(--text-3); line-height: 1.6; }
.sectors__quote {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  text-align: center;
  font-style: italic;
  color: var(--text-2);
  font-size: .95rem;
}

/* =========================================================
   VISION 2030
   ========================================================= */
.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.vision__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.vision__img img { width: 100%; height: 420px; object-fit: cover; }
.vision__img::after {
  content: 'STRATEGIC ALIGNMENT';
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--navy);
  border: 1px solid var(--gold-border);
  padding: 8px 14px;
  border-radius: var(--r);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
}
.vision__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.vision-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-2);
}
.vision-point::before {
  content: '✓';
  color: var(--gold);
  font-size: .8rem;
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 700;
}

/* =========================================================
   TEAM (NEW)
   ========================================================= */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .25s;
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-card__photo {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.team-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(7,12,26,.6));
}
.team-card__info { padding: 20px; }
.team-card__name { font-weight: 700; color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.team-card__role {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.team-card__bio { font-size: .82rem; color: var(--text-3); line-height: 1.6; }
.team-card__divider { width: 28px; height: 2px; background: var(--gold); margin: 12px 0; border-radius: 2px; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,12,26,.92) 40%, transparent);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__title { font-weight: 700; color: var(--white); font-size: .9rem; margin-bottom: 4px; }
.gallery-item__sub { font-size: .75rem; color: var(--gold); letter-spacing: .06em; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,12,26,.96);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox__inner { position: relative; max-width: 900px; width: 100%; }
.lightbox__img { width: 100%; border-radius: var(--r-lg); max-height: 75vh; object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: -44px; right: 0;
  color: var(--text-1);
  font-size: 1.6rem;
  line-height: 1;
  transition: color .2s;
}
.lightbox__close:hover { color: var(--gold); }
.lightbox__caption {
  margin-top: 16px;
  text-align: center;
  color: var(--text-2);
  font-size: .88rem;
}
.lightbox__caption strong { color: var(--gold); }

/* =========================================================
   CONTACT / FOOTER
   ========================================================= */
.contact { background: var(--navy-2); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; color: var(--text-3); text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: .9rem;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy-3); }
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 20px;
}
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item__label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.contact-item__val { font-weight: 600; color: var(--white); font-size: .9rem; }

.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__copy { font-size: .8rem; color: var(--text-3); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: .8rem; color: var(--text-3); transition: color .2s; }
.footer__links a:hover { color: var(--gold); }

/* =========================================================
   MOBILE MENU
   ========================================================= */
@media (max-width: 1024px) {
  .disciplines__grid { grid-template-columns: repeat(2, 1fr); }
  .approach__steps { grid-template-columns: repeat(2, 1fr); }
  .approach__steps::before { display: none; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .overview__grid { grid-template-columns: 1fr; }
  .vision__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .service-panel.active { grid-template-columns: 1fr; }
  .sectors__grid { grid-template-columns: 1fr 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar__links { display: none; flex-direction: column; position: fixed; top: 109px; left: 0; right: 0; background: var(--navy-2); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; z-index: 99; }
  .navbar__links.open { display: flex; }
  .navbar__links a { padding: 12px 16px; width: 100%; border-radius: var(--r); }
  .hamburger { display: flex; }
  .btn.navbar-cta { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 48px 24px; order: 2; }
  .hero__image { height: 280px; order: 1; }
  .hero__content::after { display: none; }

  .disciplines__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .sectors__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .cta-banner { flex-direction: column; text-align: center; }
  .approach__steps { grid-template-columns: 1fr; }
  .service-panel__lists { grid-template-columns: 1fr; }
  .vision__points { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .disciplines__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
}

/* =========================================================
   RTL SUPPORT
   ========================================================= */
[dir="rtl"] .overview__tabs,
[dir="rtl"] .services-tabs { flex-direction: row-reverse; }
[dir="rtl"] .hero__content::after { right: auto; left: 0; }
[dir="rtl"] .service-panel__badge { left: auto; right: 16px; }
[dir="rtl"] .bullet-list li::before { margin-left: 0; }
[dir="rtl"] .footer__inner { flex-direction: row-reverse; }
[dir="rtl"] .section-title,
[dir="rtl"] .section-sub,
[dir="rtl"] .section-label { text-align: right; }
[dir="rtl"] .divider { margin-right: 0; }
[dir="rtl"] .navbar__inner { flex-direction: row-reverse; }
[dir="rtl"] .navbar__links { flex-direction: row-reverse; }
[dir="rtl"] .topbar__inner { flex-direction: row-reverse; }

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
