/* ============================================================
   Nova tech — main stylesheet (Arabic-first, RTL/LTR aware)
   Palette: blue-turquoise gradient on deep navy + clean light
   ============================================================ */

:root {
  --teal: #14b8cf;
  --teal-dark: #0e93a8;
  --blue: #2469e0;
  --ink: #0d1b28;
  --navy: #0a1420;
  --navy-2: #0e1a29;
  --card-dark: #131e2d;
  --card-border: rgba(255, 255, 255, 0.07);
  --body: #46586a;
  --light: #f4f8fb;
  --white: #ffffff;
  --grad: linear-gradient(135deg, #22d3ee 0%, #14b8cf 35%, #2469e0 100%);
  --grad-soft: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(36, 105, 224, 0.12));
  --radius: 22px;
  --shadow: 0 18px 50px -18px rgba(10, 30, 50, 0.25);
  --font-ar: "Cairo", "Segoe UI", Tahoma, sans-serif;
  --font-en: "Manrope", "Cairo", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-ar);
  color: var(--body);
  background: var(--white);
  font-size: 16.5px;
  line-height: 1.85;
  overflow-x: hidden;
}
html[lang="en"] body { font-family: var(--font-en); line-height: 1.7; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 800; line-height: 1.35; }
.container { width: min(1200px, 92%); margin-inline: auto; }

::selection { background: var(--teal); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px; border-radius: 999px; font-weight: 700; font-size: 15.5px;
  border: 0; cursor: pointer; font-family: inherit; transition: all 0.3s ease;
}
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 10px 26px -10px rgba(20, 184, 207, 0.7); }
.btn-grad:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -10px rgba(20, 184, 207, 0.8); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.35); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--blue); color: #fff; }
.btn .arr { transition: transform 0.3s; display: inline-block; }
.btn:hover .arr { transform: translateX(-5px); }
html[dir="ltr"] .btn:hover .arr { transform: translateX(5px); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy); color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px; padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar a:hover { color: var(--teal); }
.topbar .tb-group { display: flex; gap: 22px; align-items: center; }
.topbar svg { width: 15px; height: 15px; vertical-align: -3px; margin-inline-end: 6px; fill: var(--teal); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 27, 40, 0.07);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 10px 30px -12px rgba(10, 30, 50, 0.18); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.logo img { height: 34px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block; padding: 10px 16px; font-weight: 700; color: var(--ink); font-size: 15.5px; border-radius: 10px;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--teal-dark); }
.nav-menu .caret { font-size: 10px; margin-inline-start: 5px; opacity: 0.6; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 14px); inset-inline-start: 50%; transform: translateX(50%) translateY(12px);
  width: min(880px, 92vw); background: #fff; border-radius: 18px; box-shadow: 0 30px 70px -25px rgba(10, 30, 50, 0.35);
  border: 1px solid rgba(13, 27, 40, 0.06);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 22px;
  opacity: 0; visibility: hidden; transition: all 0.3s ease; pointer-events: none;
}
html[dir="ltr"] .mega { transform: translateX(-50%) translateY(12px); }
.has-mega:hover .mega, .has-mega:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(50%) translateY(0);
}
html[dir="ltr"] .has-mega:hover .mega, html[dir="ltr"] .has-mega:focus-within .mega { transform: translateX(-50%) translateY(0); }
.mega-col h5 {
  font-size: 13px; letter-spacing: 0.5px; color: var(--teal-dark);
  padding: 4px 12px 10px; border-bottom: 1px dashed rgba(13, 27, 40, 0.1); margin-bottom: 8px;
}
.mega-col a {
  display: block; padding: 7px 12px; font-size: 14px; font-weight: 600; color: var(--body); border-radius: 9px;
}
.mega-col a:hover { background: var(--grad-soft); color: var(--teal-dark); padding-inline-start: 17px; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  font-weight: 800; font-size: 14px; color: var(--ink);
  border: 1.5px solid rgba(13, 27, 40, 0.15); padding: 7px 16px; border-radius: 999px; transition: all 0.3s;
}
.lang-switch:hover { border-color: var(--teal); color: var(--teal-dark); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 3px; transition: 0.3s; }

/* Mobile nav */
@media (max-width: 1020px) {
  .nav-menu, .nav-cta .btn { display: none; }
  .burger { display: block; }
  .mobile-nav {
    position: fixed; inset: 0; top: 0; background: var(--navy); z-index: 1200;
    padding: 26px 7%; overflow-y: auto; transform: translateY(-102%); transition: transform 0.4s ease;
  }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav .mn-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
  .mobile-nav .mn-head img { height: 30px; }
  .mn-close { background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; }
  .mobile-nav a { color: rgba(255, 255, 255, 0.85); display: block; padding: 12px 4px; font-size: 17px; font-weight: 700; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .mobile-nav a:hover { color: var(--teal); }
  .mn-sub { padding-inline-start: 16px; display: none; }
  .mn-sub.open { display: block; }
  .mn-sub a { font-size: 14.5px; font-weight: 600; opacity: 0.85; border-bottom: none; padding: 8px 4px; }
  .mn-group-label { color: var(--teal); font-size: 12.5px; margin-top: 10px; letter-spacing: 0.5px; }
}
@media (min-width: 1021px) { .mobile-nav { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
  padding: 110px 0 130px;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; pointer-events: none;
}
.hero::before { width: 480px; height: 480px; background: var(--teal); top: -160px; inset-inline-end: -120px; }
.hero::after { width: 420px; height: 420px; background: var(--blue); bottom: -180px; inset-inline-start: -110px; opacity: 0.3; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px; color: var(--teal); font-weight: 700; font-size: 14.5px;
  background: rgba(20, 184, 207, 0.12); border: 1px solid rgba(20, 184, 207, 0.35);
  padding: 7px 18px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(30px, 4.6vw, 52px); font-weight: 900; line-height: 1.4; margin-bottom: 20px; }
.hero h1 .grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { color: rgba(255, 255, 255, 0.72); font-size: 17.5px; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.h-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px; padding: 24px 20px; backdrop-filter: blur(6px);
  transition: transform 0.35s, border-color 0.35s;
}
.h-card:hover { transform: translateY(-6px); border-color: rgba(34, 211, 238, 0.5); }
.h-card .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--grad); display: grid; place-items: center; margin-bottom: 14px; }
.h-card .ic svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.7; }
.h-card h3 { color: #fff; font-size: 15.5px; font-weight: 700; line-height: 1.5; }

/* Stats band */
.stats-band { position: relative; z-index: 3; margin-top: -62px; }
.stats-inner {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.stat { text-align: center; padding: 30px 14px; border-inline-end: 1px solid rgba(13, 27, 40, 0.07); }
.stat:last-child { border-inline-end: 0; }
.stat b { font-size: 38px; font-weight: 900; color: var(--ink); display: block; line-height: 1.2; }
.stat b .plus { color: var(--teal); }
.stat span { font-size: 14px; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 95px 0; }
.section.tight { padding: 70px 0; }
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--teal-dark); font-weight: 800; font-size: 14px; letter-spacing: 0.5px; margin-bottom: 12px;
}
.kicker::before { content: ""; width: 34px; height: 2.5px; background: var(--grad); border-radius: 3px; }
.sec-head.center .kicker::after { content: ""; width: 34px; height: 2.5px; background: var(--grad); border-radius: 3px; }
.sec-head h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; }
.sec-head p { margin-top: 14px; font-size: 16.5px; }

/* Dark sections */
.dark { background: var(--navy); }
.dark .sec-head h2 { color: #fff; }
.dark .sec-head p { color: rgba(255, 255, 255, 0.65); }

/* ---------- Partner marquee ---------- */
.marquee-band { background: var(--light); padding: 34px 0; overflow: hidden; contain: paint; }
.marquee { display: flex; gap: 54px; width: max-content; animation: scrollX 45s linear infinite; }
.marquee-band:hover .marquee { animation-play-state: paused; }
.marquee span {
  font-weight: 800; font-size: 19px; color: #9fb2c2; white-space: nowrap; display: flex; align-items: center; gap: 54px;
}
.marquee span::after { content: "✦"; color: var(--teal); font-size: 13px; }
@keyframes scrollX { to { transform: translateX(50%); } }
html[dir="ltr"] .marquee { animation-name: scrollXltr; }
@keyframes scrollXltr { to { transform: translateX(-50%); } }

/* ---------- Service cards (reference style: dark, rounded, inner tile) ---------- */
.cat-label { display: flex; align-items: center; gap: 14px; margin: 46px 0 24px; }
.cat-label:first-of-type { margin-top: 0; }
.cat-label h3 { color: #fff; font-size: 21px; font-weight: 800; white-space: nowrap; }
.cat-label .line { height: 1px; flex: 1; background: linear-gradient(to var(--line-dir, left), rgba(34, 211, 238, 0.5), transparent); }
.cat-label .num { color: var(--teal); font-weight: 800; font-size: 14px; opacity: 0.9; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.s-card {
  background: var(--card-dark); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative; overflow: hidden;
}
.s-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s;
  background: radial-gradient(420px 180px at 20% 0%, rgba(34, 211, 238, 0.12), transparent 70%);
  pointer-events: none;
}
.s-card:hover { transform: translateY(-8px); border-color: rgba(34, 211, 238, 0.45); box-shadow: 0 24px 55px -22px rgba(6, 40, 61, 0.9); }
.s-card:hover::before { opacity: 1; }
.s-card .tile {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 15px; height: 92px; display: grid; place-items: center;
}
.s-card .tile .ic { width: 54px; height: 54px; border-radius: 15px; background: var(--grad); display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(20, 184, 207, 0.6); }
.s-card .tile svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.s-card h3 { color: #fff; font-size: 18px; font-weight: 800; }
.s-card h3 a:hover { color: var(--teal); }
.s-card p { color: rgba(255, 255, 255, 0.6); font-size: 14.5px; flex: 1; }
.s-card .more { color: var(--teal); font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; }
.s-card .more .arr { transition: transform 0.3s; }
.s-card:hover .more .arr { transform: translateX(-6px); }
html[dir="ltr"] .s-card:hover .more .arr { transform: translateX(6px); }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-item {
  background: #fff; border: 1px solid rgba(13, 27, 40, 0.07); border-radius: var(--radius);
  padding: 30px 26px; transition: all 0.35s; position: relative; top: 0;
}
.why-item:hover { top: -8px; box-shadow: var(--shadow); border-color: rgba(20, 184, 207, 0.4); }
.why-item .n {
  font-size: 14px; font-weight: 800; color: var(--teal-dark); background: var(--grad-soft);
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
}
.why-item h3 { font-size: 17.5px; margin-bottom: 10px; }
.why-item p { font-size: 14.5px; }

/* ---------- Sectors / clients ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  background: #fff; border: 1px solid rgba(13, 27, 40, 0.1); color: var(--ink);
  font-weight: 700; font-size: 14.5px; padding: 10px 22px; border-radius: 999px; transition: all 0.3s;
}
.chip:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-3px); }
.dark .chip { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.85); }

/* ---------- Vision / mission split ---------- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.vm-card {
  border-radius: var(--radius); padding: 38px 34px; background: var(--navy-2); color: #fff;
  border: 1px solid var(--card-border); position: relative; overflow: hidden;
}
.vm-card::after {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: var(--grad); opacity: 0.14; filter: blur(50px); bottom: -80px; inset-inline-end: -60px;
}
.vm-card h3 { color: var(--teal); font-size: 20px; margin-bottom: 12px; }
.vm-card p { color: rgba(255, 255, 255, 0.75); position: relative; z-index: 1; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad); border-radius: 26px; padding: 58px 8%; color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); font-weight: 900; margin-bottom: 12px; }
.cta-band p { opacity: 0.92; margin-bottom: 28px; font-size: 17px; }
.cta-band .btn { background: #fff; color: var(--ink); }
.cta-band .btn:hover { transform: translateY(-3px); }
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border: 2px solid rgba(255, 255, 255, 0.18); border-radius: 50%;
}
.cta-band::before { width: 280px; height: 280px; top: -140px; inset-inline-start: -80px; }
.cta-band::after { width: 340px; height: 340px; bottom: -190px; inset-inline-end: -100px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.65); padding: 80px 0 0; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer .f-logo img { height: 34px; margin-bottom: 18px; }
.footer h4 { color: #fff; font-size: 16.5px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ""; position: absolute; bottom: 0; inset-inline-start: 0; width: 32px; height: 2.5px; background: var(--grad); border-radius: 3px; }
.footer ul li { margin-bottom: 10px; }
.footer a:hover { color: var(--teal); }
.footer .f-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer .f-contact svg { width: 17px; height: 17px; fill: var(--teal); flex-shrink: 0; margin-top: 5px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 20px 0; text-align: center; font-size: 13.5px; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--navy); color: #fff; padding: 70px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--teal); filter: blur(110px); opacity: 0.25; top: -140px; inset-inline-end: -80px; }
.page-hero h1 { color: #fff; font-size: clamp(26px, 3.6vw, 42px); font-weight: 900; position: relative; }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-top: 14px; position: relative; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { opacity: 0.5; }

/* ---------- Service detail ---------- */
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.svc-body .lead-tile {
  background: var(--navy); border-radius: var(--radius); padding: 34px 32px; color: #fff; margin-bottom: 34px;
  border: 1px solid var(--card-border); position: relative; overflow: hidden;
}
.svc-body .lead-tile::after { content: ""; position: absolute; width: 240px; height: 240px; background: var(--grad); opacity: 0.15; filter: blur(60px); border-radius: 50%; top: -80px; inset-inline-end: -60px; }
.svc-body .lead-tile .ic { width: 62px; height: 62px; border-radius: 17px; background: var(--grad); display: grid; place-items: center; margin-bottom: 18px; }
.svc-body .lead-tile .ic svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc-body .lead-tile p { color: rgba(255, 255, 255, 0.78); font-size: 16.5px; position: relative; z-index: 1; }
.svc-body h2 { font-size: 24px; margin: 34px 0 18px; }
.svc-body > p { margin-bottom: 16px; }
.feat-list { display: grid; gap: 12px; margin-top: 8px; }
.feat-list li {
  background: var(--light); border: 1px solid rgba(13, 27, 40, 0.06); border-radius: 14px;
  padding: 14px 18px; display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); font-size: 15px;
  transition: all 0.3s;
}
.feat-list li:hover { border-color: rgba(20, 184, 207, 0.5); transform: translateX(-4px); }
html[dir="ltr"] .feat-list li:hover { transform: translateX(4px); }
.feat-list .tick {
  width: 22px; height: 22px; border-radius: 7px; background: var(--grad); flex-shrink: 0; margin-top: 5px;
  display: grid; place-items: center;
}
.feat-list .tick svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 3; fill: none; }

.svc-aside { position: sticky; top: 100px; display: grid; gap: 22px; }
.aside-box { background: var(--light); border-radius: 18px; padding: 26px 24px; border: 1px solid rgba(13, 27, 40, 0.06); }
.aside-box h3 { font-size: 17px; margin-bottom: 16px; }
.aside-box ul li { margin-bottom: 4px; }
.aside-box ul a {
  display: flex; justify-content: space-between; align-items: center; padding: 9px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--body); background: #fff; border: 1px solid transparent; transition: all 0.25s;
}
.aside-box ul a:hover, .aside-box ul a.current { color: var(--teal-dark); border-color: rgba(20, 184, 207, 0.4); }
.aside-cta { background: var(--navy); color: #fff; border-radius: 18px; padding: 30px 26px; text-align: center; position: relative; overflow: hidden; }
.aside-cta::before { content: ""; position: absolute; width: 160px; height: 160px; background: var(--grad); opacity: 0.2; filter: blur(45px); border-radius: 50%; top: -50px; inset-inline-start: -40px; }
.aside-cta h3 { color: #fff; font-size: 18px; margin-bottom: 8px; position: relative; }
.aside-cta p { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin-bottom: 18px; position: relative; }

/* ---------- About ---------- */
.about-lead { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 22px; }
.about-cols { display: grid; gap: 16px; max-width: 900px; }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 10px; }
.sector-item {
  background: var(--card-dark); border: 1px solid var(--card-border); color: #fff; border-radius: 18px;
  padding: 26px 20px; text-align: center; font-weight: 700; transition: all 0.3s;
}
.sector-item:hover { border-color: rgba(34, 211, 238, 0.5); transform: translateY(-5px); }
.sector-item .ic { width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 13px; background: var(--grad); display: grid; place-items: center; }
.sector-item svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.7; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.ci-item {
  display: flex; gap: 16px; align-items: flex-start; background: var(--light); border-radius: 16px; padding: 20px 22px;
  border: 1px solid rgba(13, 27, 40, 0.06);
}
.ci-item .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--grad); display: grid; place-items: center; flex-shrink: 0; }
.ci-item svg { width: 22px; height: 22px; fill: #fff; }
.ci-item h4 { font-size: 15.5px; margin-bottom: 4px; }
.ci-item p, .ci-item a { font-size: 14.5px; direction: ltr; unicode-bidi: embed; }
.ci-item a:hover { color: var(--teal-dark); }
.contact-form { background: var(--navy); border-radius: var(--radius); padding: 38px 34px; }
.contact-form h3 { color: #fff; margin-bottom: 20px; font-size: 20px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px; padding: 13px 16px; color: #fff; font-family: inherit; font-size: 15px; margin-bottom: 14px;
  transition: border-color 0.3s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal); }
.map-note { font-size: 13.5px; opacity: 0.75; margin-top: 10px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; } .reveal.d2 { transition-delay: 0.2s; } .reveal.d3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-inline-end: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(13, 27, 40, 0.07); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 110px; }
  .hero-visual { grid-template-columns: 1fr 1fr; gap: 12px; }
  .section { padding: 65px 0; }
  .contact-form .row { grid-template-columns: 1fr; }
}
