/* ============================================================
   BARQ BAGHDAD AIRPORT SERVICES - STYLES
   Colors:
     Navy:        #124072  (primary)
     Dark Gold:   #8f6126  (accent)
     Light Gold:  #d7b684  (highlight)
   Font: Tajawal (Arabic + Latin)
============================================================ */

:root {
  --navy: #124072;
  --navy-700: #0f3661;
  --navy-900: #0a2647;
  --gold: #8f6126;
  --gold-light: #d7b684;
  --gold-soft: #f4e9d6;
  --white: #ffffff;
  --bg: #fbfaf7;
  --bg-alt: #f5f1e8;
  --text: #1a2236;
  --text-muted: #5b6478;
  --border: #e6e1d4;

  --gradient-gold: linear-gradient(135deg, #8f6126 0%, #d7b684 100%);
  --gradient-navy: linear-gradient(135deg, #124072 0%, #0a2647 100%);
  --gradient-navy-gold: linear-gradient(135deg, #124072 0%, #1a5499 50%, #8f6126 100%);

  --shadow-sm: 0 2px 8px rgba(18, 64, 114, 0.06);
  --shadow-md: 0 8px 24px rgba(18, 64, 114, 0.08);
  --shadow-lg: 0 20px 60px rgba(18, 64, 114, 0.12);
  --shadow-gold: 0 12px 30px rgba(143, 97, 38, 0.25);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;

  --container: 1240px;
  --header-h: 118px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  margin: 0;
  font-family: 'Tajawal', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 { margin: 0 0 0.5em; font-weight: 800; line-height: 1.25; color: var(--navy); }
p { margin: 0 0 1em; }

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

/* ---------- Typography Helpers ---------- */
.label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-inline-start: 12px;
  border-inline-start: 2px solid var(--gold);
  line-height: 1;
}
.label.light { color: var(--gold-light); border-color: var(--gold-light); }

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0;
}
.section-sub.light { color: rgba(255,255,255,0.78); }

.section-head { margin-bottom: 48px; max-width: 720px; }
[dir="rtl"] .section-head { margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.25s ease; }
[dir="rtl"] .btn svg { transform: scaleX(-1); }
.btn:hover svg { transform: translateX(3px); }
[dir="rtl"] .btn:hover svg { transform: scaleX(-1) translateX(3px); }

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

.btn-large { padding: 18px 38px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 14px; height: 14px; color: var(--gold-light); }
.topbar-item a:hover { color: var(--gold-light); }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.3); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 96px; width: auto; }
[data-lang="en"] .logo img { height: 76px; }

.nav ul { display: flex; gap: 6px; align-items: center; }
.nav a {
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}
.nav a:hover { color: var(--navy); background: var(--bg-alt); }
.nav a.active { color: var(--gold); }
.nav-close { display: none; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.lang-toggle:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.lang-toggle-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: color 0.2s ease;
}
.lang-toggle:hover .lang-toggle-icon { color: var(--gold-light); }
.lang-toggle-text {
  font-family: inherit;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(70vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 90px 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(270deg, rgba(10, 38, 71, 0.94) 0%, rgba(10, 38, 71, 0.78) 45%, rgba(10, 38, 71, 0.45) 100%);
}
[dir="ltr"] .hero::before {
  background:
    linear-gradient(90deg, rgba(10, 38, 71, 0.94) 0%, rgba(10, 38, 71, 0.78) 45%, rgba(10, 38, 71, 0.45) 100%);
}

.hero-inner { position: relative; width: 100%; }
.hero-content { max-width: 680px; }

.hero-eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  padding-inline-start: 12px;
  border-inline-start: 2px solid var(--gold-light);
  line-height: 1.2;
}

.hero-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Section Base ---------- */
.section { padding: 90px 0; position: relative; }
.section-tinted { background: #f9f7f1; }
.section-dark {
  background: var(--navy-900);
  color: var(--white);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  margin: 0;
  position: relative;
  isolation: isolate;
  max-width: 440px;
}
.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: 0 30px 60px -20px rgba(18, 64, 114, 0.35);
}
/* offset accent block behind image */
.about-image::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 60%;
  background: var(--gold-soft);
  border-radius: 6px;
  bottom: -22px;
  inset-inline-end: -22px;
  z-index: -1;
}
[dir="ltr"] .about-image::before { right: auto; left: -22px; }
.about-image figcaption {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-inline-start: 14px;
  border-inline-start: 2px solid var(--gold-light);
}

.about-content { max-width: 620px; }
.about-content .label { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 22px; }
.about-content p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.1em;
}

.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
  margin: 36px 0 0;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.about-meta > div { display: flex; flex-direction: column; gap: 4px; }
.about-meta dt {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-meta dd {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

/* ---------- Vision / Mission ---------- */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 90px;
}
.vm-card {
  position: relative;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: inset-inline-start;
  transition: transform 0.35s ease;
}
.vm-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  box-shadow: 0 18px 40px -20px rgba(18, 64, 114, 0.25);
}
.vm-card:hover::before { transform: scaleX(1); }

.vm-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.vm-icon svg { width: 30px; height: 30px; }
.vm-card:hover .vm-icon { background: var(--gold); color: var(--white); }

.vm-body { flex: 1; }
.vm-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.vm-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.35;
}
.vm-card p {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ---------- Values (horizontal strip) ---------- */
.values-strip {
  padding: 28px 0;
  background: var(--navy-900);
  color: var(--white);
}
.values-strip-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.values-strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding-inline-end: 24px;
  border-inline-end: 1px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.values-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  align-items: center;
  flex: 1;
}
.values-strip-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.values-strip-list svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -22px rgba(18, 64, 114, 0.22);
  border-color: var(--gold-light);
}

.service-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--gold-light);
}
.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-900) 100%);
}
.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.6;
  background:
    radial-gradient(circle at 80% 20%, rgba(215, 182, 132, 0.35), transparent 55%),
    radial-gradient(circle at 20% 90%, rgba(143, 97, 38, 0.25), transparent 50%);
}
.service-visual svg { width: 78%; height: 78%; }

/* photo variant: actual image fills the visual area */
.service-visual-photo { color: transparent; }
.service-visual-photo::before { display: none; }
.service-visual-photo::after {
  background: linear-gradient(180deg, rgba(10, 38, 71, 0.15) 0%, rgba(10, 38, 71, 0.5) 100%);
  opacity: 1;
  z-index: 1;
}
.service-visual-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}
.service-card:hover .service-visual-photo img { transform: scale(1.05); }

/* per-service color variants */
.service-visual[data-tone="b"]::before { background: linear-gradient(135deg, #1a5499 0%, #124072 100%); }
.service-visual[data-tone="c"]::before { background: linear-gradient(135deg, #8f6126 0%, #5e3e15 100%); }
.service-visual[data-tone="c"] { color: #f4e9d6; }
.service-visual[data-tone="d"]::before { background: linear-gradient(135deg, #0f3661 0%, #08203d 100%); }
.service-visual[data-tone="e"]::before { background: linear-gradient(135deg, #a87432 0%, #6b441a 100%); }
.service-visual[data-tone="e"] { color: #f4e9d6; }
.service-visual[data-tone="f"]::before { background: linear-gradient(135deg, #154984 0%, #0a2647 100%); }
.service-visual[data-tone="g"]::before { background: linear-gradient(135deg, #8f6126 0%, #124072 100%); }
.service-visual[data-tone="g"] { color: #f4e9d6; }
.service-visual[data-tone="h"]::before { background: linear-gradient(135deg, #124072 0%, #8f6126 100%); }

.service-body {
  padding: 26px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.12em;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.35;
  color: var(--navy);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ---------- Why Us (clean list) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.why-card {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.why-card:nth-child(odd) { padding-inline-end: 40px; border-inline-end: 1px solid rgba(255,255,255,0.12); }
.why-card:nth-child(even) { padding-inline-start: 40px; }
.why-card h3 { color: var(--gold-light); font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; }
.why-card p { color: rgba(255,255,255,0.72); margin: 0; line-height: 1.75; font-size: 0.98rem; }

/* ---------- Partners ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.partner-card {
  position: relative;
  padding: 32px 30px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  isolation: isolate;
}
.partner-card::after {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-gold);
  transition: width 0.4s ease;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -22px rgba(18, 64, 114, 0.2);
  border-color: var(--gold-light);
}
.partner-card:hover::after { width: 100%; }

.partner-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  background: var(--gold-soft);
  border-radius: 100px;
  margin-bottom: 22px;
}

.partner-logo {
  position: relative;
  height: 110px;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo img {
  max-height: 64px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  transition: filter 0.3s ease;
}
.partner-card:hover .partner-logo img { filter: grayscale(0); }

.partner-logo-fallback {
  display: none;
  align-items: center;
  gap: 14px;
}
.partner-logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-900) 100%);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.partner-logo-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.partner-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.35;
}
.partner-card p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
}

.partners-foot {
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.94rem;
  max-width: 880px;
  text-align: center;
  margin-inline: auto;
}

/* ---------- Safety ---------- */
.safety-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}
.safety-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text);
  position: relative;
  padding-inline-start: 22px;
}
.safety-list li:nth-child(odd) { padding-inline-end: 32px; border-inline-end: 1px solid var(--border); padding-inline-start: 22px; }
.safety-list li:nth-child(even) { padding-inline-start: 54px; }
.safety-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.safety-list li:nth-child(even)::before { inset-inline-start: 32px; }

/* ---------- CTA ---------- */
.cta-section {
  padding: 90px 0;
  background: var(--navy);
}
.cta-inner { max-width: 720px; }
.cta-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cta-text { color: rgba(255,255,255,0.78); margin-bottom: 28px; font-size: 1.02rem; line-height: 1.7; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.contact-info {
  display: block;
  border-top: 1px solid var(--border);
}
.contact-card {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-icon { display: none; }
.contact-card h4 { font-size: 0.82rem; margin-bottom: 4px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-card p { font-size: 1rem; color: var(--text); margin: 0; }

.contact-form {
  padding: 32px;
  background: var(--bg-alt);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  transition: all 0.2s ease;
  font-family: inherit;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(143, 97, 38, 0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: #e6f6ed;
  color: #1f8a4c;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 32px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; opacity: 0.78; transition: all 0.2s ease; }
.footer-col a:hover { opacity: 1; color: var(--gold-light); padding-inline-start: 6px; }

.footer-logo {
  width: 240px;
  margin-bottom: 22px;
  background: rgba(255,255,255,0.95);
  padding: 18px 22px;
  border-radius: 12px;
}
[data-lang="en"] .footer-logo { width: 180px; padding: 14px 18px; }
.footer-col-brand p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 18px; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: all 0.2s ease;
  padding: 0;
  opacity: 1;
}
.social-row a:hover { background: var(--gradient-gold); transform: translateY(-3px); }
.social-row svg { width: 16px; height: 16px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.87rem;
}
.footer-bottom p { margin: 0; }
.footer-tag {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: opacity 0.2s ease;
  opacity: 0.9;
}
.powered-by:hover { opacity: 1; }
.powered-by img {
  height: auto;
  width: 140px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-inline-start: -34px;
}

/* ---------- Animations on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image { max-width: 520px; }
  .about-image img { aspect-ratio: 16 / 10; max-height: 460px; }
  .about-image::before { width: 35%; height: 70%; bottom: -16px; inset-inline-end: -16px; }
  .vm-grid { margin-top: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --header-h: 88px; }
  .logo img { height: 68px; }
  [data-lang="en"] .logo img { height: 56px; }
  .section { padding: 70px 0; }
  .topbar-left, .topbar-right { gap: 14px; font-size: 0.78rem; }
  .topbar-divider { display: none; }

  .nav {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    width: min(82vw, 320px);
    height: 100vh;
    background: var(--white);
    padding: 80px 24px 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 50;
  }
  [dir="rtl"] .nav { transform: translateX(-100%); inset-inline-end: 0; left: 0; right: auto; }
  [dir="rtl"] .nav.open { transform: translateX(0); }
  .nav.open { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav a { padding: 14px 16px; font-size: 1.02rem; }
  .nav-close {
    display: flex;
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--navy);
  }
  .nav-toggle { display: flex; }

  .hero { padding: 50px 0 80px; min-height: auto; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }

  .services-grid, .why-grid, .safety-list { grid-template-columns: 1fr; }
  .values-strip-inner { gap: 18px; }
  .values-strip-label { padding-inline-end: 0; border-inline-end: none; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%; }
  .service-card:nth-child(odd),
  .value-row:nth-child(odd),
  .why-card:nth-child(odd) {
    padding-inline-end: 0;
    border-inline-end: none;
  }
  .service-card:nth-child(even),
  .value-row:nth-child(even),
  .why-card:nth-child(even) {
    padding-inline-start: 0;
  }
  .safety-list li:nth-child(odd) { padding-inline-end: 0; border-inline-end: none; }
  .safety-list li:nth-child(even) { padding-inline-start: 22px; }
  .safety-list li:nth-child(even)::before { inset-inline-start: 0; }
  .vm-grid, .about-meta { grid-template-columns: 1fr; }
  .vm-card { padding: 28px 24px; gap: 18px; }
  .vm-icon { width: 50px; height: 50px; }
  .vm-icon svg { width: 26px; height: 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer { padding-top: 50px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .about-badge { position: static; margin-top: 18px; max-width: 100%; }
  .about-visual { aspect-ratio: auto; padding: 24px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar { font-size: 0.75rem; }
  .topbar-left { display: none; }
}

/* ---------- LTR overrides for English ---------- */
[dir="ltr"] body { text-align: left; }
[dir="ltr"] .footer-col h4::after { left: 0; right: auto; }
[dir="ltr"] .about-badge { left: 26px; right: auto; }
