﻿:root {
  --bg: #0a1628;
  --bg-2: #0f2247;
  --text: #ffffff;
  --primary: #2563eb;
  --primary-2: #60a5fa;
  --gold: #d4a853;
  --muted: rgba(255, 255, 255, 0.62);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "Tajawal", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 55;
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 128px 0;
}

.head {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  margin: 0 0 24px;
  color: #0a1628;
  font-size: clamp(36px, 4.6vw, 52px);
  line-height: 1.15;
  font-weight: 800;
}

.section-title-light {
  color: #fff;
}

.section-sub {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(71, 85, 105, 0.9);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.8;
}

.section-sub-light {
  color: rgba(255, 255, 255, 0.62);
}

.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.pill-blue {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
}

.pill-gold {
  color: var(--gold);
  background: rgba(212, 168, 83, 0.12);
}

.pill-gold-dark {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

.btn-soft {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn-soft:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-wa {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  font-size: 15.3px;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.22);
}

.btn-wa:hover {
  transform: translateY(-2px);
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #0a1628;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-box {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45), 0 14px 32px rgba(2, 6, 23, 0.24);
  animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes loaderPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  }
  50% {
    box-shadow: 0 0 0 22px rgba(37, 99, 235, 0);
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #091327;
}
::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--gold));
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  color: #0a1628;
  border-bottom-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.nav-row {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  padding: 4px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-weight: 900;
  font-size: 18px;
}

.nav:not(.scrolled) .brand-name {
  color: #fff;
}

.nav.scrolled .brand-mark {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.22);
}

.nav.scrolled .brand-name {
  color: #0a1628;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease;
}

.nav:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.72);
}

.nav.scrolled .nav-links a {
  color: #64748b;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  min-width: 108px;
  height: 46px;
  padding: 0 14px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.burger-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.burger-btn span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 3px;
}

.nav.scrolled .burger-btn {
  border-color: #e2e8f0;
  background: #f1f5f9;
}

.nav.scrolled .burger-btn span {
  background: #0a1628;
}

.lang-icon {
  display: inline-flex;
  align-items: center;
  opacity: 0.92;
}

.lang-svg {
  width: 16px;
  height: 16px;
}

.nav-actions .btn-primary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  border-radius: 12px;
  height: 46px;
  min-width: 126px;
  font-size: 14px;
}

.nav-actions .btn-primary:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  transform: none;
}

.nav.scrolled .lang-btn {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #0a1628;
}

.nav.scrolled .lang-btn:hover {
  background: #e2e8f0;
}

.nav.scrolled .nav-actions .btn-primary {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.nav.scrolled .nav-actions .btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  border-radius: 0;
  background: #0a1628;
  color: #fff;
  border: 0;
  box-shadow: none;
  padding: 96px 24px 24px;
  display: none;
  z-index: 40;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 6px;
  border-radius: 0;
  font-weight: 900;
  font-size: clamp(22px, 7.2vw, 30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
}

.mobile-menu a:hover {
  background: transparent;
  color: #fff;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 20px;
  border-radius: 16px;
  font-size: 18px;
  padding: 16px 18px;
  border-bottom: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 620px at 50% 46%, rgba(73, 120, 212, 0.2), transparent 70%),
    linear-gradient(135deg, #0a1628 0%, #0f2247 50%, #0a1628 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255, 255, 255, 0.45) 0.55px, transparent 0.55px);
  background-size: 40px 40px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.2;
  pointer-events: none;
}

.hero-orb-blue {
  width: 620px;
  height: 620px;
  inset-inline-start: 10%;
  top: 12%;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  animation: pulse 9s ease-in-out infinite;
}

.hero-orb-gold {
  width: 440px;
  height: 440px;
  inset-inline-end: 16%;
  bottom: 18%;
  background: radial-gradient(circle, #d4a853 0%, transparent 70%);
  animation: pulse 8.2s ease-in-out infinite;
}

.hero-center-glow {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(980px, 78vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 166, 255, 0.26) 0%, rgba(60, 97, 171, 0.12) 42%, rgba(10, 25, 51, 0) 74%);
  filter: blur(10px);
  pointer-events: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

.float-icons {
  position: absolute;
  inset: 0;
}

.float-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(2, 8, 22, 0.24);
  backdrop-filter: blur(10px);
  animation: none;
  opacity: 0.26;
  filter: saturate(0.95);
  will-change: transform, opacity;
}

.float-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.fi1 { top: 12%; left: 9%; color: #2f7dff; }
.fi2 { top: 18%; right: 13%; color: #f7c04a; }
.fi3 { top: 58%; left: 7%; color: #56a2ff; }
.fi4 { top: 73%; right: 11%; color: #2f7dff; }
.fi5 { top: 34%; left: 4%; color: #f7c04a; }
.fi6 { top: 47%; right: 8%; color: #ba6cff; }
.fi7 { top: 24%; left: 16%; color: #3f7df2; }
.fi8 { top: 63%; right: 19%; color: #1abf7a; }
.fi9 { top: 42%; right: 22%; color: #c55cf5; }
.fi10 { top: 84%; right: 24%; color: #2f7dff; }
.fi11 { top: 76%; left: 17%; color: #3f8fff; }
.fi12 { top: 27%; right: 27%; color: #f7c04a; }
.fi13 { top: 66%; left: 23%; color: #1abf7a; }
.fi14 { top: 50%; left: 11%; color: #b26eff; }
.fi15 { top: 88%; right: 12%; color: #4a85ff; }
.fi16 { top: 14%; left: 24%; color: #8f6bff; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1280px;
  transform: translateY(-12px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(8px);
}

.hero-title {
  margin: 22px 0 0;
  font-size: clamp(34px, 6.8vw, 78px);
  line-height: 1.02;
  font-weight: 800;
}

.grad-text {
  color: transparent;
  background: linear-gradient(90deg, #d5b061 0%, #7ea7df 45%, #3d80ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-line {
  display: block;
}

.hero-line-1 {
  color: #ffffff;
}

html[dir="rtl"] .hero-title {
  line-height: 1.13;
}

html[dir="rtl"] .hero-line-2 {
  padding-bottom: 0.2em;
}

.hero-desc {
  max-width: 720px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.75;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 224px;
  min-height: 56px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 32px;
}

.hero-actions .btn-primary {
  background: #2f6ff1;
  border-color: #2f6ff1;
  box-shadow: 0 14px 34px rgba(47, 111, 241, 0.3);
}

.hero-actions .btn-primary:hover {
  background: #245fe0;
  border-color: #245fe0;
  box-shadow: 0 18px 40px rgba(47, 111, 241, 0.35);
}

.hero-actions .btn-soft {
  background: rgba(17, 39, 77, 0.74);
  border-color: rgba(142, 167, 214, 0.35);
}

.hero-actions .btn-soft:hover {
  background: rgba(27, 53, 99, 0.88);
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(180, 203, 241, 0.56);
  animation: hintBounce 1.6s ease-in-out infinite;
}

.scroll-hint svg {
  width: 34px;
  height: 34px;
  display: block;
}

@keyframes hintBounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

/* Stats */
.stats-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  text-align: center;
  border-radius: 22px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
  transition: 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.3);
}

.stat-icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 20.4px;
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.stat-number {
  margin: 10px 0 4px;
  font-size: clamp(22.1px, 2.4vw, 28.9px);
  font-weight: 900;
}

.stat-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11.05px;
  font-weight: 700;
}

/* Services */
.services-section {
  background: #f8fafc;
  color: #0a1628;
}

.services-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 18px;
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-item {
  width: 100%;
  text-align: start;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: 0.2s ease;
}

.service-item:hover {
  transform: translateY(-2px);
}

.service-item.active {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.25);
}

.service-item-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 17px;
  background: rgba(37, 99, 235, 0.1);
}

.service-title {
  margin: 0;
  font-weight: 900;
  font-size: 16px;
  color: #0a1628;
}

.service-tag {
  margin-top: 5px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.service-chevron {
  margin-inline-start: auto;
  color: rgba(10, 22, 40, 0.45);
  font-size: 17px;
  font-weight: 900;
}

.service-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(37, 99, 235, 0.08));
  min-height: 430px;
}

.service-panel-bg {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(220px 220px at 20% 18%, rgba(37, 99, 235, 0.2), transparent 62%),
    radial-gradient(260px 260px at 84% 72%, rgba(212, 168, 83, 0.18), transparent 64%);
  opacity: 0.9;
}

.service-panel-content {
  position: relative;
  z-index: 1;
  padding: 34px;
}

.service-big-icon {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 32.3px;
  margin-bottom: 18px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.service-panel h3 {
  margin: 0 0 10px;
  font-size: clamp(23.8px, 3.1vw, 32.3px);
  line-height: 1.2;
  font-weight: 900;
  color: #0a1628;
}

.service-panel p {
  margin: 0 0 18px;
  color: rgba(10, 22, 40, 0.65);
  font-size: 18px;
  line-height: 1.9;
}

.service-bullets {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.service-bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.service-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 99px;
  flex: 0 0 12px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
}

.service-bullet span:last-child {
  font-weight: 800;
  color: rgba(10, 22, 40, 0.76);
}

/* Sectors */
.sectors-section {
  background: #fff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sector-card {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(37, 99, 235, 0.02));
  padding: 22px;
  transition: 0.25s ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.sector-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 20.4px;
  background: rgba(37, 99, 235, 0.1);
}

.sector-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #0a1628;
  font-weight: 900;
}

.sector-card p {
  margin: 0;
  color: rgba(10, 22, 40, 0.63);
  line-height: 1.75;
  font-size: 16px;
}

/* About */
.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 2px 2px, #ffffff 1px, transparent 0);
  background-size: 38px 38px;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-card {
  padding: 32px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  transition: 0.28s ease;
}

.about-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.about-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 20.4px;
  margin-bottom: 14px;
  background: rgba(212, 168, 83, 0.12);
}

.about-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.about-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  font-size: 14px;
}

/* Contact */
.contact-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  color: #0a1628;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 10px;
  align-content: start;
  grid-auto-rows: min-content;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {

  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(148, 163, 184, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  color: #2563eb;
  flex: 0 0 52px;
}

.info-icon-blue { background: rgba(37, 99, 235, 0.10); color: #2563eb; }
.info-icon-green { background: rgba(16, 185, 129, 0.10); color: #10b981; }
.info-icon-gold { background: rgba(212, 168, 83, 0.12); color: #d4a853; }

.info-svg { width: 24px; height: 24px; }

.info-card h3 {
  margin: 0 0 4px;
  color: #0a1628;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.info-card > div:last-child{
  flex: 1;
  min-width: 0;
}

.info-card a,
.info-card span {
  display: block;
  color: rgba(71, 85, 105, 0.95);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.35;
  word-break: break-word;
}

.info-card a[dir="ltr"] {
  direction: ltr;
  unicode-bidi: plaintext;
}

html[dir="rtl"] .info-card > div:last-child,
html[dir="rtl"] .info-card a,
html[dir="rtl"] .info-card span {
  text-align: right;
}

html[dir="ltr"] .info-card > div:last-child,
html[dir="ltr"] .info-card a,
html[dir="ltr"] .info-card span {
  text-align: left;
}

html[dir="rtl"] .footer-contact-row[dir="ltr"] {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="ltr"] .footer-contact-row[dir="ltr"] {
  flex-direction: row;
  text-align: left;
}

.info-card a:hover {
  color: var(--primary);
}

.wa-card {
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(37, 211, 102, 0.2);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(255, 255, 255, 0.96), rgba(18, 140, 126, 0.05));
  position: relative;
  overflow: hidden;
}

.wa-card::before {
  content: "";
  position: absolute;
  width: 256px;
  height: 256px;
  top: -24px;
  right: -24px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.1);
  filter: blur(42px);
  opacity: 1;
}

.wa-card > * {
  position: relative;
  z-index: 1;
}

.wa-card::after {
  content: "";
  position: absolute;
  width: 192px;
  height: 192px;
  left: -20px;
  bottom: -20px;
  border-radius: 999px;
  background: rgba(18, 140, 126, 0.08);
  filter: blur(36px);
}

.wa-badge {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.28);
  margin-bottom: 24px;
}

.wa-card h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.8vw, 42px);
  color: #0a1628;
  font-weight: 900;
}

.wa-card p {
  margin: 0;
  color: rgba(71, 85, 105, 0.95);
  line-height: 1.8;
  font-size: 19px;
}

.wa-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* عمودين = سطرين */
  gap: 12px;
  margin: 20px 0 24px;
}

/* على الموبايل ترجع عمود واحد حتى ما تضيق */
@media (max-width: 640px){
  .wa-list{
    grid-template-columns: 1fr;
  }
}

.wa-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  font-weight: 600;
  color: rgba(51, 65, 85, 0.95);
}

.wa-features {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  color: rgba(71, 85, 105, 0.9);
  font-weight: 600;
}

.wa-features span {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: center;
  font-size: 12px;
}

/* Footer */
.footer {
  background: #0a1628;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 0 24px;
}

.footer-container {
  max-width: 1280px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.footer-col {
  min-height: auto;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer .brand-name {
  font-size: 18px;
  color: #fff;
}

.footer .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.footer-text {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-size: 14px;
  font-weight: 400;
}

.footer-en {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

.footer .footer-links-col h4,
.footer .footer-contact-col h4 {
  margin: 0 0 30px;
}

.footer h4 {
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #d4a853;
}

.footer-links-col .footer-links a {
  font-size: 14px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-row > span:last-child {
  text-align: inherit;
}

.footer-contact-row[dir="ltr"] > span:last-child {
  direction: ltr;
  unicode-bidi: plaintext;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  flex: 0 0 16px;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 400;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .float-icons {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-panel-content {
    padding: 26px;
  }

  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    gap: 10px;
    grid-auto-rows: min-content;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col {
    min-height: auto;
  }

  .footer .brand-name {
    font-size: 18px;
  }

  .footer-text {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .nav-row {
    height: 72px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-links {
    display: none;
  }

  .burger-btn {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-title {
    font-size: clamp(30px, 10vw, 46px);
  }

  .hero-content {
    transform: translateY(-6px);
  }

  .badge {
    font-size: 13px;
    padding: 8px 16px;
  }

  .hero-desc {
    font-size: clamp(13px, 3.9vw, 16px);
    line-height: 1.7;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    min-width: 200px;
    min-height: 54px;
    font-size: 16px;
    padding: 12px 20px;
  }

  .nav-actions .btn-primary,
  .lang-btn {
    min-width: 92px;
    height: 44px;
    font-size: 13px;
    border-radius: 12px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 96px 0;
  }

  .nav-actions > .btn-primary {
    display: none;
  }

  .contact-info {
    gap: 10px;
  }

  .info-card {
    gap: 10px;
    padding: 14px;
  }

  .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-basis: 48px;
  }

  .info-svg { width: 22px; height: 22px; }

  .info-card h3 {
    font-size: 15px;
  }

  .info-card a,
  .info-card span {
    font-size: 14px;
  }

  .wa-card {
    padding: 24px;
  }

  .wa-card h3 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .wa-card p {
    font-size: 16px;
  }

  .wa-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


/* Accessibility & polish */
.skip-link {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 2px solid var(--primary-2);
  outline-offset: 3px;
}

/* No-JS note */
.noscript {
  margin: 0;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 22, 40, 0.92);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-align: center;
}

/* Mobile menu top bar */
.mobile-menu-top {
  position: absolute;
  top: 18px;
  inset-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.mobile-menu-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}
.mobile-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

@supports not (backdrop-filter: blur(16px)) {
  .mobile-menu {
    background: #0a1628;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-orb { filter: blur(90px); }
}
