:root {
  /* Catalog/Profile-matched palette */
  --bg: #faf7ef;
  --bg-2: #ffffff;
  --paper: #f5f1e6;
  --ink: #1f3864;
  --ink-2: #2d4b7c;
  --ink-deep: #142849;
  --ink-darker: #0f1f3d;
  --accent-blue: #2e75b6;
  --ltblue: #d6e4f0;
  --muted: #5e6e88;
  --line: #e3dfd2;
  --line-soft: #efe9d8;
  --gold: #c9a22a;
  --gold-2: #a08020;
  --gold-soft: #f1e6b4;
  --gold-bright: #e0bd44;
  --accent: #1f3864;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(31,56,100,.06), 0 1px 1px rgba(31,56,100,.04);
  --shadow: 0 10px 30px -12px rgba(31,56,100,.22), 0 4px 12px -6px rgba(31,56,100,.10);
  --shadow-lg: 0 30px 60px -20px rgba(31,56,100,.34);
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-ar: 'Cairo', 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

html[data-lang="ar"] body { font-family: var(--font-ar); }
html[data-lang="ar"] { direction: rtl; }
html[data-lang="ar"] .arr { display: inline-block; transform: rotate(180deg); }
html[data-lang="ar"] .lang-en { display: none; }
html[data-lang="en"] .lang-ar { display: none; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* Typography */
h1, h2, h3, h4, h5 { margin: 0; color: var(--ink); letter-spacing: -0.01em; line-height: 1.15; font-family: var(--font); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.005em; }
h5 { font-size: 0.84rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
p { margin: 0 0 1rem; color: var(--ink-2); }
.lead { font-size: 1.1rem; color: var(--ink-2); max-width: 64ch; }

/* Profile-style section heading */
.section-title {
  display: inline-block; position: relative;
  padding-bottom: 14px; margin-bottom: 8px;
}
.section-title::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 64px; height: 4px; background: var(--gold);
  border-radius: 2px;
}
html[data-lang="ar"] .section-title::after { left: auto; right: 0; }
.section-subtitle {
  font-family: var(--font); color: var(--gold-2); font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.04em; margin-top: 6px; margin-bottom: 18px;
}
.section-arabic {
  font-family: var(--font-ar); color: var(--gold-2); font-weight: 600;
  font-size: 1rem; margin-bottom: 24px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: all .25s ease;
  white-space: nowrap; font-family: inherit;
}
.btn-sm { padding: 9px 16px; font-size: 0.86rem; }
.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(31,56,100,.45);
}
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(31,56,100,.55); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 8px 24px -8px rgba(201,162,42,.4); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: #fff; }
.arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }
html[data-lang="ar"] .btn:hover .arr { transform: rotate(180deg) translateX(4px); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  background: rgba(250, 247, 239, 0.85);
  border-bottom: 1px solid rgba(31,56,100,.06);
}
.nav.scrolled { background: rgba(250, 247, 239, 0.96); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { display: block; height: 60px; width: auto; }
.brand-logo-light { display: block; height: 100px; width: auto; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  position: relative; font-weight: 500; font-size: 0.94rem; color: var(--ink-2);
  padding: 6px 0; transition: color .2s;
}
.nav-links a:hover { color: var(--gold-2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  background: transparent; border: 1px solid var(--line); padding: 8px 14px;
  border-radius: 999px; font-family: var(--font-ar); font-size: 0.85rem; font-weight: 600;
  color: var(--ink); cursor: pointer; transition: all .2s;
}
.lang-toggle:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.menu-btn { display: none; background: transparent; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-btn span { width: 22px; height: 2px; background: var(--ink); display: block; transition: .2s; }

/* HERO / Cover */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fbf7eb 0%, var(--bg) 100%);
  padding: clamp(56px, 8vw, 100px) 0 clamp(80px, 10vw, 130px);
}
.hero-ribbon {
  position: absolute; pointer-events: none; opacity: 0.55;
}
.hero-ribbon-1 { top: -40px; right: -120px; width: 520px; }
.hero-ribbon-2 { bottom: -80px; left: -160px; width: 600px; transform: rotate(180deg); }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--gold);
}
.hero-title {
  font-family: var(--font); font-weight: 800; line-height: 1.05;
  font-size: clamp(2.6rem, 6vw, 4.8rem); margin-bottom: 18px; letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-title .gold { color: var(--gold); display: inline-block; }
.hero-year {
  display: inline-block; font-family: var(--font-display); font-style: italic;
  color: var(--gold-2); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 18px;
}
.hero-tag {
  font-size: 1.15rem; color: var(--ink-2); max-width: 56ch;
  margin-bottom: 32px; line-height: 1.55;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-location {
  display: flex; gap: 18px; padding: 18px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); max-width: 480px;
}
.hero-location-item { display: flex; align-items: center; gap: 12px; }
.hero-location-ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--gold); display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-location-text { display: flex; flex-direction: column; }
.hero-location-text small { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-location-text strong { font-size: 0.92rem; color: var(--ink); font-weight: 700; }

/* Hero collage */
.hero-collage {
  position: relative; aspect-ratio: 1 / 1.1;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 12px; max-width: 520px; margin-left: auto;
}
.hero-tile {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-deep) 100%);
}
.hero-tile::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(201,162,42,.18) 100%);
}
.hero-tile-label {
  position: absolute; bottom: 14px; left: 14px;
  color: #fff; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(31,56,100,.7); padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(8px);
}
html[data-lang="ar"] .hero-tile-label { left: auto; right: 14px; }
.hero-tile svg.tile-art { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.35; }
.hero-tile-1 { grid-row: span 2; }
.hero-tile-2 { background: linear-gradient(135deg, #2e75b6 0%, var(--ink) 100%); }
.hero-tile-3 { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%); }
.hero-tile-3::before { background: linear-gradient(135deg, transparent 50%, rgba(31,56,100,.25) 100%); }
.hero-tile-3 .hero-tile-label { background: rgba(31,56,100,.85); }

/* Sections */
.section { padding: clamp(70px, 10vw, 110px) 0; position: relative; }
.section-alt { background: #fff; }
.section-paper { background: var(--paper); }
.section-dark {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: #e6eaf3; position: relative; overflow: hidden;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: #c5d0e3; }
.section-dark .section-subtitle { color: var(--gold-bright); }
.section-dark .section-title::after { background: var(--gold-bright); }
.section-ribbon {
  position: absolute; pointer-events: none; opacity: 0.18;
}
.section-ribbon-tr { top: -60px; right: -120px; width: 360px; }
.section-ribbon-bl { bottom: -80px; left: -120px; width: 360px; transform: rotate(180deg); }
.section-head { max-width: 760px; margin: 0 0 56px; }

/* COMPANY OVERVIEW */
.overview-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start;
}
.overview-arabic {
  font-family: var(--font-ar); color: var(--gold-2); font-weight: 600;
  font-size: 1.1rem; margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px dashed var(--line);
}
.overview-blocks { display: grid; gap: 24px; }
.overview-block h4 {
  color: var(--ink); font-size: 1.05rem; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.overview-block h4::before {
  content: ''; width: 18px; height: 3px; background: var(--gold); border-radius: 2px;
}
.overview-block p { color: var(--ink-2); margin: 0; }

/* KEY FACTS card */
.keyfacts {
  position: sticky; top: 100px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 0; overflow: hidden;
  box-shadow: var(--shadow);
}
.keyfacts-header {
  background: var(--ink); color: #fff;
  padding: 18px 24px; display: flex; align-items: center; justify-content: space-between;
}
.keyfacts-header strong {
  font-family: var(--font); font-size: 0.94rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.keyfacts-seal {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); display: grid; place-items: center;
  color: var(--ink); font-weight: 800; font-size: 0.78rem;
}
.keyfacts-list { padding: 8px 24px 18px; }
.keyfacts-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.keyfacts-item:last-child { border-bottom: 0; }
.keyfacts-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--ltblue); color: var(--ink); display: grid; place-items: center;
  flex-shrink: 0;
}
.keyfacts-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.keyfacts-text span { font-size: 0.75rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.keyfacts-text strong { font-size: 0.95rem; color: var(--ink); font-weight: 700; word-break: break-word; }

/* VISION MISSION VALUES */
.vmv {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-bottom: 50px;
}
.vmv-block { display: flex; gap: 18px; align-items: flex-start; }
.vmv-ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--gold);
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 8px 20px -8px rgba(31,56,100,.35);
}
.vmv-content h4 {
  font-size: 1.05rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.vmv-content h4::after {
  content: ''; width: 28px; height: 2px; background: var(--gold);
}
.vmv-content p { font-size: 0.95rem; color: var(--ink-2); margin: 6px 0 0; }

.values-band {
  background: var(--ink); border-radius: var(--radius-lg);
  padding: 28px 32px; color: #fff; position: relative; overflow: hidden;
}
.values-band::after {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,42,.18), transparent 70%);
}
.values-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.values-header h4 {
  color: #fff; font-size: 0.94rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.values-header::before {
  content: ''; width: 32px; height: 2px; background: var(--gold);
}
.values-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  position: relative; z-index: 1;
}
.value-chip {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 10px; text-align: center;
  background: rgba(255,255,255,.06); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
}
.value-chip-ico {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink); display: grid; place-items: center;
}
.value-chip span { color: #fff; font-size: 0.84rem; font-weight: 600; }

/* CAPABILITIES */
.cap-grid-wrap {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 36px; align-items: start;
}
.cap-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.cap-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px;
  position: relative; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.cap-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.cap-card-num {
  position: absolute; top: 20px; right: 22px;
  font-family: var(--font); font-weight: 800; font-size: 1.1rem;
  color: var(--gold);
}
html[data-lang="ar"] .cap-card-num { right: auto; left: 22px; }
.cap-card-ico {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--gold);
  display: grid; place-items: center; margin-bottom: 14px;
}
.cap-card h4 { color: var(--ink); margin-bottom: 8px; font-size: 1.02rem; }
.cap-card p { font-size: 0.9rem; color: var(--ink-2); margin: 0; line-height: 1.55; }

.cap-side { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 100px; }
.cap-side-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cap-side-header {
  background: var(--ink); color: #fff; padding: 14px 22px;
  font-size: 0.86rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.cap-side-list { padding: 10px 22px 18px; }
.industries-item, .delivery-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem; color: var(--ink); font-weight: 600;
}
.industries-item:last-child, .delivery-item:last-child { border-bottom: 0; }
.industries-ico {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ltblue); color: var(--ink);
  display: grid; place-items: center; flex-shrink: 0;
}
.delivery-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink); display: grid; place-items: center;
  font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
}
.delivery-step { display: flex; align-items: center; gap: 10px; flex: 1; color: var(--ink); font-weight: 600; font-size: 0.92rem; }
.delivery-step svg { color: var(--ink-2); }

/* CASE STUDIES */
.case-intro { max-width: 720px; margin-bottom: 50px; }
.case-list { display: grid; gap: 24px; }
.case-card {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s;
}
.case-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.case-photo {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-deep) 100%);
  position: relative; min-height: 220px;
  display: grid; place-items: center; overflow: hidden;
}
.case-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,162,42,.2) 100%);
}
.case-photo-ico {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--gold);
  display: grid; place-items: center; position: relative; z-index: 1;
  backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,.18);
}
.case-photo-1 { background: linear-gradient(135deg, #1f3864 0%, #2e75b6 100%); }
.case-photo-2 { background: linear-gradient(135deg, #2e75b6 0%, #5fa0d8 100%); }
.case-photo-3 { background: linear-gradient(135deg, #1f3864 0%, #142849 100%); }
.case-content { padding: 28px 30px; }
.case-tag {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--gold); color: #fff;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.case-title { font-size: 1.35rem; color: var(--ink); margin-bottom: 14px; font-weight: 800; }
.case-fields { display: grid; gap: 10px; }
.case-field {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}
.case-field:last-child { border-bottom: 0; }
.case-field-ico {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--ltblue); color: var(--ink);
  display: grid; place-items: center; flex-shrink: 0;
}
.case-field-text { display: flex; flex-direction: column; gap: 2px; }
.case-field-text span { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.case-field-text strong { color: var(--ink); font-weight: 700; }
.case-field-text p { margin: 0; color: var(--ink-2); font-size: 0.92rem; line-height: 1.5; }

/* WHY AL TAWQ */
.why-icons {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
  margin: 48px 0 60px; padding: 36px 28px;
  background: rgba(255,255,255,.04); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.why-icon { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.why-icon-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink); display: grid; place-items: center;
  box-shadow: 0 8px 20px -10px rgba(201,162,42,.6);
}
.why-icon strong { color: #fff; font-size: 0.84rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1.3; }
.why-icon p { color: #b6c2d8; font-size: 0.8rem; line-height: 1.5; margin: 4px 0 0; }

.why-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.why-col-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.why-col-header h3 {
  color: #fff; font-size: 1.05rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.why-col-header::before {
  content: ''; width: 28px; height: 2px; background: var(--gold);
}
.why-col-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
}
.why-item-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(201,162,42,.18);
}
.why-item-text { display: flex; flex-direction: column; gap: 4px; }
.why-item-text strong { color: #fff; font-size: 0.92rem; font-weight: 700; letter-spacing: 0.04em; }
.why-item-text p { color: #b6c2d8; font-size: 0.88rem; line-height: 1.55; margin: 0; }

/* CONTACT / CTA */
.section-cta {
  background: linear-gradient(155deg, #fbf7eb 0%, #fff 60%);
  padding-block: clamp(80px, 11vw, 130px);
  position: relative; overflow: hidden;
}
.cta-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: start; }
.contact-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 0; overflow: hidden;
  box-shadow: var(--shadow); margin-top: 24px;
}
.contact-card-header {
  background: var(--ink); color: #fff; padding: 18px 26px;
  display: flex; align-items: center; justify-content: space-between;
}
.contact-card-header h4 {
  color: #fff; font-size: 0.94rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.contact-card-body { padding: 22px 26px 26px; }
.contact-card-body .arabic { font-family: var(--font-ar); color: var(--gold-2); font-weight: 600; margin-bottom: 18px; font-size: 1rem; }
.contact-card-rows { display: grid; gap: 12px; }
.contact-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row-ico {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--ltblue); color: var(--ink);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-row-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-row-text span { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-row-text strong { color: var(--ink); font-weight: 700; word-break: break-word; }
.contact-note {
  margin-top: 18px; padding: 12px 16px; background: var(--gold-soft);
  border-radius: var(--radius); font-size: 0.86rem; color: var(--ink); font-weight: 600;
  border: 1px dashed var(--gold);
}
.contact-stamp {
  position: absolute; bottom: 40px; right: 40px; opacity: 0.12; pointer-events: none;
  width: 220px;
}
html[data-lang="ar"] .contact-stamp { right: auto; left: 40px; }

.cta-form {
  background: #fff; padding: 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.cta-form h3 { grid-column: span 2; margin-bottom: 6px; color: var(--ink); }
.cta-form label { display: flex; flex-direction: column; gap: 6px; }
.cta-form label.full { grid-column: span 2; }
.cta-form span { font-size: 0.8rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.cta-form input, .cta-form select, .cta-form textarea {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; color: var(--ink); background: #fafaf6;
  transition: border-color .2s, background .2s;
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { outline: 0; border-color: var(--ink); background: #fff; }
.cta-form .btn { grid-column: span 2; justify-content: center; padding: 14px; }
.form-msg { grid-column: span 2; margin: 0; padding: 12px 16px; border-radius: 10px; background: var(--gold-soft); color: var(--ink); font-weight: 600; font-size: 0.9rem; display: none; }
.form-msg.show { display: block; }

/* Footer */
.footer { background: var(--ink); color: #b6c2d8; padding: 70px 0 28px; position: relative; overflow: hidden; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; align-items: start; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.foot-cols h5 { color: #fff; font-family: var(--font); font-size: 0.84rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.foot-cols a, .foot-cols span { display: block; padding: 4px 0; color: #b6c2d8; font-size: 0.92rem; transition: color .2s; }
.foot-cols a:hover { color: var(--gold); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.84rem; color: #93a0b9; flex-wrap: wrap; gap: 14px; }

/* Responsive */
@media (max-width: 1100px) {
  .why-icons { grid-template-columns: repeat(3, 1fr); }
  .values-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .hero-inner, .overview-grid, .cta-inner, .footer-inner, .cap-grid-wrap, .why-cols { grid-template-columns: 1fr; gap: 40px; }
  .vmv { grid-template-columns: 1fr; gap: 20px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .case-card { grid-template-columns: 1fr; }
  .case-photo { min-height: 180px; }
  .keyfacts, .cap-side { position: static; }
  .nav-links { display: none; position: absolute; top: 84px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 18px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .menu-btn { display: flex; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .hero { padding-top: 40px; padding-bottom: 60px; }
  .hero-collage { aspect-ratio: 1.2 / 1; max-width: 100%; }
  .cap-grid { grid-template-columns: 1fr; }
  .why-icons { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .cta-form { grid-template-columns: 1fr; padding: 24px; }
  .cta-form label.full, .cta-form h3, .cta-form .btn, .form-msg { grid-column: span 1; }
  .foot-cols { grid-template-columns: 1fr; }
  .nav-actions .btn { display: none; }
  .hero-location { flex-direction: column; gap: 14px; }
  .hero-title { font-size: 2.4rem; }
}
