@font-face {
  font-family: "Montserrat";
  src: url("../fonts/google/montserrat-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("../fonts/google/cairo-variable.ttf") format("truetype-variations"),
       url("../fonts/google/cairo-variable.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/google/plus-jakarta-sans-variable.ttf") format("truetype-variations"),
       url("../fonts/google/plus-jakarta-sans-variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/google/montserrat-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/google/montserrat-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #06264a;
  --navy-deep: #031a33;
  --blue: #087fd3;
  --blue-soft: #eaf5fd;
  --gold: #ffc20a;
  --gold-dark: #e3a900;
  --ink: #17263a;
  --muted: #617085;
  --line: #dce5ee;
  --surface: #f6f9fc;
  --white: #fff;
  --shadow: 0 18px 45px rgba(4, 35, 68, 0.11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Plus Jakarta Sans", "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
body.is-loading { overflow: hidden; }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 28px;
  background: radial-gradient(circle at 50% 45%, #fff 0, #f7fafc 48%, #eaf1f7 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .42s ease, visibility .42s ease;
}
.site-loader.loader-hiding { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo-stage { position: relative; width: min(390px, 78vw); aspect-ratio: 2032 / 774; }
.loader-logo-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.loader-logo-base { filter: grayscale(1); opacity: .14; }
.loader-logo-fill { position: absolute; inset: 0; z-index: 2; animation: logo-liquid-fill .78s cubic-bezier(.55,.08,.35,1) forwards; clip-path: polygon(0 100%,100% 100%,100% 100%,75% 96%,50% 100%,25% 96%,0 100%); }
.loader-bubble { position: absolute; z-index: 3; bottom: 12%; display: block; background: var(--blue); border: 2px solid rgba(255,255,255,.8); border-radius: 50%; opacity: 0; pointer-events: none; animation: loader-bubble-rise .68s ease-in forwards; }
.bubble-one { left: 22%; width: 10px; height: 10px; animation-delay: .1s; }
.bubble-two { left: 49%; width: 7px; height: 7px; background: var(--gold); animation-delay: .24s; }
.bubble-three { left: 76%; width: 12px; height: 12px; animation-delay: .36s; }
.loader-caption { color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; animation: loader-caption-pulse 1.1s ease-in-out infinite alternate; }

@keyframes logo-liquid-fill {
  0%, 7% { clip-path: polygon(0 100%,100% 100%,100% 100%,75% 96%,50% 100%,25% 96%,0 100%); }
  34% { clip-path: polygon(0 100%,100% 100%,100% 70%,75% 65%,50% 70%,25% 65%,0 70%); }
  66% { clip-path: polygon(0 100%,100% 100%,100% 37%,75% 42%,50% 37%,25% 42%,0 37%); }
  90%, 100% { clip-path: polygon(0 100%,100% 100%,100% 2%,75% 0,50% 3%,25% 0,0 2%); }
}
@keyframes loader-bubble-rise {
  0% { opacity: 0; transform: translateY(0) scale(.65); }
  20% { opacity: .72; }
  100% { opacity: 0; transform: translateY(-92px) scale(1.05); }
}
@keyframes loader-caption-pulse { from { opacity: .46; } to { opacity: .92; } }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 18px; color: var(--navy); font-weight: 700; line-height: 1.23; }
p { margin: 0 0 18px; }
ul { margin-top: 0; }
.bidi-ltr { direction: ltr; unicode-bidi: isolate; }
a.bidi-ltr, bdi.bidi-ltr { display: inline-block; }
input[type="tel"], input[type="email"] { direction: ltr; text-align: left; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}
.skip-link:focus { top: 12px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.container { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 58px 0; }
.bg-soft { background: var(--surface); }
.bg-navy { color: var(--white); background: var(--navy); }
.bg-navy h2, .bg-navy h3, .bg-navy p { color: var(--white); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 3px; content: ""; background: var(--gold); border-radius: 3px; }
.section-title { max-width: 730px; margin-bottom: 44px; }
.section-title.center { margin-inline: auto; text-align: center; }
.section-title h2 { font-size: clamp(30px, 4vw, 46px); }
.section-title p { color: var(--muted); font-size: 17px; }
.lead { color: var(--muted); font-size: 18px; }
.small-note { color: var(--muted); font-size: 13px; }

.topbar { color: #dceaff; background: var(--navy-deep); font-size: 13px; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-list { display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; list-style: none; }
.topbar i { margin-right: 7px; color: var(--gold); }
.topbar a:hover { color: var(--gold); }
.topbar-actions { display: flex; align-items: center; gap: 22px; }
.language-switcher { display: inline-flex; align-items: center; gap: 3px; direction: ltr; }
.language-switcher a {
  min-width: 29px;
  padding: 3px 6px;
  color: #dceaff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}
.language-switcher a:hover, .language-switcher a.active { color: var(--navy-deep); background: var(--gold); border-color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: var(--white);
  border-bottom: 1px solid rgba(6, 38, 74, .08);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-sticky {
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(3, 26, 51, .13);
}
.header-inner { position: relative; min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; transition: min-height .25s ease; }
.brand { flex: 0 0 auto; }
.brand img { width: 235px; height: auto; transition: width .25s ease; }
.site-header.is-sticky .header-inner { min-height: 68px; }
.site-header.is-sticky .brand img { width: 185px; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 33px 13px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  transition: padding .25s ease, color .2s ease;
}
.site-header.is-sticky .nav-link { padding-top: 23px; padding-bottom: 23px; }
.site-header.is-sticky .nav-item.active > .nav-link::after { bottom: 14px; }
.site-header.is-sticky .header-cta { min-height: 44px; }
.nav-link:hover, .nav-item.active > .nav-link { color: var(--blue); }
.nav-item.active > .nav-link::after { position: absolute; right: 13px; bottom: 23px; left: 13px; height: 3px; content: ""; background: var(--gold); border-radius: 4px; }
.submenu {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  width: 270px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: var(--white);
  border-top: 4px solid var(--gold);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: var(--ink); font-size: 13px; font-weight: 600; border-radius: 6px; transition: background-color .2s ease, color .2s ease, transform .2s ease; }
.submenu a i { width: 29px; height: 29px; display: grid; flex: 0 0 29px; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 7px; font-size: 11px; }
.submenu a:hover { color: var(--blue); background: var(--blue-soft); transform: translateX(3px); }
html[dir="rtl"] .submenu a:hover { transform: translateX(-3px); }
.header-cta { margin-left: 12px; }
.menu-toggle { display: none; width: 46px; height: 42px; padding: 0; color: var(--navy); background: transparent; border: 1px solid var(--line); border-radius: 7px; font-size: 21px; }
.mobile-nav-head, .mobile-nav-language-panel, .mobile-nav-extra { display: none; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes heroCirclePulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.05) rotate(4deg); opacity: 1; }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65), 0 12px 28px rgba(3, 26, 51, .28);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 12px 28px rgba(3, 26, 51, .28);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 12px 28px rgba(3, 26, 51, .28);
  }
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  color: var(--navy);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 100%; }
.btn:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(4, 35, 68, 0.18);
}
.btn:active { transform: translateY(-1px); }
.btn i { transition: transform .25s ease; }
.btn:hover i { transform: translateX(4px); }
html[dir="rtl"] .btn:hover i { transform: translateX(-4px) scaleX(-1); }

.btn-outline { color: var(--white); background: transparent; border-color: rgba(255,255,255,.65); }
.btn-outline:hover { color: var(--navy); background: var(--white); border-color: var(--white); }
.btn-blue { color: var(--white); background: var(--blue); border-color: var(--blue); }
.btn-blue:hover { background: var(--navy); border-color: var(--navy); }

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(90deg, rgba(3, 25, 50, .96) 0%, rgba(5, 40, 77, .88) 50%, rgba(5, 40, 77, .45) 100%), url("../images/slider/s-4.jpeg") center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 480px;
  height: 480px;
  content: "";
  border: 90px solid rgba(255, 194, 10, .13);
  border-radius: 50%;
  animation: heroCirclePulse 12s ease-in-out infinite;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 810px; padding: 90px 0; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { max-width: 800px; color: var(--white); font-size: clamp(44px, 6vw, 76px); line-height: 1.08; letter-spacing: -.035em; }
.hero p { max-width: 710px; color: #e5eef8; font-size: clamp(17px, 2vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.trust-strip { position: relative; z-index: 3; margin-top: -50px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; }
.trust-item { min-height: 108px; display: flex; align-items: center; gap: 15px; padding: 22px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 20px; }
.trust-item strong { display: block; color: var(--navy); font-size: 16px; }
.trust-item span { color: var(--muted); font-size: 12px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.image-frame { position: relative; }
.image-frame img { width: 100%; min-height: 450px; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); }
.image-frame::before { position: absolute; left: -18px; bottom: -18px; z-index: -1; width: 65%; height: 65%; content: ""; background: var(--gold); border-radius: 14px; }
.image-badge { position: absolute; right: -22px; bottom: 34px; width: 165px; padding: 20px; color: var(--white); background: var(--navy); border-radius: 10px; box-shadow: var(--shadow); }
.image-badge strong { display: block; color: var(--gold); font-size: 28px; line-height: 1.1; }
.image-badge span { font-size: 12px; }

.check-list, .arrow-list { margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li, .arrow-list li { position: relative; margin-bottom: 12px; padding-left: 30px; color: var(--ink); }
.check-list li::before { position: absolute; left: 0; top: 4px; color: var(--blue); content: "\f058"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
.arrow-list li::before { position: absolute; left: 0; top: 3px; color: var(--gold-dark); content: "\f061"; font-family: "Font Awesome 5 Free"; font-weight: 900; }

.service-card {
  position: relative;
  height: 100%;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s cubic-bezier(.16, 1, .3, 1), border-color .3s ease;
}
.service-card::after { position: absolute; right: 0; bottom: 0; width: 0; height: 4px; content: ""; background: var(--gold); transition: width .3s cubic-bezier(.16, 1, .3, 1); }
.service-card:hover { border-color: rgba(8, 127, 211, .25); box-shadow: 0 20px 42px rgba(4, 35, 68, 0.12); transform: translateY(-8px); }
.service-card:hover::after { width: 100%; }
.service-icon { width: 60px; height: 60px; display: grid; place-items: center; margin-bottom: 23px; color: var(--white); background: var(--blue); border-radius: 10px; font-size: 25px; transition: transform .3s ease, background-color .3s ease; }
.service-card:hover .service-icon { transform: scale(1.08) rotate(3deg); background-color: var(--navy); }
.service-card h3 { font-size: 20px; transition: color .2s ease; }
.service-card:hover h3 { color: var(--blue); }
.service-card p { color: var(--muted); font-size: 14px; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 13px; font-weight: 700; transition: color .2s ease, gap .25s ease; }
.card-link i { transition: transform .25s ease; }
.card-link:hover i, .service-card:hover .card-link i { transform: translateX(4px); }
html[dir="rtl"] .card-link:hover i, html[dir="rtl"] .service-card:hover .card-link i { transform: translateX(-4px) scaleX(-1); }

.field-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.field-pill { min-height: 135px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 18px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: 10px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.field-pill:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 10px 25px rgba(4, 35, 68, .08); }
.field-pill i { color: var(--blue); font-size: 29px; transition: transform .25s ease; }
.field-pill:hover i { transform: scale(1.15); }
.field-pill span { color: var(--navy); font-size: 13px; font-weight: 700; }

.process-card { position: relative; padding: 28px; background: var(--white); border-radius: 10px; box-shadow: 0 10px 30px rgba(4, 35, 68, .08); transition: transform .25s ease, box-shadow .25s ease; }
.process-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(4, 35, 68, .12); }
.step-no { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--navy); background: var(--gold); border-radius: 50%; font-weight: 700; transition: transform .3s ease; }
.process-card:hover .step-no { transform: scale(1.1); }
.process-card h3 { font-size: 18px; }
.process-card p { color: var(--muted); font-size: 14px; }

.cta-section { padding: 72px 0; background: var(--white); }
.cta { position: relative; overflow: hidden; }
.cta-card { width: min(1040px, 100%); margin-inline: auto; padding: 43px 48px; color: var(--white); background: linear-gradient(120deg, var(--navy), #094f84); border-radius: 18px; box-shadow: 0 20px 48px rgba(3,26,51,.16); transition: transform .3s ease, box-shadow .3s ease; }
.cta-card:hover { transform: translateY(-4px); box-shadow: 0 26px 56px rgba(3,26,51,.22); }
.cta::before { position: absolute; left: -80px; top: -130px; width: 300px; height: 300px; content: ""; border: 60px solid rgba(255, 194, 10, .12); border-radius: 50%; animation: floatSlow 10s ease-in-out infinite alternate; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-copy { max-width: 760px; }
.cta h2 { margin-bottom: 9px; color: var(--white); font-size: clamp(27px, 3.4vw, 38px); }
.cta p { margin: 0; color: #d9e7f3; font-size: 14px; }

.page-hero { position: relative; padding: 92px 0; color: var(--white); background: linear-gradient(90deg, rgba(3, 26, 51, .96), rgba(6, 38, 74, .78)), url("../images/bg/banner-bg.jpeg") center/cover no-repeat; }
.page-hero h1 { color: var(--white); font-size: clamp(38px, 5vw, 60px); }
.page-hero p { max-width: 720px; color: #dce8f5; font-size: 18px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0 0; padding: 0; list-style: none; color: #dce8f5; font-size: 13px; }
.breadcrumbs li + li::before { margin-right: 9px; color: var(--gold); content: "/"; }
.breadcrumbs a { transition: color .2s ease; }
.breadcrumbs a:hover { color: var(--gold); }

.value-card { height: 100%; padding: 27px; background: var(--white); border-top: 4px solid var(--gold); border-radius: 8px; box-shadow: 0 12px 30px rgba(4, 35, 68, .07); transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease, border-color .3s ease; }
.value-card:hover { transform: translateY(-7px); box-shadow: 0 20px 45px rgba(4, 35, 68, .13); border-color: var(--blue); }
.value-card i { margin-bottom: 16px; color: var(--blue); font-size: 25px; transition: transform .3s ease, color .3s ease; }
.value-card:hover i { transform: scale(1.2); color: var(--navy); }
.value-card h3 { font-size: 18px; }
.value-card p { color: var(--muted); font-size: 14px; }

.content-card { height: 100%; padding: 35px; background: var(--white); border: 1px solid var(--line); border-radius: 11px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.content-card:hover { transform: translateY(-6px); border-color: rgba(8,127,211,.35); box-shadow: 0 18px 40px rgba(4, 35, 68, .1); }
.content-card h2, .content-card h3 { font-size: 22px; }
.content-card p, .content-card li { color: var(--muted); font-size: 15px; }
.icon-title { display: flex; align-items: center; gap: 14px; }
.icon-title i { width: 50px; height: 50px; display: grid; flex: 0 0 50px; place-items: center; color: var(--white); background: var(--blue); border-radius: 9px; transition: transform .3s ease, background-color .3s ease; }
.content-card:hover .icon-title i { transform: scale(1.1) rotate(5deg); background: var(--navy); }

.partner-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.partner-tag { padding: 12px 17px; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 600; transition: transform .2s ease, background-color .2s ease, color .2s ease; }
.partner-tag:hover { transform: translateY(-2px); background: var(--blue); color: var(--white); border-color: var(--blue); }

.team-card { height: 100%; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; transition: transform .25s ease, box-shadow .25s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar { width: 76px; height: 76px; display: grid; place-items: center; margin-bottom: 20px; color: var(--white); background: linear-gradient(135deg, var(--blue), var(--navy)); border: 5px solid var(--blue-soft); border-radius: 50%; font-size: 22px; font-weight: 700; transition: transform .3s ease; }
.team-card:hover .team-avatar { transform: scale(1.08); }
.team-card h3 { margin-bottom: 7px; font-size: 20px; }
.team-role { display: block; margin-bottom: 16px; color: var(--blue); font-size: 12px; font-weight: 700; line-height: 1.5; }
.team-card p { color: var(--muted); font-size: 13px; }

.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { margin-bottom: 12px; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease; }
.faq-item:hover { border-color: rgba(8, 127, 211, .4); box-shadow: 0 6px 20px rgba(4, 35, 68, .05); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 24px; color: var(--navy); background: var(--white); border: 0; text-align: left; font: inherit; font-weight: 700; cursor: pointer; transition: background-color .2s ease, color .2s ease; }
.faq-question:hover { background-color: var(--surface); color: var(--blue); }
.faq-question i { color: var(--blue); transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), color .25s ease; }
.faq-answer { display: none; padding: 0 24px 22px; color: var(--muted); font-size: 14px; animation: faqFadeIn .3s ease forwards; }
@keyframes faqFadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(45deg); color: var(--gold-dark); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; }
.contact-panel { padding: 38px; color: var(--white); background: var(--navy); border-radius: 12px; transition: box-shadow .3s ease; }
.contact-panel:hover { box-shadow: 0 20px 50px rgba(3, 26, 51, .25); }
.contact-panel h2, .contact-panel h3 { color: var(--white); }
.contact-panel > p { color: #d7e4f2; }
.contact-list { margin: 28px 0 0; padding: 0; list-style: none; }
.contact-list li { display: flex; gap: 15px; margin-bottom: 22px; transition: transform .2s ease; }
.contact-list li:hover { transform: translateX(4px); }
html[dir="rtl"] .contact-list li:hover { transform: translateX(-4px); }
.contact-list i { width: 42px; height: 42px; display: grid; flex: 0 0 42px; place-items: center; color: var(--navy); background: var(--gold); border-radius: 50%; transition: transform .3s ease; }
.contact-list li:hover i { transform: scale(1.12); }
.contact-list strong, .contact-list span { display: block; }
.contact-list span { color: #d7e4f2; font-size: 13px; }
.contact-form { padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: 7px; color: var(--navy); font-size: 13px; font-weight: 700; }
.form-control { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 6px; font: inherit; font-size: 14px; transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-control:focus { background-color: #fff; outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8, 127, 211, .15); }

.site-footer { color: #cedbe9; background: var(--navy-deep); }
.footer-main { padding: 70px 0 45px; }
.footer-newsletter { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 58px; margin-bottom: 54px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-newsletter-copy { display: flex; align-items: center; gap: 18px; }
.footer-newsletter-icon { width: 58px; height: 58px; display: grid; flex: 0 0 58px; place-items: center; color: var(--navy-deep); background: var(--gold); border-radius: 12px; font-size: 23px; transition: transform .3s ease; }
.footer-newsletter:hover .footer-newsletter-icon { transform: scale(1.08) rotate(6deg); }
.footer-newsletter h2 { margin: 0 0 6px; color: var(--white); font-size: 23px; }
.footer-newsletter p { max-width: 480px; margin: 0; color: #9fb2c7; font-size: 13px; }
.footer-newsletter-action { min-width: 0; }
.newsletter-form { min-height: 54px; display: flex; padding: 5px; background: var(--white); border-radius: 9px; box-shadow: 0 12px 28px rgba(0,0,0,.14); transition: box-shadow .25s ease; }
.newsletter-form:focus-within { box-shadow: 0 16px 36px rgba(0,0,0,.22); }
.newsletter-form input { min-width: 0; flex: 1; padding: 0 15px; color: var(--ink); background: transparent; border: 0; outline: 0; font: inherit; font-size: 13px; direction: ltr; text-align: left; }
.newsletter-form button { min-width: 132px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 18px; color: var(--navy-deep); background: var(--gold); border: 0; border-radius: 6px; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; transition: background-color .2s ease, color .2s ease, transform .2s ease; }
.newsletter-form button:hover { color: var(--white); background: var(--blue); transform: scale(1.02); }
.newsletter-message { margin-bottom: 9px; padding: 8px 11px; border-radius: 6px; font-size: 11px; }
.newsletter-message.success { color: #bff5d9; background: rgba(26,154,94,.18); border: 1px solid rgba(86,211,151,.3); }
.newsletter-message.error { color: #ffd0d0; background: rgba(194,53,53,.16); border: 1px solid rgba(255,130,130,.28); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 44px; }
.footer-logo { width: 230px; margin-bottom: 20px; filter: drop-shadow(0 0 12px rgba(255,255,255,.12)); transition: transform .25s ease; }
.footer-logo:hover { transform: scale(1.02); }
.footer-about p { max-width: 390px; color: #aebfd1; font-size: 13px; }
.footer-social-title { margin: 22px 0 12px; color: var(--white); font-size: 13px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-social a { width: 39px; height: 39px; display: grid; place-items: center; color: #d9e6f2; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 8px; font-size: 15px; font-weight: 800; transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), background-color .2s ease, border-color .2s ease, color .2s ease; }
.footer-social a:hover { color: var(--navy-deep); background: var(--gold); border-color: var(--gold); transform: translateY(-4px) scale(1.1); }
.footer-title { margin-bottom: 20px; color: var(--white); font-size: 16px; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #aebfd1; font-size: 13px; transition: color .2s ease, transform .2s ease; display: inline-block; }
.footer-links a:hover { color: var(--gold); transform: translateX(3px); }
html[dir="rtl"] .footer-links a:hover { transform: translateX(-3px); }
.footer-programs { display: grid; gap: 7px; }
.footer-programs li { margin: 0; }
.footer-programs a { width: 100%; min-height: 39px; display: flex; align-items: center; gap: 10px; padding: 7px 9px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07); border-radius: 7px; }
.footer-programs a i { width: 26px; height: 26px; display: grid; flex: 0 0 26px; place-items: center; color: var(--gold); background: rgba(255,194,10,.1); border-radius: 6px; font-size: 10px; }
.footer-programs a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,194,10,.28); }
.footer-contact li { display: flex; gap: 10px; }
.footer-contact i { margin-top: 5px; color: var(--gold); transition: transform .2s ease; }
.footer-contact li:hover i { transform: scale(1.2); }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 20px; color: #8fa5ba; font-size: 12px; }
.copyright-text { display: inline-flex; align-items: center; gap: .35em; direction: ltr; }
.copyright-rights { unicode-bidi: isolate; }
html[dir="rtl"] .copyright-rights { direction: rtl; }
.footer-developer-credit { display: inline-flex; align-items: center; gap: 9px; }
.footer-developer-brand { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 3px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.04); transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.footer-developer-brand:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22); transform: translateY(-2px); }
.developer-logo { width: auto; height: 30px; object-fit: contain; }
.developer-logo-ar { display: none; }
html[lang="ar"] .developer-logo-en { display: none; }
html[lang="ar"] .developer-logo-ar { display: block; }

@keyframes floatNumber {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.error-page { min-height: 70vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.error-code { display: block; color: var(--gold); font-size: clamp(90px, 18vw, 190px); font-weight: 700; line-height: .8; text-shadow: 8px 8px 0 var(--blue-soft); animation: floatNumber 4s ease-in-out infinite; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1400;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(3, 26, 51, .28);
  font-size: 30px;
  line-height: 1;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), background-color .2s ease, box-shadow .25s ease;
  animation: whatsappPulse 3s infinite;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--white);
  background: #128c7e;
  transform: translateY(-5px) scale(1.08);
}
html[dir="rtl"] .whatsapp-float { right: auto; left: 24px; }

html[lang="en"] body,
html[lang="fr"] body { font-family: "Plus Jakarta Sans", "Montserrat", Arial, sans-serif; }
html[lang="ar"] body { font-family: "Cairo", Tahoma, Arial, sans-serif; }
html[dir="rtl"] .topbar i { margin-right: 0; margin-left: 7px; }
html[dir="rtl"] .submenu { right: 0; left: auto; }
html[dir="rtl"] .check-list li,
html[dir="rtl"] .arrow-list li { padding-right: 30px; padding-left: 0; }
html[dir="rtl"] .check-list li::before,
html[dir="rtl"] .arrow-list li::before { right: 0; left: auto; }
html[dir="rtl"] .faq-question { text-align: right; }
html[dir="rtl"] .contact-list i,
html[dir="rtl"] .service-card i,
html[dir="rtl"] .card-link i,
html[dir="rtl"] .btn i { transform: scaleX(-1); }
html[dir="rtl"] .footer-contact i { margin-right: 0; margin-left: 2px; }
html[dir="rtl"] .newsletter-form button i { transform: scaleX(-1); }

@media (max-width: 1199px) {
  .container { width: min(1060px, calc(100% - 32px)); }
  .brand img { width: 205px; }
  .nav-link { padding-inline: 9px; font-size: 13px; }
  .header-cta { display: none; }
}

@media (max-width: 991px) {
  .topbar .topbar-note { display: none; }
  .header-inner { min-height: 76px; }
  .site-header.is-sticky .header-inner { min-height: 64px; }
  .site-header.is-sticky .brand img { width: 160px; }
  .brand img { width: 195px; }
  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 5;
    display: grid !important;
    place-items: center;
    transform: translateY(-50%);
  }
  html[dir="rtl"] .menu-toggle { right: auto; left: 0; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2000;
    width: min(390px, 92vw);
    height: 100vh;
    height: 100dvh;
    display: block;
    padding: 0 0 30px;
    background: #f6f9fc;
    box-shadow: -20px 0 50px rgba(3, 26, 51, .2);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(105%);
    transition: transform .32s cubic-bezier(.16, 1, .3, 1);
  }
  .site-nav.open { transform: translateX(0); }
  .mobile-nav-head { position: sticky; top: 0; z-index: 3; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 20px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 8px 25px rgba(3,26,51,.07); }
  .mobile-nav-brand { display: inline-flex; align-items: center; }
  .mobile-nav-brand img { width: 178px; height: auto; }
  .mobile-nav-head .nav-close { position: static; width: 42px; height: 42px; display: grid; flex: 0 0 42px; place-items: center; color: var(--navy); background: var(--surface); border: 1px solid var(--line); border-radius: 10px; font-size: 18px; transition: color .2s ease, background-color .2s ease, transform .2s ease; }
  .mobile-nav-head .nav-close:hover { color: #fff; background: var(--navy); transform: rotate(5deg); }
  .mobile-nav-language-panel { display: block; padding: 14px 18px 13px; background: #eaf5fd; border-bottom: 1px solid #d4e8f6; }
  .mobile-nav-language-title { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; color: var(--navy); font-size: 11px; font-weight: 800; }
  .mobile-nav-language-title i { color: var(--blue); }
  .mobile-nav-languages { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px; direction: ltr; }
  .mobile-nav-languages a { min-width: 0; min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 6px 8px; color: var(--navy); background: #fff; border: 1px solid #c8dce9; border-radius: 8px; text-align: center; font-size: 10px; font-weight: 700; box-shadow: 0 3px 10px rgba(3,26,51,.04); }
  .mobile-nav-languages a strong { font-size: 10px; }
  .mobile-nav-languages a span { overflow: hidden; text-overflow: ellipsis; }
  .mobile-nav-languages a.active { color: var(--navy-deep); background: var(--gold); border-color: var(--gold); box-shadow: 0 5px 15px rgba(255,194,10,.24); }
  .nav-list { display: block; padding: 15px 18px 5px; }
  .nav-item { margin-bottom: 5px; }
  .nav-link { min-height: 48px; justify-content: space-between; padding: 12px 14px; background: #fff; border: 1px solid transparent; border-radius: 9px; box-shadow: 0 3px 12px rgba(3,26,51,.035); }
  .nav-link:hover, .nav-item.active > .nav-link { color: var(--navy); background: #fff7dd; border-color: rgba(255,194,10,.6); }
  .nav-item.active > .nav-link::after { display: none; }
  .nav-dropdown-toggle i { color: var(--blue); transition: transform .25s ease; }
  .has-submenu.open .nav-dropdown-toggle i { transform: rotate(180deg); }
  .submenu { position: static; width: auto; display: none; margin: 5px 9px 8px; padding: 7px; background: #eaf5fd; border: 0; border-radius: 9px; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .submenu a { min-height: 47px; padding: 8px 10px; background: rgba(255,255,255,.7); }
  .submenu a + a { margin-top: 4px; }
  .has-submenu.open .submenu { display: block; }
  .site-nav .header-cta { min-height: 50px; display: flex; margin: 10px 18px 20px; }
  .mobile-nav-extra { display: block; margin: 0 18px; padding: 19px; color: #dceaff; background: linear-gradient(145deg, #031a33, #073968); border-radius: 13px; box-shadow: 0 15px 34px rgba(3,26,51,.16); }
  .mobile-nav-contact h2 { margin: 0 0 12px; color: #fff; font-size: 15px; }
  .mobile-nav-contact > a, .mobile-nav-contact > span { min-height: 34px; display: flex; align-items: center; gap: 11px; color: #c5d7e8; font-size: 12px; line-height: 1.5; overflow-wrap: anywhere; }
  .mobile-nav-contact > a:hover { color: var(--gold); }
  .mobile-nav-contact i { width: 17px; color: var(--gold); text-align: center; }
  .mobile-nav-social { display: flex; gap: 8px; margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.13); }
  .mobile-nav-social a { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); border-radius: 9px; font-size: 14px; transition: color .2s ease, background-color .2s ease, transform .2s ease; }
  .mobile-nav-social a:hover { color: var(--navy-deep); background: var(--gold); transform: translateY(-2px); }
  .nav-overlay { position: fixed; inset: 0; z-index: 2500; display: none; background: rgba(3,26,51,.66); }
  .nav-overlay.show { display: block; }
  html[dir="rtl"] .site-nav { right: auto; left: 0; box-shadow: 20px 0 50px rgba(3, 26, 51, .2); transform: translateX(-105%); }
  html[dir="rtl"] .site-nav.open { right: auto; left: 0; transform: translateX(0); }
  html[dir="rtl"] .mobile-nav-head .nav-close { right: auto; left: auto; }
  html[dir="rtl"] .submenu { padding: 7px; }
  .hero { min-height: 610px; background-position: 62% center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-2 { gap: 44px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .footer-newsletter { grid-template-columns: 1fr; gap: 24px; margin-bottom: 45px; padding-bottom: 35px; }
}

@media (min-width: 992px) { .nav-close, .nav-overlay { display: none; } }

@media (max-width: 767px) {
  .container { width: min(100% - 28px, 620px); }
  .section { padding: 70px 0; }
  .section-sm { padding: 46px 0; }
  .topbar-inner { justify-content: center; }
  .topbar-actions { gap: 0; }
  .topbar-list li:first-child { display: none; }
  .brand img { width: 180px; }
  .hero { min-height: 590px; background-position: 65% center; }
  .hero-content { padding: 70px 0 110px; }
  .hero h1 { font-size: 44px; }
  .hero p { font-size: 16px; overflow-wrap: anywhere; }
  .hero .eyebrow { font-size: 10px; letter-spacing: .075em; }
  .hero-actions .btn { width: 100%; }
  .trust-strip { margin-top: -62px; }
  .trust-grid, .grid-2, .grid-3, .grid-4, .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 90px; padding: 16px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .image-frame img { min-height: 330px; }
  .image-badge { right: 10px; bottom: 18px; }
  .field-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { display: block; }
  .cta-inner .btn { margin-top: 18px; }
  .cta-section { padding: 52px 0; }
  .cta-card { padding: 34px 28px; border-radius: 14px; }
  .page-hero { padding: 72px 0; }
  .form-group.full { grid-column: auto; }
  .contact-panel, .contact-form { padding: 28px 22px; }
  .footer-main { padding: 48px 0 28px; }
  .footer-newsletter { margin-bottom: 36px; padding-bottom: 30px; gap: 18px; }
  .footer-newsletter-copy { display: flex; align-items: center; gap: 14px; }
  .footer-newsletter-icon { width: 48px; height: 48px; flex: 0 0 48px; font-size: 20px; border-radius: 10px; }
  .footer-newsletter h2 { font-size: 19px; margin-bottom: 4px; }
  .footer-newsletter p { font-size: 13px; line-height: 1.5; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-logo { width: 195px; margin-bottom: 14px; }
  .footer-about p { max-width: 100%; font-size: 13px; }
  .footer-social-title { margin: 16px 0 10px; font-size: 13px; }
  .footer-social a { width: 40px; height: 40px; font-size: 16px; }
  .footer-title { font-size: 15px; margin-bottom: 14px; position: relative; padding-bottom: 6px; }
  .footer-title::after { content: ""; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
  html[dir="rtl"] .footer-title::after { right: 0; left: auto; }
  .footer-links li { margin-bottom: 4px; }
  .footer-links a { display: inline-block; padding: 3px 0; font-size: 13px; }
  .footer-contact li { gap: 10px; font-size: 13px; padding: 3px 0; }
  .footer-contact a, .footer-contact span { word-break: break-word; }
  .footer-bottom { padding: 18px 0 22px; }
  .footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; }
  .copyright-text { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 5px; font-size: 12px; line-height: 1.5; }
  .footer-developer-credit { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; }
  .developer-logo { height: 26px; }
  .footer-developer-brand { min-height: 36px; padding: 3px 10px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; font-size: 26px; }
  html[dir="rtl"] .whatsapp-float { right: auto; left: 16px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-newsletter-copy { align-items: flex-start; }
  .newsletter-form { flex-direction: column; padding: 7px; gap: 8px; border-radius: 12px; }
  .newsletter-form input { width: 100%; height: 46px; padding: 0 14px; font-size: 14px; background: rgba(246, 249, 252, 0.95); border-radius: 8px; border: 1px solid rgba(0,0,0,0.06); }
  .newsletter-form button { width: 100%; height: 46px; min-width: 0; font-size: 13px; border-radius: 8px; justify-content: center; }
}

@media (max-width: 420px) {
  .topbar-list { gap: 12px; font-size: 11px; }
  .topbar-list li:nth-child(3) { display: none; }
  .brand img { width: 160px; }
  .mobile-nav-brand img { width: 160px; }
  .mobile-nav-head { min-height: 76px; padding-inline: 16px; }
  .nav-list { padding-inline: 13px; }
  .site-nav .header-cta { margin-inline: 13px; }
  .mobile-nav-extra { margin-inline: 13px; padding: 17px; }
  .hero h1 { font-size: 38px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-pill { min-height: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  .loader-logo-fill { animation: none; clip-path: none; }
  .loader-bubble, .loader-caption { animation: none; }
}

/* Partners Marquee Styles */
.partners-marquee-section {
  padding: 60px 0 50px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
html[dir="rtl"] .marquee-track {
  animation: marquee-scroll-rtl 40s linear infinite;
}
html[dir="rtl"] .marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
.partner-marquee-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(4, 35, 68, 0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.partner-marquee-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 25px rgba(4, 35, 68, 0.09);
  transform: translateY(-3px);
}
.partner-logo-box {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--line);
}
.partner-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partner-info {
  display: flex;
  flex-direction: column;
}
.partner-tag-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 2px;
}
.partner-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* Headquarters Map Styles */
.hq-map-wrapper {
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hq-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  background: var(--navy);
  color: var(--white);
}
.hq-map-title {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hq-map-title i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 10px;
  flex: 0 0 44px;
}
.hq-map-title strong {
  display: block;
  font-size: 16px;
  color: var(--white);
}
.hq-map-title span {
  display: block;
  font-size: 13px;
  color: #cfddec;
}
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: .2s ease;
}
.btn-outline-navy:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}
.hq-map-frame-container {
  width: 100%;
  height: 380px;
  background: var(--surface);
  position: relative;
}
.hq-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767px) {
  .partners-marquee-section { padding: 45px 0 35px; }
  .partner-marquee-card { min-width: 240px; padding: 10px 14px; gap: 12px; }
  .partner-logo-box { width: 44px; height: 44px; flex: 0 0 44px; }
  .partner-name { font-size: 13px; }
  .hq-map-header { flex-direction: column; align-items: flex-start; padding: 18px 20px; }
  .btn-outline-navy { width: 100%; justify-content: center; }
  .hq-map-frame-container { height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .marquee-track { animation: none !important; }
}
