/* ===== Design Tokens ===== */
:root {
  --navy: #1B4F9E;
  --navy-deep: #103466;
  --navy-light: #2A66BF;
  --orange: #F37121;
  --orange-light: #ff8a3d;
  --orange-deep: #d85e10;
  --bg: #FAFBFC;
  --surface: #FFFFFF;
  --ink: #0F172A;
  --ink-2: #475569;
  --ink-3: #94A3B8;
  --line: #E2E8F0;
  --shadow-sm: 0 1px 2px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 31, 68, 0.12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
[dir="rtl"] body { font-family: 'Cairo', system-ui, sans-serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

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

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.95);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  bottom: -6px;
  inset-inline-end: -6px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 5px;
  transform: rotate(20deg);
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
  flex-shrink: 0;
}
.brand-name { font-weight: 800; letter-spacing: -.01em; font-size: 15px; line-height: 1.25; }
.brand-sub { font-size: 10px; color: var(--ink-3); font-weight: 500; display: block; margin-top: 2px; letter-spacing: .02em; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 8px 0;
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-actions { display: flex; gap: 12px; align-items: center; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: all .2s;
}
.lang-toggle:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.lang-toggle svg { width: 14px; height: 14px; }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: all .25s;
}
.menu-btn span::before,
.menu-btn span::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: all .25s;
}
.menu-btn span::before { transform: translateY(-6px); }
.menu-btn span::after { transform: translateY(6px); }
.menu-btn.open span { background: transparent; }
.menu-btn.open span::before { transform: rotate(45deg); }
.menu-btn.open span::after { transform: rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(255, 107, 26, 0.55);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(255, 107, 26, 0.65);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255,255,255,.5); }

.btn .arrow { transition: transform .25s; }
[dir="ltr"] .btn:hover .arrow { transform: translateX(4px); }
[dir="rtl"] .btn:hover .arrow { transform: translateX(-4px) scaleX(-1); }
[dir="rtl"] .btn .arrow { transform: scaleX(-1); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 100px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  inset-inline-end: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.35) 0%, transparent 60%);
  filter: blur(40px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  inset-inline-start: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(20, 48, 107, 0.6) 0%, transparent 65%);
  filter: blur(60px);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 107, 26, 0.15);
  border: 1px solid rgba(255, 107, 26, 0.4);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 26, 0.05); }
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--orange);
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: rgba(255, 107, 26, 0.25);
  border-radius: 4px;
  z-index: -1;
}
.hero p.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-trust .item small {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-trust .item strong {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 480px;
}
.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.hero-card-1 {
  top: 0;
  inset-inline-start: 0;
  width: 280px;
  z-index: 1;
  animation: float1 6s ease-in-out infinite;
}
.hero-card-2 {
  top: 170px;
  inset-inline-end: 0;
  width: 280px;
  z-index: 3;
  animation: float2 7s ease-in-out infinite;
}
.hero-card-3 {
  bottom: 0;
  inset-inline-start: 40px;
  width: 290px;
  z-index: 2;
  animation: float1 8s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 20px;
}
.mini-icon.orange { background: rgba(255, 107, 26, 0.2); color: var(--orange-light); }
.mini-icon.blue { background: rgba(120, 160, 255, 0.18); color: #93b4ff; }
.mini-icon.green { background: rgba(80, 220, 160, 0.15); color: #5ee0a4; }

.hero-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.hero-card p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }

.progress-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}
.progress-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.1);
  margin-top: 8px;
  overflow: hidden;
}
.progress-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
}

/* ===== Section base ===== */
section { scroll-margin-top: var(--header-h); }
.section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.015em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section h2 .accent { color: var(--orange); }
.section-sub {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #e3eaf7 100%);
  overflow: hidden;
  border: 1px solid rgba(27, 79, 158, 0.08);
  box-shadow: 0 20px 50px rgba(27, 79, 158, 0.08);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(27, 79, 158, 0.025) 0 2px, transparent 2px 14px);
}
.about-badge {
  position: absolute;
  bottom: 24px;
  inset-inline-start: 24px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 16px 40px -8px rgba(255,107,26,.5);
}
.about-badge strong { font-size: 32px; display: block; font-weight: 800; line-height: 1; }
.about-badge span { font-size: 13px; opacity: .9; }
.about-floating {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.about-floating .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18);}
.about-image-placeholder {
  position: absolute;
  inset: 24px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  padding: 20px;
}
.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-content h2 { text-align: start; margin-bottom: 20px; }
.about-content .section-tag { display: block; text-align: start; }
.about-content > p { font-size: 16px; color: var(--ink-2); line-height: 1.8; margin-bottom: 32px; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: all .3s;
}
.value:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 107, 26, 0.1);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.value-icon svg { width: 22px; height: 22px; }
.value h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* ===== Services ===== */
.services { background: var(--surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: all .35s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: inset-inline-start;
  transition: transform .4s ease;
}
.service-card:hover {
  background: var(--surface);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.service-card.featured::before { background: var(--orange); transform: scaleX(1); }
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,.75); }
.service-card.featured .service-features li { color: rgba(255,255,255,.85); }
.service-card.featured .service-features li::before { background: var(--orange); }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px -8px rgba(255,107,26,.4);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card.featured .service-icon {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
}
.service-tag {
  position: absolute;
  top: 22px;
  inset-inline-end: 22px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.service-card > p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  margin-bottom: 24px;
}
.service-features li {
  font-size: 14px;
  color: var(--ink-2);
  padding-block: 6px;
  position: relative;
  padding-inline-start: 24px;
}
.service-features li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 13px;
  width: 12px;
  height: 6px;
  border-inline-start: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
  background: transparent;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--orange);
}
.service-card.featured .service-link { color: var(--orange-light); }
.service-link .arrow { transition: transform .25s; }
.service-card:hover .service-link .arrow { transform: translateX(4px); }
[dir="rtl"] .service-link .arrow { transform: scaleX(-1); }
[dir="rtl"] .service-card:hover .service-link .arrow { transform: scaleX(-1) translateX(4px); }

/* ===== Stats ===== */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset-inline-end: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.18), transparent 70%);
  filter: blur(40px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.stat {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .3s;
}
.stat:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255, 107, 26, .4);
  transform: translateY(-4px);
}
.stat-num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  font-feature-settings: "tnum";
}
.stat-suffix {
  color: var(--orange);
  font-size: 32px;
  font-weight: 700;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}

/* ===== Testimonials ===== */
.testimonials { background: var(--bg); }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all .3s;
  position: relative;
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.t-quote {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--orange);
  opacity: .25;
  position: absolute;
  top: 18px;
  inset-inline-end: 24px;
}
.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #FFB42E;
}
.t-stars svg { width: 18px; height: 18px; fill: currentColor; }
.t-card p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.t-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.t-author-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.t-author-info span {
  font-size: 13px;
  color: var(--ink-3);
}

/* ===== Contact ===== */
.contact { background: var(--surface); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info h2 { text-align: start; margin-bottom: 16px; }
.contact-info .section-tag { display: block; text-align: start; }
.contact-info > p { color: var(--ink-2); margin-bottom: 32px; line-height: 1.7; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: all .25s;
}
.contact-list li:hover { border-color: var(--orange); transform: translateX(4px); }
[dir="rtl"] .contact-list li:hover { transform: translateX(-4px); }
.contact-list .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.contact-list span { color: var(--ink-2); font-size: 14px; }

.map-wrap {
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 68, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(10, 31, 68, .08), transparent 50%),
    radial-gradient(ellipse at 70% 40%, rgba(255, 107, 26, .08), transparent 50%);
}
.map-pin {
  position: absolute;
  top: 50%; inset-inline-start: 50%;
  transform: translate(-50%, -100%);
  color: var(--orange);
  filter: drop-shadow(0 8px 16px rgba(255,107,26,.4));
  animation: bounce 2s infinite;
}
[dir="rtl"] .map-pin { transform: translate(50%, -100%); }
.map-pin svg { width: 38px; height: 38px; fill: var(--orange); }
@keyframes bounce {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, -110%); }
}
[dir="rtl"] @keyframes bounce {
  0%, 100% { transform: translate(50%, -100%); }
  50% { transform: translate(50%, -110%); }
}

.contact-form {
  background: var(--bg);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  transition: all .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, .12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: none;
  background: rgba(27, 79, 158, 0.08);
  color: var(--navy);
}
.form-msg:not(:empty) { display: block; }
.form-msg.success {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  display: block;
}
.form-msg.error {
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
  display: block;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand .brand-logo { background: #fff; padding: 4px; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.65); }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -.005em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col li a {
  font-size: 14px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col li a:hover { color: var(--orange); }
[dir="ltr"] .footer-col li a:hover { transform: translateX(4px); }
[dir="rtl"] .footer-col li a:hover { transform: translateX(-4px); }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  transition: all .25s;
}
.socials a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.newsletter {
  display: flex;
  gap: 0;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  padding: 5px;
  border: 1px solid rgba(255,255,255,.1);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 10px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter button {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s;
}
.newsletter button:hover { background: var(--orange-deep); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a:hover { color: var(--orange); }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .35s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 380px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-card-1 { width: 240px; }
  .hero-card-2 { width: 220px; }
  .hero-card-3 { width: 250px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 460px; margin: 0 auto; width: 100%; aspect-ratio: 5/4; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .container { padding: 0 18px; }

  /* Header */
  .brand-sub { display: none; }
  .brand-name { font-size: 14px; line-height: 1.2; }
  .brand-mark { width: 36px; height: 36px; font-size: 16px; }
  .nav-actions { gap: 8px; }
  .lang-toggle { padding: 6px 10px; font-size: 12px; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    inset-inline-start: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border: 0; }
  .nav-links a { display: block; padding: 14px 0; font-size: 15px; }
  .menu-btn { display: inline-flex; }
  .nav-actions .btn-primary { display: none; }

  /* Sections */
  .section { padding: 56px 0; }
  .hero { padding: calc(var(--header-h) + 36px) 0 56px; }

  /* Typography */
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero .lead { font-size: 15px; line-height: 1.7; }
  .section h2 { font-size: clamp(24px, 6vw, 32px); }
  .section-sub { font-size: 15px; }

  /* Hero cards — switch from absolute to vertical stack */
  .hero-visual {
    height: auto !important;
    min-height: 0;
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
    position: relative;
  }
  .hero-card,
  .hero-card-1,
  .hero-card-2,
  .hero-card-3 {
    position: relative !important;
    width: 100% !important;
    inset: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    animation: none !important;
    transform: none !important;
    z-index: auto;
  }

  /* Trust badges */
  .hero-trust {
    gap: 18px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  .hero-trust .item strong { font-size: 18px; }
  .hero-trust .item small { font-size: 11px; }

  /* Hero CTA buttons */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { justify-content: center; }

  /* About */
  .about-visual { aspect-ratio: 4/4; max-width: 360px; }
  .about-badge { padding: 12px 16px; bottom: 16px; inset-inline-start: 16px; }
  .about-badge strong { font-size: 24px; }
  .about-badge span { font-size: 12px; }
  .about-floating { padding: 6px 12px; top: 16px; inset-inline-end: 16px; font-size: 12px; }

  /* Services / stats / testimonials */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 24px 22px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat { padding: 20px 12px; }
  .stat-num { font-size: clamp(28px, 9vw, 40px); }
  .stat-label { font-size: 13px; }
  .t-grid { grid-template-columns: 1fr; gap: 18px; }
  .t-card { padding: 24px 22px; }
  .values-grid { grid-template-columns: 1fr; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px 20px; }
  .contact-form h3 { font-size: 18px !important; }
  .contact-list li { padding: 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: clamp(26px, 8.5vw, 34px); }
  .hero .lead { font-size: 14px; }
  .hero-tag { font-size: 12px; padding: 6px 12px; }

  /* Header — shorter brand */
  .brand-name { font-size: 12.5px; }
  .brand-mark { width: 32px; height: 32px; }

  /* Trust badges in 2 columns */
  .hero-trust { gap: 12px 18px; }
  .hero-trust .item { flex: 1 1 calc(50% - 12px); }

  /* Stats single column */
  .stats-grid { grid-template-columns: 1fr; }

  /* Section heads tighter */
  .section-head { margin-bottom: 36px; }
}


/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg {
  width: 34px;
  height: 34px;
  display: block;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0,0,0,0.2);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
@media (max-width: 640px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    left: 18px;
  }
  .whatsapp-float svg { width: 30px; height: 30px; }
}
