.hero__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__brand {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  width: 100%;
  padding: 0;
  flex: 1;
  min-width: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
  filter: blur(120px);
  animation: hero-glow-left 32s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.hero::before {
  top: -26%;
  left: -8%;
  width: clamp(360px, 34vw, 560px);
  height: clamp(360px, 34vw, 560px);
  background:
    radial-gradient(circle at 30% 30%, rgba(102, 178, 255, 0.75), transparent 68%),
    radial-gradient(circle at 70% 70%, rgba(0, 209, 178, 0.55), transparent 76%);
}

.hero::after {
  bottom: -30%;
  right: -12%;
  width: clamp(420px, 38vw, 640px);
  height: clamp(420px, 38vw, 640px);
  background:
    radial-gradient(circle at 60% 30%, rgba(255, 112, 204, 0.65), transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(255, 192, 120, 0.55), transparent 80%);
  animation: hero-glow-right 36s ease-in-out infinite alternate;
  opacity: 0.5;
}

:root {
  --color-navy: #0f2747;
  --color-dark: #071023;
  --color-blue: #0789ff;
  --color-sky: #23c0ff;
  --color-white: #ffffff;
  --color-slate: #f1f5fb;
  --color-gray: #9aa4b2;
  --color-border: rgba(255, 255, 255, 0.2);
  --font-main: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-card: 0 24px 40px -20px rgba(7, 16, 35, 0.35);
  --shadow-soft: 0 16px 30px -18px rgba(7, 16, 35, 0.25);
  --max-width: min(92vw, 1400px);
  --animate-duration: 0.7s;
  --animate-stagger: 0.08s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-dark);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 55%, #eaf1ff 100%);
  line-height: 1.6;
  transition: opacity 0.6s ease, transform 0.6s ease;
  overflow-x: hidden;
  position: relative;
  min-width: 0;
  width: 100%;
}

.kinetic-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 18% 18%, rgba(13, 33, 71, 0.32), transparent 55%),
    radial-gradient(circle at 75% 24%, rgba(7, 137, 255, 0.24), transparent 65%),
    radial-gradient(circle at 52% 78%, rgba(35, 255, 214, 0.18), transparent 68%);
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-field {
    background:
      radial-gradient(circle at 22% 30%, rgba(13, 33, 71, 0.4), transparent 60%),
      radial-gradient(circle at 70% 70%, rgba(7, 137, 255, 0.22), transparent 70%);
  }
}


html.is-preload body {
  opacity: 0;
  transform: translateY(18px);
}

body.is-arabic {
  direction: rtl;
  font-family: var(--font-arabic);
  text-align: right;
}

body.is-arabic .hero__topbar {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  direction: ltr;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 4px 24px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.is-arabic .hero__brand {
  order: 1;
  justify-items: flex-end;
  justify-content: end;
  text-align: right;
  width: auto;
  flex: 1 1 auto;
  direction: rtl;
  margin-left: auto;
  margin-right: 0;
}

body.is-arabic .hero__nav {
  order: 2;
  direction: rtl;
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
}

body.is-arabic .hero__nav ul {
  justify-content: center;
  direction: rtl;
}

body.is-arabic .hero__nav a {
  font-size: 1.2rem;
  padding-inline: 16px;
}

body.is-arabic .hero__nav-login {
  display: flex;
  align-items: center;
  order: 203;
}

body.is-arabic .hero__nav-login .hero__login {
  margin: 0;
}

body.is-arabic .hero__nav-phone {
  display: flex;
  align-items: center;
  order: 202;
}

body.is-arabic .hero__nav-phone .hero__topbar-phone {
  margin: 0;
}

body.is-arabic .hero__nav-langs {
  display: flex;
  align-items: center;
  order: 201;
}

body.is-arabic .hero__nav-langs .hero__langs {
  margin: 0;
}

body.is-arabic .hero__brand-link {
  justify-content: flex-end;
}

body.is-arabic .hero__topbar-actions {
  order: 3;
  flex-direction: row;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
  margin-right: 0;
}

body.is-arabic .hero__langs {
  direction: ltr;
}

body.is-arabic .hero__phone {
  flex-direction: row-reverse;
  gap: 10px;
}

body.is-arabic .hero__content {
  direction: rtl;
}

body.is-arabic .hero__message,
body.is-arabic .hero__panels,
body.is-arabic .section__intro,
body.is-arabic .feature-card,
body.is-arabic .service-card,
body.is-arabic .solution-card,
body.is-arabic .team-card,
body.is-arabic .team-highlight,
body.is-arabic .callout,
body.is-arabic .callout__metrics,
body.is-arabic .callout-step,
body.is-arabic .faq,
body.is-arabic .branches__list,
body.is-arabic .clients,
body.is-arabic .footer__brand,
body.is-arabic .footer__links,
body.is-arabic .footer__badges,
body.is-arabic .footer__bottom {
  text-align: right;
}

body.is-arabic .footer__bottom {
  text-align: center;
}

body.is-arabic .section__intro p,
body.is-arabic .feature-card__content p,
body.is-arabic .service-card p,
body.is-arabic .solution-card p,
body.is-arabic .hero-card p,
body.is-arabic .callout__content p,
body.is-arabic .callout-step p,
body.is-arabic .callout__footnote,
body.is-arabic .team-card p,
body.is-arabic .team-highlight p,
body.is-arabic .stat__label,
body.is-arabic .faq p,
body.is-arabic .branches__list li,
body.is-arabic .clients-grid__header p,
body.is-arabic .footer__brand p,
body.is-arabic .footer__links a,
body.is-arabic .footer__bottom p {
  font-size: 1.05rem;
  line-height: 1.9;
}

body.is-arabic .service-card p,
body.is-arabic .solution-card p {
  font-size: 1.02rem;
}

body.is-arabic .feature-card {
  justify-items: end;
}

body.is-arabic .hero-card__label {
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

body.is-arabic .hero-card p {
  font-size: 1.06rem;
}

body.is-arabic .feature-card::after {
  left: 28px;
  right: auto;
}

body.is-arabic .team-card::after {
  left: 28px;
  right: auto;
}

body.is-arabic .team-highlight::before {
  left: auto;
  right: 38px;
  content: "\201D";
}

body.is-arabic .team-highlight::after {
  right: auto;
  left: 40px;
  content: "\201C";
}

body.is-arabic .callout__timeline {
  padding-left: 0;
  padding-right: 18px;
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

body.is-arabic .callout-step {
  grid-template-columns: 1fr auto;
}

body.is-arabic .callout-step__badge {
  order: 2;
}

body.is-arabic .service-card__header {
  flex-direction: row-reverse;
}

body.is-arabic .solution-card__content {
  text-align: right;
}

body.is-arabic .hero__actions {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

body.is-arabic .hero__nav ul {
  justify-content: flex-end;
}

body.is-arabic .faq {
  direction: rtl;
}

body.is-arabic .faq details {
  text-align: right;
}

body.is-arabic .faq summary {
  flex-direction: row-reverse;
  justify-content: space-between;
  text-align: right;
  padding-left: 6px;
  padding-right: 0;
  direction: rtl;
  gap: 18px;
  font-size: 1.12rem;
}

body.is-arabic .faq summary::after {
  margin: 0;
}

body.is-arabic .faq p {
  text-align: right;
  direction: rtl;
}

body.is-arabic .clients-group__logos {
  direction: rtl;
}

body.is-arabic .client-logo {
  text-align: right;
}

body.is-arabic .badge-grid {
  justify-items: end;
}

body.is-arabic .hero__menu-toggle {
  flex-direction: row-reverse;
}

body.is-arabic .footer__links ul {
  text-align: right;
}

body.is-arabic .footer__social {
  justify-content: flex-end;
  justify-items: end;
}

body.is-arabic .back-to-top {
  right: auto;
  left: 24px;
}

body.is-arabic .clients__header {
  align-items: flex-end;
  text-align: right;
}

body.is-arabic .branch-pill {
  flex-direction: row-reverse;
}

body.is-arabic .branch-pill__label {
  text-align: right;
}

body.is-arabic .branch-pill__chevron {
  transform: scaleX(-1);
}

body.is-arabic .branch-pill:hover .branch-pill__chevron,
body.is-arabic .branch-pill.branch-pill--active .branch-pill__chevron {
  transform: scaleX(-1) translateX(-4px);
}

body.is-arabic .faq summary {
  flex-direction: row-reverse;
  justify-content: flex-start;
  text-align: right;
  padding-left: 6px;
  padding-right: 0;
  direction: rtl;
}

body.is-arabic .faq summary::after {
  margin-right: auto;
  margin-left: 0;
}

body.is-arabic .faq p {
  text-align: right;
  direction: rtl;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-blue), var(--color-sky));
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px -18px rgba(7, 16, 35, 0.35);
}

.btn--soft {
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.18), rgba(35, 192, 255, 0.18));
  color: #063072;
  border: 1px solid rgba(7, 137, 255, 0.26);
  box-shadow: 0 22px 44px -28px rgba(7, 16, 35, 0.48);
}

.btn--soft:hover,
.btn--soft:focus-visible {
  box-shadow: 0 28px 52px -26px rgba(7, 16, 35, 0.54);
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(16, 35, 59, 0.18);
  color: var(--color-dark);
  box-shadow: none;
}

.hero .btn--outline:hover,
.hero .btn--outline:focus-visible {
  background: rgba(7, 137, 255, 0.12);
  border-color: rgba(7, 137, 255, 0.25);
  color: var(--color-dark);
}

.btn--small {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  background: rgba(7, 137, 255, 0.12);
  border: 1px solid rgba(7, 137, 255, 0.2);
  color: var(--color-dark);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: transparent;
  color: var(--color-dark);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
  filter: blur(110px);
}

.hero::before {
  top: -140px;
  left: -80px;
  width: clamp(320px, 30vw, 520px);
  height: clamp(320px, 30vw, 520px);
  background: radial-gradient(circle, rgba(120, 177, 255, 0.35), transparent 70%);
}

.hero::after {
  bottom: -160px;
  right: -90px;
  width: clamp(320px, 30vw, 520px);
  height: clamp(320px, 30vw, 520px);
  background: radial-gradient(circle, rgba(187, 211, 255, 0.3), transparent 72%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.7) 0%, transparent 45%),
    radial-gradient(circle at 82% 18%, rgba(173, 208, 255, 0.2) 0%, transparent 55%);
  opacity: 0.6;
}

.hero__topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: clamp(10px, 1.5vh, 16px) clamp(32px, 6vw, 64px);
  font-size: 0.96rem;
  color: var(--color-dark);
  font-weight: 500;
  flex-wrap: nowrap;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 
    0 2px 0 rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 16px 64px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
}

.hero__topbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(7, 137, 255, 0.4) 20%, 
    rgba(35, 192, 255, 0.5) 50%, 
    rgba(7, 137, 255, 0.4) 80%, 
    transparent 100%);
  opacity: 0.7;
  animation: shimmer 3s ease-in-out infinite;
}

.hero__topbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(7, 137, 255, 0.2), 
    rgba(35, 192, 255, 0.2), 
    transparent);
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(-100%);
  }
  50% {
    opacity: 0.8;
    transform: translateX(100%);
  }
}

.hero__topbar a {
  color: inherit;
  transition: color 0.2s ease;
}

.hero__topbar a:hover,
.hero__topbar a:focus-visible {
  color: var(--color-blue);
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #0b1c37;
  font-size: 0.95rem;
}

.hero__phone-number {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: inherit;
  position: relative;
}

.hero__message h1 {
  font-size: clamp(2.9rem, 2.6vw + 1.9rem, 4.3rem);
  margin-bottom: 20px;
  line-height: 1.1;
  color: #0b1c37;
}

.hero__message p {
  color: #49546a;
  max-width: 560px;
  margin-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__message {
  max-width: 680px;
  min-width: 0;
}

.hero__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  flex-wrap: wrap;
  flex-shrink: 1;
  min-width: 0;
}

.hero__nav a {
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 12px;
  color: #2a2a2a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.9rem;
  position: relative;
  letter-spacing: 0.01em;
  overflow: hidden;
}

.hero__nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.12), rgba(35, 192, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
  transform: scale(0.9);
}

.hero__nav a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-blue), var(--color-sky), transparent);
  border-radius: 3px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s ease;
  box-shadow: 0 0 12px rgba(7, 137, 255, 0.5), 0 2px 4px rgba(35, 192, 255, 0.3);
}

.hero__nav a:hover,
.hero__nav a:focus-visible {
  background: transparent;
  color: #0789ff;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(7, 137, 255, 0.2);
}

.hero__nav a:hover::before,
.hero__nav a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.hero__nav a:hover::after,
.hero__nav a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
  width: 80%;
}

.hero__nav a:focus-visible {
  outline: 2px solid rgba(7, 137, 255, 0.4);
  outline-offset: 3px;
}

.hero__dot {
  background: rgba(7, 137, 255, 0.3);
}

.hero__dot:focus-visible {
  outline: 3px solid rgba(7, 137, 255, 0.55);
}

.hero-card {
  position: relative;
  padding: 30px 28px;
  border-radius: 26px;
  border: 1px solid transparent;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 255, 0.88)) padding-box,
    linear-gradient(135deg, rgba(7, 137, 255, 0.4), rgba(81, 225, 196, 0.24), rgba(162, 91, 255, 0.34)) border-box;
  box-shadow: 0 32px 70px -40px rgba(9, 34, 78, 0.42);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.75;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.hero-card::before {
  width: 190px;
  height: 190px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(7, 137, 255, 0.28), transparent 68%);
}

.hero-card::after {
  width: 140px;
  height: 140px;
  bottom: -80px;
  left: -40px;
  background: radial-gradient(circle, rgba(81, 225, 196, 0.26), transparent 70%);
}

.hero-card:hover,
.hero-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 44px 88px -46px rgba(9, 34, 78, 0.5);
  border-color: rgba(7, 137, 255, 0.48);
}

.hero-card:hover::before,
.hero-card:hover::after,
.hero-card:focus-within::before,
.hero-card:focus-within::after {
  opacity: 1;
  transform: translate(12px, -8px);
}

.hero-card__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #023c74;
  z-index: 1;
}

.hero-card__label::after {
  content: "";
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 137, 255, 0.85), rgba(81, 225, 196, 0.75));
  opacity: 0.85;
}

.hero-card p {
  margin-top: 18px;
  font-size: 0.98rem;
  color: rgba(18, 35, 64, 0.82);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero__nav a {
  color: #000000;
}

.hero__nav a:hover,
.hero__nav a:focus-visible {
  background: rgba(7, 137, 255, 0.18);
  color: #05316f;
  transform: translateY(-1px);
}

.hero__nav a:focus-visible {
  outline: 2px solid rgba(7, 137, 255, 0.4);
  outline-offset: 3px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  margin: 0 auto;
  padding: clamp(32px, 5vh, 72px) clamp(32px, 7vw, 96px) clamp(32px, 6vh, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  box-sizing: border-box;
}

.hero__layout {
  display: grid;
  width: 100%;
  max-width: 1240px;
  grid-template-columns: minmax(0, 1.15fr) minmax(min(280px, 100%), 380px);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  min-width: 0;
  box-sizing: border-box;
}

.hero__content {
  display: grid;
  gap: clamp(28px, 3vw, 52px);
}

.hero__panels {
  display: grid;
  gap: 18px;
  align-self: stretch;
  grid-template-columns: 1fr;
  max-width: 360px;
  justify-self: stretch;
  min-width: 0;
  width: 100%;
}

.hero__brand {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  width: 100%;
  padding: 0;
  flex: 1;
}

.hero__brand-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  isolation: isolate;
  overflow: visible;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 14px;
}

.hero__brand-link::before {
  content: "";
  position: absolute;
  inset: -6px -10px;
  background: radial-gradient(circle at center, rgba(7, 137, 255, 0.12), rgba(35, 192, 255, 0.08), transparent 70%);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
  transform: scale(0.8);
}

.hero__brand-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.hero__brand-link:hover {
  transform: translateY(-2px) scale(1.03);
}

.hero__brand-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.hero__brand-link:hover::after {
  opacity: 1;
}

.hero__logo {
  display: block;
  height: clamp(48px, 6vw, 64px);
  width: auto;
  max-width: 240px;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.12));
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__brand-link:hover .hero__logo {
  filter: drop-shadow(0 6px 20px rgba(7, 137, 255, 0.3));
  transform: scale(1.05);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue), var(--color-sky));
  box-shadow: 0 22px 38px -18px rgba(7, 16, 35, 0.4);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top span[aria-hidden="true"] {
  font-size: 1.2rem;
  line-height: 1;
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top__text {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .back-to-top {
    padding: 12px;
    border-radius: 50%;
  }

  .back-to-top__text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 32px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 8px 24px rgba(7, 16, 35, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5), 0 12px 32px rgba(7, 16, 35, 0.3);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.85);
  outline-offset: 3px;
}

.whatsapp-float img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

body.is-arabic .whatsapp-float {
  left: auto;
  right: 24px;
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    left: 20px;
    bottom: 24px;
  }

  .whatsapp-float img {
    width: 52px;
    height: 52px;
  }

  body.is-arabic .whatsapp-float {
    left: auto;
    right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }
}

.hero__menu-checkbox {
  display: none;
}

.hero__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.hero__nav a {
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(0, 0, 0, 0.86);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__nav a:hover,
.hero__nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #03183d;
  transform: translateY(-1px);
}

.nav-link--muted {
  color: rgba(230, 236, 255, 0.55);
}

.hero__menu-toggle {
  display: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  gap: 10px;
  align-items: center;
  color: #2a2a2a;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero__menu-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.1), rgba(35, 192, 255, 0.08));
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.hero__menu-toggle:hover,
.hero__menu-toggle:focus-visible {
  border-color: rgba(7, 137, 255, 0.25);
  color: #0789ff;
  box-shadow: 0 4px 16px rgba(7, 137, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.hero__menu-toggle:hover::before,
.hero__menu-toggle:focus-visible::before {
  opacity: 1;
}

.hero__menu-icon {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero__menu-icon::before,
.hero__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.hero__menu-icon::before {
  top: -6px;
}

.hero__menu-icon::after {
  top: 6px;
}

.hero__content {
  display: grid;
  gap: clamp(28px, 3vw, 52px);
}

.hero__message h1 {
  font-size: clamp(2.9rem, 2.6vw + 1.9rem, 4.3rem);
  margin-bottom: 20px;
  line-height: 1.1;
  color: #0b1c37;
}

.hero__message p {
  color: #49546a;
  max-width: 560px;
  margin-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__message {
  max-width: 680px;
  min-width: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.hero__slider {
  position: relative;
  display: grid;
  gap: 0;
  min-height: clamp(220px, 26vh, 320px);
}

.hero__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s linear 0.6s;
  color: var(--color-dark);
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s;
}

.hero__slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-start;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(7, 137, 255, 0.28);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, width 0.3s ease;
}

.hero__dot:focus-visible {
  outline: 3px solid rgba(7, 137, 255, 0.45);
  outline-offset: 2px;
}

.hero__dot--active {
  width: 30px;
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.85), rgba(35, 192, 255, 0.85));
  transform: translateY(-2px);
}

.hero-card {
  padding: 30px 28px;
  border-radius: 26px;
  border: 1px solid transparent;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 255, 0.88)) padding-box,
    linear-gradient(135deg, rgba(7, 137, 255, 0.4), rgba(81, 225, 196, 0.24), rgba(162, 91, 255, 0.34)) border-box;
  box-shadow: 0 32px 70px -40px rgba(9, 34, 78, 0.42);
  backdrop-filter: blur(18px);
}

.hero-card__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #023c74;
}

.hero-card__label::after {
  content: "";
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 137, 255, 0.85), rgba(81, 225, 196, 0.75));
  opacity: 0.85;
}

.hero-card p {
  margin-top: 18px;
  font-size: 0.98rem;
  color: rgba(18, 35, 64, 0.82);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--color-blue);
}

.section {
  position: relative;
  padding: 120px 32px;
  overflow: hidden;
  isolation: isolate;
  --orb-color-a: rgba(7, 137, 255, 0.26);
  --orb-color-b: rgba(0, 209, 178, 0.28);
  --orb-size-a: clamp(260px, 32vw, 420px);
  --orb-size-b: clamp(200px, 28vw, 360px);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.section__cta {
  margin-top: clamp(24px, 4vw, 40px);
  display: flex;
  justify-content: center;
}

.section__cta--compact {
  margin-top: clamp(18px, 3vw, 28px);
}

.section__cta .btn {
  min-width: 200px;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: -1;
  animation: section-orb-drift 28s ease-in-out infinite alternate;
}

.section::before {
  top: -22%;
  left: -12%;
  width: var(--orb-size-a);
  height: var(--orb-size-a);
  background: radial-gradient(circle, var(--orb-color-a), rgba(255, 255, 255, 0));
}

.section::after {
  bottom: -18%;
  right: -14%;
  width: var(--orb-size-b);
  height: var(--orb-size-b);
  background: radial-gradient(circle, var(--orb-color-b), rgba(255, 255, 255, 0));
  animation-duration: 32s;
}

.section--light {
  background: transparent;
  --orb-color-a: rgba(188, 142, 255, 0.32);
  --orb-color-b: rgba(255, 137, 182, 0.28);
}

.section--services {
  --orb-color-a: rgba(35, 192, 255, 0.32);
  --orb-color-b: rgba(0, 209, 178, 0.3);
  --orb-size-a: clamp(320px, 36vw, 520px);
  --orb-size-b: clamp(240px, 30vw, 420px);
}

.section--solutions {
  --orb-color-a: rgba(255, 180, 120, 0.32);
  --orb-color-b: rgba(116, 88, 255, 0.28);
}

#team.section {
  --orb-color-a: rgba(255, 214, 102, 0.28);
  --orb-color-b: rgba(7, 137, 255, 0.25);
}

#faq.section {
  --orb-color-a: rgba(0, 209, 255, 0.24);
  --orb-color-b: rgba(188, 142, 255, 0.26);
}

.section__intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__intro h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 1.1rem + 1.5vw, 2.8rem);
  color: var(--color-dark);
}

.section__intro p {
  color: #4c5566;
}

.section--services {
  padding-top: 60px;
  padding-bottom: 140px;
  background: transparent;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
  counter-reset: feature-card;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  row-gap: 16px;
  align-items: flex-start;
  padding: 32px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 247, 255, 0.9));
  border: 1px solid rgba(7, 16, 35, 0.08);
  box-shadow: 0 32px 60px -40px rgba(7, 16, 35, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  counter-increment: feature-card;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -40%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(7, 137, 255, 0.25), transparent 70%);
  transform: rotate(18deg);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.feature-card::after {
  content: counter(feature-card, decimal-leading-zero);
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(7, 16, 35, 0.35);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -48px rgba(7, 16, 35, 0.55);
}

.feature-card:hover::before,
.feature-card:focus-within::before {
  transform: rotate(2deg) translate(12px, -8px);
  opacity: 0.9;
}

.feature-card:hover::after,
.feature-card:focus-within::after {
  color: rgba(7, 16, 35, 0.75);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.95), rgba(35, 192, 255, 0.75));
  box-shadow: 0 16px 26px -16px rgba(7, 137, 255, 0.7);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background-size: 180%;
  animation: feature-icon 8s ease infinite;
}

.feature-card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 26l4 4 12-12' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center/60% no-repeat;
}

.feature-card__icon::before {
  content: "";
  position: absolute;
  inset: 20%;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(0.5px);
}

.feature-card:nth-child(2) .feature-card__icon {
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.95), rgba(255, 214, 102, 0.85));
  box-shadow: 0 16px 26px -16px rgba(255, 126, 95, 0.7);
}

.feature-card:nth-child(3) .feature-card__icon {
  background: linear-gradient(135deg, rgba(114, 111, 249, 0.92), rgba(160, 121, 255, 0.85));
  box-shadow: 0 16px 26px -16px rgba(114, 111, 249, 0.7);
}

.feature-card:nth-child(4) .feature-card__icon {
  background: linear-gradient(135deg, rgba(0, 209, 178, 0.92), rgba(0, 197, 255, 0.85));
  box-shadow: 0 16px 26px -16px rgba(0, 209, 178, 0.7);
}

.feature-card__content h3 {
  margin: 0 0 10px;
  color: var(--color-dark);
  font-size: 1.25rem;
}

.feature-card__content p {
  color: #4c566a;
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.7;
}

.card-grid--services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 16, 35, 0.08);
  box-shadow: 0 40px 68px -44px rgba(7, 16, 35, 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 52px 92px -50px rgba(7, 16, 35, 0.7);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.service-card__icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: transparent;
  display: grid;
  place-items: center;
  box-shadow: none;
  position: relative;
  flex-shrink: 0;
}

.service-card__icon i {
  font-size: 1.6rem;
  color: var(--color-white);
}

.service-card__icon-symbol {
  display: inline-block;
  transition: transform 0.4s ease;
}

.service-card__icon-symbol--cctv {
  font-size: 1.8rem;
  transform: rotate(-32deg);
}

.service-card__icon-image,
.service-card__icon img {
  width: 60px;
  height: auto;
  display: block;
  object-fit: contain;
}

.service-card__icon::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(-45deg);
  opacity: 0.8;
}

.service-card__icon--image::after {
  display: none;
}

.service-card:nth-child(2) .service-card__icon {
  background: transparent;
  box-shadow: none;
}

.service-card:nth-child(3) .service-card__icon {
  background: transparent;
  box-shadow: none;
}

.service-card:nth-child(4) .service-card__icon {
  background: transparent;
  box-shadow: none;
}

.service-card:nth-child(5) .service-card__icon {
  background: transparent;
  box-shadow: none;
}

.service-card:nth-child(6) .service-card__icon {
  background: transparent;
  box-shadow: none;
}

.service-card:nth-child(7) .service-card__icon {
  background: transparent;
  box-shadow: none;
}

.service-card:nth-child(8) .service-card__icon {
  background: transparent;
  box-shadow: none;
}

.service-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--color-dark);
}

.service-card p {
  position: relative;
  margin: 0;
  color: #475069;
  font-size: 1rem;
  line-height: 1.7;
  z-index: 1;
}

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

.solution-card {
  position: relative;
  padding: 32px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(7, 16, 35, 0.07);
  box-shadow: 0 32px 60px -46px rgba(7, 16, 35, 0.55);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  gap: 18px;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.06), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover,
.solution-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 42px 88px -48px rgba(7, 16, 35, 0.65);
}

.solution-card:hover::after,
.solution-card:focus-within::after {
  opacity: 1;
}

.solution-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(114, 111, 249, 0.9), rgba(160, 121, 255, 0.78));
  position: relative;
  box-shadow: 0 18px 28px -18px rgba(114, 111, 249, 0.65);
  display: grid;
  place-items: center;
}

.solution-card:nth-child(4n + 2) .solution-card__icon {
  background: linear-gradient(135deg, rgba(7, 205, 255, 0.9), rgba(35, 255, 205, 0.78));
}

.solution-card:nth-child(4n + 3) .solution-card__icon {
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.92), rgba(255, 214, 102, 0.82));
}

.solution-card:nth-child(4n) .solution-card__icon {
  background: linear-gradient(135deg, rgba(0, 209, 178, 0.92), rgba(0, 197, 255, 0.82));
}

.solution-card__icon::after {
  display: none;
}

.solution-card__icon i {
  font-size: 1.2rem;
  color: #ffffff;
}

.solution-card__content h3 {
  margin: 0 0 10px;
  color: var(--color-dark);
  font-size: 1.15rem;
}

.solution-card__content p {
  margin: 0;
  color: #4b5668;
  font-size: 0.96rem;
  line-height: 1.65;
}

@keyframes feature-icon {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  position: relative;
  z-index: 1;
}

.stat {
  position: relative;
  overflow: hidden;
  padding: 36px 28px;
  border-radius: 30px;
  background: rgba(241, 247, 255, 0.88);
  border: 1px solid rgba(7, 137, 255, 0.12);
  box-shadow: 0 36px 70px -48px rgba(7, 16, 35, 0.55);
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.stat::before,
.stat::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.stat::before {
  width: 280px;
  height: 280px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(35, 192, 255, 0.35), transparent 70%);
}

.stat::after {
  width: 220px;
  height: 220px;
  bottom: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(7, 137, 255, 0.3), transparent 70%);
}

.stat:hover,
.stat:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 46px 90px -50px rgba(7, 16, 35, 0.6);
  border-color: rgba(7, 137, 255, 0.25);
}

.stat:hover::before,
.stat:hover::after,
.stat:focus-within::before,
.stat:focus-within::after {
  opacity: 0.75;
  transform: translate(6px, -6px);
}

.stat__value {
  display: block;
  font-size: clamp(2.1rem, 1.6rem + 1.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: transparent;
  background: linear-gradient(135deg, #021b4d, #054d8b);
  background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
}

.callout .stat__value {
  color: var(--color-white);
}

.callout .stat__label {
  color: rgba(255, 255, 255, 0.75);
}

.stat__label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(7, 19, 37, 0.65);
  letter-spacing: 0.01em;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

.team-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 52px;
  counter-reset: team-card;
  align-items: stretch;
  grid-auto-rows: minmax(240px, 1fr);
}

.team-grid::before {
  content: "";
  position: absolute;
  inset: -32px -42px -42px;
  background: radial-gradient(circle at top left, rgba(7, 137, 255, 0.18), transparent 70%),
    radial-gradient(circle at bottom right, rgba(0, 209, 178, 0.14), transparent 70%);
  z-index: -1;
}

.team-card {
  position: relative;
  padding: 36px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 35, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(237, 244, 255, 0.88));
  box-shadow: 0 32px 68px -44px rgba(7, 16, 35, 0.6);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  counter-increment: team-card;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: -55% 38% 40% -42%;
  background: radial-gradient(circle, rgba(7, 137, 255, 0.32), transparent 70%);
  transform: rotate(16deg);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.85;
}

.team-card::after {
  content: counter(team-card, decimal-leading-zero);
  position: absolute;
  top: 26px;
  right: 30px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: rgba(7, 16, 35, 0.5);
  text-transform: uppercase;
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px -46px rgba(7, 16, 35, 0.68);
  border-color: rgba(7, 137, 255, 0.28);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(228, 239, 255, 0.94));
}

.team-card:hover::before,
.team-card:focus-within::before {
  transform: rotate(0deg) translate(18px, -16px);
  opacity: 1;
}

.team-card h3 {
  margin: 0;
  font-size: 1.22rem;
  color: var(--color-dark);
}

.team-card p {
  margin: 0;
  color: #4a566f;
  font-size: 0.98rem;
  line-height: 1.75;
  flex: 1 1 auto;
  overflow-wrap: anywhere;
}

.callout {
  position: relative;
  margin-top: 72px;
  padding: 44px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(7, 16, 35, 0.95), rgba(7, 73, 137, 0.9));
  color: var(--color-white);
  box-shadow: 0 48px 90px -52px rgba(7, 16, 35, 0.8);
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 1.5fr) minmax(0, 1.25fr);
  gap: 32px;
  overflow: hidden;
}

.callout::before,
.callout::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.45;
  filter: blur(40px);
}

.callout::before {
  width: 360px;
  height: 360px;
  top: -200px;
  left: -140px;
  background: radial-gradient(circle, rgba(35, 192, 255, 0.55), transparent 70%);
}

.callout::after {
  width: 320px;
  height: 320px;
  bottom: -200px;
  right: -120px;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.45), transparent 70%);
}

.callout__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.callout__content h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 1.3rem + 1vw, 2.1rem);
}

.callout__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  max-width: 540px;
}

.callout__timeline {
  position: relative;
  display: grid;
  gap: 20px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.callout-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.callout-step__badge {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 26px -18px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.callout-step--active .callout-step__badge {
  background: linear-gradient(135deg, rgba(7, 205, 255, 0.95), rgba(35, 255, 205, 0.85));
  color: rgba(7, 16, 35, 0.92);
  transform: scale(1.05);
}

.callout-step h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.callout-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.6;
}

.callout__metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.callout__metrics > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px 18px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 48px -30px rgba(5, 14, 34, 0.65);
  text-align: center;
  backdrop-filter: blur(12px);
  min-height: 172px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.callout__metrics > div::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle, rgba(35, 192, 255, 0.32), transparent 70%);
  opacity: 0.45;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.callout__metrics > div:hover,
.callout__metrics > div:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 36px 72px -40px rgba(5, 14, 34, 0.72);
}

.callout__metrics > div:hover::before,
.callout__metrics > div:focus-within::before {
  opacity: 0.8;
  transform: translate(6px, -8px);
}

.callout__metrics .stat__label {
  color: rgba(255, 255, 255, 0.78);
}

.callout__footnote {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

.clients {
  position: relative;
  margin-top: 72px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 26px 60px -40px rgba(12, 46, 96, 0.18);
  border: 1px solid rgba(7, 16, 35, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(7, 137, 255, 0.12), rgba(57, 114, 255, 0.1)),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.5), transparent 60%),
    radial-gradient(circle at 85% 82%, rgba(171, 212, 255, 0.4), transparent 55%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.clients__header {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.clients__header h3 {
  font-size: clamp(1.6rem, 2vw, 1.9rem);
  margin: 0;
  color: #0b1f3a;
}

.clients__header p {
  margin: 0;
  color: rgba(11, 31, 58, 0.75);
}

.clients__showcase {
  display: grid;
  gap: clamp(32px, 4vw, 44px);
  position: relative;
  z-index: 1;
}

.clients-grid {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 18px 38px -26px rgba(7, 16, 35, 0.35);
  border: 1px solid rgba(7, 16, 35, 0.06);
  backdrop-filter: blur(10px);
  display: grid;
  gap: clamp(16px, 2.6vw, 24px);
  justify-items: center;
}

.clients-grid--highlight {
  background: inherit;
  box-shadow: 0 24px 50px -32px rgba(7, 16, 35, 0.32);
}

.clients-grid__header {
  display: grid;
  gap: 12px;
  text-align: center;
  justify-items: center;
  max-width: min(100%, 460px);
}

.clients-grid__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(11, 31, 58, 0.52);
}

.clients-grid__header h4 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  color: rgba(11, 31, 58, 0.94);
}

.clients-grid__header p {
  margin: 0;
  color: rgba(11, 31, 58, 0.68);
  max-width: 420px;
}

.clients-grid__cards {
  display: grid;
  grid-template-columns: repeat(8, minmax(68px, 1fr));
  gap: clamp(8px, 1.5vw, 18px);
  justify-items: center;
  align-items: center;
}

.clients-grid__cards--partners {
  grid-template-columns: repeat(8, minmax(68px, 1fr));
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4px, 1.4vw, 10px);
  transition: transform 0.35s ease;
}

.client-card:focus-visible {
  outline: none;
}

.client-card__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(96px, 8.5vw, 138px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), rgba(225, 236, 255, 0.18) 74%);
  box-shadow:
    0 22px 40px -32px rgba(7, 16, 35, 0.44);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.client-card:hover,
.client-card:focus-visible {
  transform: translateY(-6px) scale(1.03);
}

.client-card:hover .client-card__logo,
.client-card:focus-visible .client-card__logo {
  box-shadow: 0 30px 50px -34px rgba(7, 16, 35, 0.5);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.98), rgba(215, 233, 255, 0.18) 72%);
}

.clients-grid--partners {
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.08), rgba(35, 192, 255, 0.08));
  color: rgba(7, 24, 46, 0.94);
  box-shadow: 0 24px 50px -32px rgba(7, 16, 35, 0.34);
  border: 1px solid rgba(7, 137, 255, 0.16);
}

.clients-grid--partners .clients-grid__header p {
  color: rgba(7, 24, 46, 0.7);
}

.clients-grid--partners .btn--soft {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(7, 24, 46, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
}

.client-card--partner .client-card__logo {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.96), rgba(214, 232, 255, 0.18) 74%);
}

@media (max-width: 1280px) {
  .clients-grid__cards,
  .clients-grid__cards--partners {
    grid-template-columns: repeat(6, minmax(84px, 1fr));
  }
}

@media (max-width: 1120px) {
  .clients-grid__cards,
  .clients-grid__cards--partners {
    grid-template-columns: repeat(4, minmax(84px, 1fr));
  }
}

@media (max-width: 760px) {
  .clients-grid,
  .clients-grid--partners {
    padding: 20px;
    justify-items: stretch;
  }

  .clients-grid__header {
    text-align: left;
    justify-items: start;
    max-width: none;
  }

  .clients-grid__cards,
  .clients-grid__cards--partners {
    grid-template-columns: repeat(3, minmax(84px, 1fr));
  }
}

@media (max-width: 560px) {
  .clients-grid__cards,
  .clients-grid__cards--partners {
    grid-template-columns: repeat(2, minmax(84px, 1fr));
  }

  .client-card__logo {
    width: clamp(126px, 36vw, 153px);
  }
}

@media (max-width: 400px) {
  .clients-grid__cards,
  .clients-grid__cards--partners {
    grid-template-columns: minmax(0, 1fr);
  }

  .client-card__logo {
    width: clamp(120px, 54vw, 144px);
  }
}

@keyframes hero-glow-left {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.52;
  }
  40% {
    transform: translate3d(60px, -40px, 0) scale(1.08);
    opacity: 0.68;
  }
  100% {
    transform: translate3d(-40px, 30px, 0) scale(0.94);
    opacity: 0.5;
  }
}

@keyframes hero-glow-right {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.42;
  }
  45% {
    transform: translate3d(-40px, 30px, 0) scale(1.08);
    opacity: 0.58;
  }
  100% {
    transform: translate3d(50px, -40px, 0) scale(0.9);
    opacity: 0.38;
  }
}

@keyframes section-orb-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, -30px, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-30px, 24px, 0) scale(0.94);
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.team-highlight {
  position: relative;
  padding: 46px 54px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(7, 137, 255, 0.25), transparent 58%),
    radial-gradient(circle at bottom right, rgba(0, 209, 178, 0.22), transparent 55%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 137, 255, 0.12);
  box-shadow: 0 42px 88px -54px rgba(7, 16, 35, 0.5);
  font-weight: 500;
  font-size: 1.18rem;
  color: #1f2a3f;
  line-height: 1.9;
  overflow: hidden;
  isolation: isolate;
}

.team-highlight::before,
.team-highlight::after {
  position: absolute;
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(7, 137, 255, 0.24);
  font-weight: 600;
  pointer-events: none;
}

.team-highlight::before {
  content: "\201C";
  top: 20px;
  left: 38px;
}

.team-highlight::after {
  content: "\201D";
  bottom: 16px;
  right: 40px;
}

.team-highlight p {
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 940px;
}

/* About Us Section - Simple & Cool Design */
#about.section {
  --orb-color-a: rgba(138, 178, 255, 0.2);
  --orb-color-b: rgba(102, 192, 255, 0.18);
  padding-bottom: 60px;
}

.about-us {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.about-us__container {
  position: relative;
  padding: 48px 52px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(7, 137, 255, 0.12);
  box-shadow: 0 20px 60px -30px rgba(7, 16, 35, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-us__container:hover {
  box-shadow: 0 24px 70px -28px rgba(7, 16, 35, 0.25);
  transform: translateY(-1px);
}

.about-us__header {
  text-align: center;
  margin-bottom: 36px;
}

.about-us__header .eyebrow {
  margin-bottom: 10px;
  display: inline-block;
}

.about-us__header h2 {
  margin: 10px 0 0;
  font-size: clamp(2.2rem, 1.5rem + 2vw, 3.2rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-us__content {
  position: relative;
}

.about-us__text {
  max-width: 800px;
  margin: 0 auto;
}

.about-us__body {
  font-size: clamp(1.06rem, 1rem + 0.2vw, 1.18rem);
  line-height: 1.85;
  color: #2d3e52;
  margin: 0 0 32px;
  text-align: left;
  font-weight: 400;
}

.about-us__values {
  position: relative;
  padding: 32px 40px;
  border-radius: 20px;
  background: rgba(7, 137, 255, 0.04);
  border-left: 3px solid var(--color-blue);
  margin-top: 32px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.about-us__values:hover {
  background: rgba(7, 137, 255, 0.06);
  transform: translateX(2px);
}

.about-us__values-text {
  font-size: clamp(1rem, 0.96rem + 0.15vw, 1.1rem);
  line-height: 1.9;
  color: #364153;
  margin: 0;
  text-align: left;
  font-weight: 400;
}

.about-us__values-text strong {
  color: var(--color-blue);
  font-weight: 600;
}

body.is-arabic .about-us__body,
body.is-arabic .about-us__values-text {
  text-align: right;
}

body.is-arabic .about-us__values {
  border-left: none;
  border-right: 3px solid var(--color-blue);
}

body.is-arabic .about-us__values:hover {
  transform: translateX(-2px);
}

@media (max-width: 768px) {
  .about-us {
    margin: 56px auto;
    padding: 0 24px;
  }

  .about-us__container {
    padding: 40px 36px;
    border-radius: 20px;
  }

  .about-us__header {
    margin-bottom: 32px;
  }

  .about-us__header .eyebrow {
    margin-bottom: 8px;
  }

  .about-us__header h2 {
    margin: 8px 0 0;
  }

  .about-us__values {
    padding: 28px 32px;
    margin-top: 28px;
    border-radius: 18px;
  }

  .about-us__body {
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .about-us {
    margin: 40px auto;
    padding: 0 20px;
  }

  .about-us__container {
    padding: 36px 24px;
    border-radius: 18px;
  }

  .about-us__header {
    margin-bottom: 28px;
  }

  .about-us__header .eyebrow {
    margin-bottom: 8px;
  }

  .about-us__header h2 {
    margin: 8px 0 0;
  }

  .about-us__values {
    padding: 24px 28px;
    margin-top: 24px;
  }

  .about-us__body {
    margin-bottom: 24px;
  }
}

.faq {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq::before {
  content: "";
  position: absolute;
  inset: -36px -48px -48px;
  background: radial-gradient(circle at top right, rgba(7, 137, 255, 0.18), transparent 70%);
  z-index: -1;
}

.faq details {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  border: 1px solid rgba(7, 16, 35, 0.08);
  padding: 20px 26px;
  box-shadow: 0 22px 40px -28px rgba(7, 16, 35, 0.4);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq details::before {
  content: "";
  position: absolute;
  inset: -60% -20% 65% 60%;
  background: radial-gradient(circle, rgba(35, 192, 255, 0.22), transparent 70%);
  transform: rotate(-14deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.faq details[open]::before {
  opacity: 1;
}

.faq summary {
  position: relative;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-right: 6px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.95), rgba(35, 192, 255, 0.8));
  position: relative;
  flex-shrink: 0;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 2v8M2 6h8' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg) scale(1.05);
  background: linear-gradient(135deg, rgba(35, 192, 255, 0.8), rgba(7, 205, 255, 0.95));
}

.faq details[open] {
  border-color: rgba(7, 137, 255, 0.22);
  box-shadow: 0 26px 46px -32px rgba(7, 16, 35, 0.45);
}

.faq p {
  margin: 12px 0 0;
  color: #4b5668;
  line-height: 1.7;
}

.branches {
  position: relative;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.98) 0%, rgba(227, 239, 255, 0.94) 55%, rgba(248, 251, 255, 0.98) 100%);
  border-radius: 44px;
  padding: clamp(60px, 8vw, 84px) clamp(40px, 7vw, 72px) clamp(52px, 6vw, 76px);
  box-shadow: 0 52px 120px -64px rgba(9, 28, 66, 0.4);
  overflow: hidden;
}

.branches::before,
.branches::after {
  content: "";
  position: absolute;
  width: clamp(200px, 22vw, 360px);
  height: clamp(200px, 22vw, 360px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.42;
  filter: blur(80px);
}

.branches::before {
  top: -160px;
  left: -80px;
  background: radial-gradient(circle, rgba(7, 137, 255, 0.35), transparent 70%);
}

.branches::after {
  bottom: -160px;
  right: -60px;
  background: radial-gradient(circle, rgba(35, 192, 255, 0.28), transparent 72%);
}

.branches__map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: stretch;
  max-width: var(--max-width);
  margin: 0 auto;
  z-index: 1;
}

.branches__map-embed {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 42px 90px -58px rgba(7, 16, 35, 0.55);
  border: 1px solid rgba(7, 137, 255, 0.22);
  background: rgba(255, 255, 255, 0.95);
  min-height: 420px;
}

.branches__map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.branches__map-embed::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px dashed rgba(7, 137, 255, 0.22);
  pointer-events: none;
}

.branches__list {
  position: relative;
  padding: clamp(28px, 4vw, 38px);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 250, 255, 0.9) 100%);
  border: 1px solid rgba(7, 137, 255, 0.16);
  box-shadow: 0 40px 70px -52px rgba(7, 16, 35, 0.45);
  overflow: hidden;
}

.branches__list::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -80px;
  right: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 192, 255, 0.28), transparent 68%);
  filter: blur(28px);
  opacity: 0.7;
}

.branches__list ul {
  list-style: none;
  margin: clamp(20px, 3vw, 28px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.branch-pill {
  width: 100%;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(7, 16, 35, 0.12);
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 0.96rem;
  color: rgba(7, 16, 35, 0.76);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.branch-pill:hover,
.branch-pill:focus-visible {
  border-color: rgba(7, 137, 255, 0.35);
  box-shadow: 0 24px 44px -30px rgba(7, 16, 35, 0.48);
  transform: translateY(-2px);
  outline: none;
}

.branch-pill:focus-visible {
  box-shadow: 0 0 0 4px rgba(7, 137, 255, 0.26), 0 26px 48px -32px rgba(7, 16, 35, 0.5);
}

.branch-pill__icon,
.branch-pill__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.branch-pill__icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: rgba(7, 137, 255, 0.14);
  color: rgba(7, 137, 255, 0.9);
  font-size: 1.05rem;
}

.branch-pill__label {
  flex: 1;
  text-align: left;
}

.branch-pill__chevron {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: rgba(7, 16, 35, 0.35);
}

@media (max-width: 1024px) {
  .branches__map {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 32px);
    justify-items: stretch;
  }

  .branches__map-embed {
    min-height: 360px;
  }

  .branches__list {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .branches__list ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .branches__map-embed {
    min-height: 280px;
  }

  .branches__list {
    padding: clamp(22px, 6vw, 28px);
  }

  .branches__list ul {
    grid-template-columns: 1fr;
  }
}

.branch-pill:hover .branch-pill__icon,
.branch-pill:focus-visible .branch-pill__icon {
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.8), rgba(35, 192, 255, 0.78));
  color: #ffffff;
  transform: scale(1.05);
}

.branch-pill:hover .branch-pill__chevron,
.branch-pill:focus-visible .branch-pill__chevron {
  color: rgba(7, 137, 255, 0.8);
  transform: translateX(4px);
}

.branch-pill--active {
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.18), rgba(35, 192, 255, 0.16));
  border-color: rgba(7, 137, 255, 0.45);
  color: rgba(7, 16, 35, 0.9);
  box-shadow: 0 30px 56px -38px rgba(7, 16, 35, 0.55);
}

.branch-pill--active .branch-pill__icon {
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.92), rgba(35, 192, 255, 0.86));
  color: #ffffff;
}

.branch-pill--active .branch-pill__chevron {
  color: rgba(7, 137, 255, 0.82);
  transform: translateX(4px);
}

.branches__map-note {
  position: relative;
  margin: clamp(32px, 5vw, 44px) auto 0;
  max-width: 640px;
  text-align: center;
  font-weight: 500;
  color: #4a5b74;
  z-index: 1;
}

.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.86);
  padding: 80px 32px 40px;
}

.footer__content {
  max-width: var(--max-width);
  margin: 0 auto clamp(36px, 6vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 2.4fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 360px;
}

.footer__logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 26px 48px;
  min-width: 240px;
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 255, 0.92)),
    linear-gradient(120deg, rgba(201, 221, 255, 0.55), rgba(255, 255, 255, 0));
  box-shadow:
    0 28px 44px -30px rgba(12, 29, 62, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(196, 212, 255, 0.4);
  margin-bottom: 24px;
  overflow: hidden;
  isolation: isolate;
}

.footer__logo-wrap::before {
  content: "";
  position: absolute;
  inset: -18% -38%;
  background: radial-gradient(circle at 52% 28%, rgba(255, 255, 255, 0.85), transparent 72%);
  opacity: 0.85;
  filter: blur(18px);
  z-index: 0;
}

.footer__logo-wrap::after {
  content: "";
  position: absolute;
  inset: 10% 16%;
  border-radius: 26px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.75), transparent 68%);
  opacity: 0.82;
  z-index: 0;
}

.footer__logo-spotlight {
  position: absolute;
  inset: 12% 18%;
  background: radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.95), transparent 65%);
  opacity: 0.9;
  filter: blur(12px);
  z-index: 0;
}

.footer__logo {
  position: relative;
  z-index: 1;
  display: block;
  height: 64px;
  width: auto;
  margin: 0;
  filter: none;
}

@keyframes footerLogoSheen {
  0%,
  45% {
    transform: translateX(-70%) skewX(-16deg);
    opacity: 0;
  }
  52% {
    opacity: 0.55;
  }
  60% {
    transform: translateX(64%) skewX(-16deg);
    opacity: 0.22;
  }
  100% {
    transform: translateX(64%) skewX(-16deg);
    opacity: 0;
  }
}

.footer__contact {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

.footer__phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4.5vw, 52px);
}

.footer__links h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--color-white);
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.65);
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--color-white);
}

.footer__badges {
  max-width: var(--max-width);
  margin: 0 auto clamp(32px, 6vw, 48px);
  padding: clamp(16px, 4vw, 24px) clamp(24px, 6vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.accreditation-grid {
  /* display: grid;
  grid-template-columns: repeat(6, minmax(60px, 1fr)); */
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: 0;
}

.accreditation-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 5vw, 75px);
  height: clamp(60px, 5vw, 75px);
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.35s ease;
  margin: 16px 16px;
}

.accreditation-card img,
.client-card__logo img {
  display: block;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-sizing: border-box;
  padding: clamp(1px, 0.5vw, 3px);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(224, 237, 255, 0.8) 68%, rgba(205, 223, 255, 0.32) 100%);
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(7, 16, 35, 0.28));
  transition: transform 0.35s ease, filter 0.35s ease, background 0.35s ease;
}

.accreditation-card:hover,
.accreditation-card:focus-visible {
  transform: translateY(-6px) scale(1.03);
}

.accreditation-card:hover img,
.accreditation-card:focus-visible img,
.client-card:hover .client-card__logo img,
.client-card:focus-visible .client-card__logo img {
  transform: scale(1.06);
  filter: drop-shadow(0 16px 24px rgba(7, 16, 35, 0.42));
  background:
    radial-gradient(circle at 28% 32%, rgba(255, 255, 255, 0.98), rgba(214, 233, 255, 0.82) 68%, rgba(180, 210, 255, 0.4) 100%);
}

.accreditation-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.32);
  outline-offset: 6px;
}

@media (max-width: 960px) {
  .footer__brand {
    display: grid;
    justify-items: center;
    gap: 20px;
  }

  .footer__brand p {
    max-width: 520px;
    margin: 0 auto;
  }

  .footer__logo-wrap {
    width: min(100%, 360px);
  }

  .footer__content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 640px);
  }

  .footer__links > div {
    text-align: center;
  }

  .footer__links ul {
    justify-items: center;
  }

  .footer__links .footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin: 24px auto 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .footer__links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .accreditation-card {
    width: 82px;
    height: 82px;
  }
  .client-card__logo {
    width: 168px;
  }
  .accreditation-card img,
  .client-card__logo img {
    width: 80%;
  }
  .accreditation-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 1400px) {
  .hero__layout {
    gap: clamp(32px, 4vw, 64px);
  }
}

@media (max-width: 1300px) {
  .hero__topbar {
    flex-wrap: wrap;
  }

  .hero__brand {
    gap: clamp(12px, 2.5vw, 24px);
    min-width: 0;
    max-width: 100%;
  }

  .hero__brand-link {
    padding: 10px 20px;
    flex-shrink: 0;
  }

  .hero__logo {
    height: clamp(52px, 6vw, 68px);
    max-width: clamp(160px, 22vw, 240px);
    width: auto;
    object-fit: contain;
  }

  .hero__nav ul {
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 1;
    min-width: 0;
  }

  .hero__nav a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .hero__topbar-actions {
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 1;
  }

  .hero__topbar-actions > * {
    flex-shrink: 0;
  }

  .hero__topbar-phone {
    white-space: nowrap;
  }
}

@media (max-width: 1200px) {
  .hero__topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero__topbar-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  body.is-arabic .hero__topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  body.is-arabic .hero__topbar-actions {
    order: 1;
    justify-content: space-between;
  }

  body.is-arabic .hero__nav {
    order: 2;
  }

  body.is-arabic .hero__brand {
    order: 3;
    justify-items: center;
    text-align: center;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: stretch;
  }

  .hero__content {
    max-width: 720px;
    margin: 0 auto;
  }

  .hero__panels {
    max-width: 540px;
    justify-self: center;
    width: 100%;
  }

  .hero__brand {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .hero__nav {
    justify-content: center;
  }

  .card-grid--services,
  .card-grid--solutions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .callout {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  }
}

@media (max-width: 900px) {
  .hero__panels {
    grid-template-columns: 1fr;
  }

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

  .callout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .callout__timeline {
    padding-left: 0;
    border-left: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .callout-step {
    grid-template-columns: auto;
    text-align: center;
    gap: 12px;
  }

  body.is-arabic .callout__timeline {
    padding-right: 0;
    border-right: none;
  }
}

@media (max-width: 1280px) {
  .clients-group__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero__topbar-actions {
    gap: 12px;
  }

  .hero__brand {
    gap: clamp(12px, 2vw, 20px);
  }
}

@media (max-width: 1024px) {
  .hero__brand {
    grid-template-columns: auto auto;
    grid-template-areas:
      "logo toggle"
      "logo nav";
    gap: 16px;
  }

  .hero__brand-link {
    grid-area: logo;
    padding: 4px 0;
    max-width: clamp(160px, 32vw, 220px);
  }

  .hero__menu-toggle {
    display: inline-flex;
    justify-self: end;
    grid-area: toggle;
    color: var(--color-dark);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .hero__nav {
    grid-area: nav;
    justify-content: flex-start;
    width: 100%;
    margin-top: 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .hero__nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    gap: 4px;
  }

  .hero__nav a {
    color: #1a1a1a;
    width: 100%;
    padding: 12px 16px;
  }

  .hero__nav a::after {
    display: none;
  }

  .hero__logo {
    height: clamp(42px, 5.5vw, 52px);
    max-width: clamp(160px, 25vw, 200px);
  }

  .hero__topbar {
    align-items: center;
    padding: clamp(10px, 1.5vh, 16px) clamp(24px, 5vw, 40px);
    gap: 12px;
  }

  .hero__topbar-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 0;
    margin-top: 12px;
  }

  .hero__topbar-actions > * {
    flex: 0 0 auto;
    min-width: 0;
  }

  .hero__menu-checkbox:checked + .hero__nav {
    max-height: 500px;
    padding: 8px;
  }
}

@media (max-width: 720px) {
  .hero__topbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    max-width: 100%;
    padding: clamp(10px, 1.5vh, 14px) clamp(20px, 4vw, 32px);
  }

  .hero__topbar-actions {
    flex-direction: row;
    gap: 8px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__topbar-phone {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .hero__phone-number {
    font-size: 0.85rem;
  }

  .hero__langs {
    padding: 3px;
  }

  .lang-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    min-width: 40px;
  }

  .hero__login {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .hero__inner {
    padding: 24px;
    max-width: 100%;
  }

  .hero__slider {
    min-height: auto;
  }

  .hero__slider-dots {
    justify-content: center;
  }

  .hero__message {
    text-align: center;
    max-width: none;
  }

  .hero__message p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__panels {
    align-self: center;
    width: 100%;
    max-width: 480px;
  }

  .section__cta {
    margin-top: 32px;
  }

  .section__cta .btn {
    width: 100%;
  }

  .hero__logo {
    height: 56px;
  }

  .footer__partners-logos {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 96px 20px;
  }

  .footer__logo-wrap {
    padding: 24px 32px;
  }

  .footer__links ul {
    justify-items: center;
  }

  .feature-grid,
  .stats-grid,
  .card-grid--services,
  .card-grid--solutions,
  .team-grid,
  .callout__timeline,
  .callout__metrics {
    grid-template-columns: 1fr;
  }

  .callout {
    padding: 32px;
  }

  .branches__list ul {
    grid-template-columns: 1fr;
  }

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

  .branches__map-embed {
    min-height: 320px;
  }

  .branches__map-embed::after {
    inset: 8px;
  }

  .branches__list {
    padding: 24px;
  }

  .footer {
    padding: 64px 20px 32px;
  }

  .footer__links {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 24px;
  }

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

@media (max-width: 480px) {
  .hero {
    padding-bottom: 96px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card {
    padding: 20px;
  }

  .section__intro {
    text-align: left;
  }

  .section {
    padding: 72px 16px;
  }

  .section__cta {
    margin-top: 28px;
  }

  .faq details {
    padding: 16px 18px;
  }

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

[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--animate-duration) ease, transform var(--animate-duration) ease;
  will-change: opacity, transform;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-child] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--animate-duration) ease, transform var(--animate-duration) ease;
  transition-delay: calc(var(--stagger-index, 0) * var(--animate-stagger));
}

[data-animate].is-visible [data-animate-child] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate-child] {
    transition: none !important;
  }

  .aurora-ribbon {
    animation: none !important;
    opacity: 0.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate-child] {
    transition: none !important;
  }

  html.is-preload body {
    transform: none;
  }

  body {
    transition: none;
  }
}

.hero__topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.social-icon--whatsapp {
  background: #25D366;
  border-color: rgba(37, 211, 102, 0.4);
}

.social-icon--whatsapp:hover,
.social-icon--whatsapp:focus-visible {
  background: #20BA5A;
  border-color: rgba(37, 211, 102, 0.6);
}

.hero__langs {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(0, 0, 0, 0.02);
  gap: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero__langs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.08), rgba(35, 192, 255, 0.06));
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.95);
}

.hero__langs::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.15), rgba(35, 192, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(6px);
}

.hero__langs:hover {
  box-shadow: 0 6px 20px rgba(7, 137, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 -1px 0 rgba(0, 0, 0, 0.03);
  border-color: rgba(7, 137, 255, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.hero__langs:hover::before {
  opacity: 1;
  transform: scale(1);
}

.hero__langs:hover::after {
  opacity: 0.5;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #5a5a5a;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 40px;
  position: relative;
  z-index: 1;
}

.lang-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(7, 137, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.lang-btn:hover {
  color: #0789ff;
  transform: scale(1.05);
}

.lang-btn:hover::before {
  opacity: 1;
}

.lang-btn--active {
  background: linear-gradient(135deg, #0789ff 0%, #23c0ff 100%);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(7, 137, 255, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transform: scale(1.05);
}

.lang-btn--active::before {
  opacity: 0;
}

.lang-btn--active:hover {
  background: linear-gradient(135deg, #0678e6 0%, #1fb0ff 100%);
  box-shadow: 0 4px 16px rgba(7, 137, 255, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  transform: scale(1.08) translateY(-1px);
}

.lang-btn:focus-visible {
  outline: 2px solid rgba(7, 137, 255, 0.35);
  outline-offset: 2px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  color: #000000;
  font-size: 0.8rem;
}

.hero__login {
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, #0789ff 0%, #23c0ff 50%, #0789ff 100%);
  background-size: 200% 200%;
  border: none;
  color: #ffffff;
  box-shadow: 
    0 4px 16px rgba(7, 137, 255, 0.35),
    0 2px 8px rgba(7, 137, 255, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
    0 0 20px rgba(35, 192, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  animation: gradient-shift 3s ease infinite;
}

.hero__login::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 50%, rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.hero__login::after {
  content: "";
  position: absolute;
  inset: -100% -100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s ease;
  transform: scale(0) rotate(0deg);
  z-index: 0;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero__login:hover,
.hero__login:focus-visible {
  background: linear-gradient(135deg, #0678e6 0%, #1fb0ff 50%, #0678e6 100%);
  background-size: 200% 200%;
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 8px 24px rgba(7, 137, 255, 0.45),
    0 4px 12px rgba(7, 137, 255, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 0 30px rgba(35, 192, 255, 0.3);
}

.hero__login:hover::before {
  opacity: 1;
}

.hero__login:hover::after {
  opacity: 1;
  transform: scale(1.5) rotate(180deg);
}

.hero__login:active {
  transform: translateY(-1px) scale(1.01);
}

.footer__social {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-auto-rows: auto;
  gap: 12px 16px;
  justify-content: flex-start;
  justify-items: start;
  align-items: center;
  margin-top: 24px;
}

.nav-link--muted {
  color: rgba(11, 28, 55, 0.6);
}

.hero__topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2a2a2a;
  padding: 10px 16px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(248, 250, 255, 0.6));
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero__topbar-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.15), rgba(35, 192, 255, 0.12));
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
  transform: scale(0.95);
}

.hero__topbar-phone::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(7, 137, 255, 0.2), rgba(35, 192, 255, 0.15));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -2;
  filter: blur(8px);
}

.hero__topbar-phone:hover,
.hero__topbar-phone:focus-visible {
  color: #0789ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(7, 137, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(7, 137, 255, 0.2);
}

.hero__topbar-phone:hover::before,
.hero__topbar-phone:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.hero__topbar-phone:hover::after,
.hero__topbar-phone:focus-visible::after {
  opacity: 0.6;
}

.footer__bottom {
  text-align: center;
  color: rgba(207, 215, 228, 0.52);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Contact Section Styles */
.contact-section {
  position: relative;
}

.contact-section::before,
.contact-section::after {
  --orb-color-a: rgba(102, 178, 255, 0.32);
  --orb-color-b: rgba(0, 209, 178, 0.28);
}

.contact-form-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 247, 255, 0.95));
  border-radius: 28px;
  border: 1px solid rgba(7, 16, 35, 0.08);
  box-shadow: 0 32px 60px -40px rgba(7, 16, 35, 0.35);
  position: relative;
  z-index: 1;
}

/* Contact Form Styles */
.footer__contact-form {
  max-width: var(--max-width);
  margin: 0 auto clamp(32px, 6vw, 48px);
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form__container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form__container h3 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: var(--color-white);
}

.contact-form__container > p {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.contact-form-wrapper .contact-form__container h3 {
  color: var(--color-dark);
}

.contact-form-wrapper .contact-form__container > p {
  color: #4c5566;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-form__group {
  display: grid;
  gap: 6px;
}

.contact-form__input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(7, 16, 35, 0.15);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-dark);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input::placeholder {
  color: rgba(7, 16, 35, 0.5);
}

.contact-form__input:focus {
  outline: none;
  border-color: rgba(7, 137, 255, 0.6);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(7, 137, 255, 0.2);
}

.contact-form-wrapper .contact-form__input {
  border: 1px solid rgba(7, 16, 35, 0.15);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-dark);
}

.contact-form-wrapper .contact-form__input::placeholder {
  color: rgba(7, 16, 35, 0.5);
}

.contact-form-wrapper .contact-form__input:focus {
  border-color: rgba(7, 137, 255, 0.6);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(7, 137, 255, 0.2);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__error {
  font-size: 0.85rem;
  color: #ff6b6b;
  min-height: 18px;
}

.contact-form__submit.btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-blue), var(--color-sky)) !important;
  color: var(--color-white) !important;
  border: none !important;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 8px 24px -12px rgba(7, 137, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form__submit:hover:not(:disabled),
.contact-form__submit:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -14px rgba(7, 137, 255, 0.6);
  background: linear-gradient(135deg, #0678e6, #1fb0ff) !important;
}

.contact-form__submit:active:not(:disabled) {
  transform: translateY(0);
}

.contact-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-form__message {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  text-align: center;
  min-height: 20px;
  transition: opacity 0.3s ease;
}

.contact-form__message--success {
  background: rgba(0, 209, 178, 0.2);
  border: 1px solid rgba(0, 209, 178, 0.4);
  color: rgba(255, 255, 255, 0.95);
}

.contact-form__message--error {
  background: rgba(255, 107, 107, 0.2);
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 28px 20px;
  }
  
  .footer__contact-form {
    padding: 28px 20px;
  }
}

/* Navigation Dropdown Styles */
.nav-item--dropdown {
  position: relative;
}

.nav-item--dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-dropdown-arrow {
  display: inline-block;
  font-size: 0.75em;
  transition: transform 0.2s ease, color 0.2s ease;
  color: rgba(0, 0, 0, 0.7);
  margin-left: 6px;
  line-height: 1;
  vertical-align: middle;
  font-weight: normal;
  opacity: 0.8;
}

.nav-item--dropdown:hover .nav-dropdown-arrow,
.nav-item--dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
  color: rgba(7, 137, 255, 1);
  opacity: 1;
}

.nav-item--dropdown > a:hover .nav-dropdown-arrow {
  opacity: 1;
  color: rgba(7, 137, 255, 0.9);
}

@media (max-width: 960px) {
  .nav-item--dropdown.is-open .nav-dropdown-arrow {
    transform: rotate(180deg);
  }
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  box-shadow: 0 16px 40px -20px rgba(7, 16, 35, 0.4);
  border: 1px solid rgba(7, 16, 35, 0.08);
  list-style: none;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--color-dark);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(7, 137, 255, 0.12);
  color: #05316f;
}

@media (max-width: 960px) {
  .nav-dropdown {
    position: static;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    transition: max-height 0.3s ease;
  }
  
  .nav-item--dropdown.is-open .nav-dropdown {
    max-height: 200px;
    margin-top: 8px;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 16px 40px -20px rgba(7, 16, 35, 0.4);
    border: 1px solid rgba(7, 16, 35, 0.08);
  }
  
  .nav-dropdown a {
    padding: 12px 18px;
  }
}

body.is-arabic .nav-dropdown {
  left: auto;
  right: 0;
}

body.is-arabic .nav-dropdown a {
  text-align: right;
}

body.is-arabic .nav-dropdown-arrow {
  margin-left: 0;
  margin-right: 2px;
}

/* Larger Service Icons */
.service-card__icon {
  width: 120px !important;
  height: 120px !important;
  border-radius: 24px !important;
}

.service-card__icon-image,
.service-card__icon img {
  width: 90px !important;
  height: auto !important;
  max-height: 90px !important;
}

@media (max-width: 900px) {
  .service-card__icon {
    width: 100px !important;
    height: 100px !important;
  }
  
  .service-card__icon-image,
  .service-card__icon img {
    width: 75px !important;
    max-height: 75px !important;
  }
}

@media (max-width: 640px) {
  .service-card__icon {
    width: 90px !important;
    height: 90px !important;
  }
  
  .service-card__icon-image,
  .service-card__icon img {
    width: 65px !important;
    max-height: 65px !important;
  }
}

/* Improved Responsiveness for Zoom */
html {
  font-size: clamp(14px, 1vw, 16px);
}

@media (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}

/* Better zoom handling */
* {
  box-sizing: border-box;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal scroll on zoom */
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container, .section {
  max-width: 100%;
  overflow-x: hidden;
}

