:root {
  --blue: #1558a8;
  --blue-h: #1068c8;
  --blue-pale: #ebf4ff;
  --blue-mid: #bdd9f7;
  --teal: #0b8a8a;
  --gold: #b8892e;
  --gold-l: #d4a94e;
  --white: #ffffff;
  --off: #f6f9fc;
  --g100: #eef3f8;
  --g200: #d8e4ee;
  --g400: #8aaabe;
  --dark: #0e1f30;
  --text: #162638;
  --mid: #456070;
  --light: #8aaabe;
  --sh-sm: 0 2px 16px rgba(21, 88, 168, 0.08);
  --sh-md: 0 8px 40px rgba(21, 88, 168, 0.13);
  --sh-lg: 0 24px 80px rgba(21, 88, 168, 0.18);
  --r: 18px;
  --font: "Cairo", sans-serif;
  --serif: "Playfair Display", serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  direction: rtl;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--g100);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  transition: all 0.4s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-sm);
  padding: 13px 64px;
}

.logo {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.5px;
}

.logo-mark img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  color: rgb(101, 133, 202);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 10px 26px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(21, 88, 168, 0.3);
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--blue-h) !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background: url("images/صورة\ الهيرو.webp") center/cover no-repeat;
  background-color: #0c2e55;
}

.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 25, 45, 0.692) 0%,
    rgba(10, 25, 45, 0.733) 45%,
    rgba(10, 25, 45, 0.25) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 140px 64px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.chip-dot {
  width: 8px;
  height: 8px;
  background: #4fd1a0;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

h1.htitle {
  font-family: var(--font);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 900;
  line-height: 1.15;
  color: white;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

h1.htitle em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: #a8d8ff;
  font-size: clamp(42px, 5.5vw, 76px);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  box-shadow: 0 8px 30px rgba(21, 88, 168, 0.5);
  transition: all 0.3s;
}

.btn-hero-p:hover {
  background: var(--blue-h);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(21, 88, 168, 0.55);
}

.btn-hero-g {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: white;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.3s;
}

.btn-hero-g:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.t-avs {
  display: flex;
}

.t-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid white;
  margin-left: -10px;
  overflow: hidden;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.t-txt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.t-txt strong {
  color: white;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 36px 32px;
}

.hc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hc-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hc-row:first-child {
  padding-top: 0;
}

.hc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.hc-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
}

.hc-val {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1s 1.8s forwards;
}

.sh-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  margin: 6px auto;
  animation: shPulse 2s infinite;
}

.sh-txt {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

@keyframes shPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.hero-text > * {
  opacity: 0;
  animation: hIn 0.9s ease forwards;
}

.hero-chip {
  animation-delay: 0.2s;
}
h1.htitle {
  animation-delay: 0.45s;
}
.hero-sub {
  animation-delay: 0.65s;
}
.hero-btns {
  animation-delay: 0.85s;
}
.hero-trust {
  animation-delay: 1.05s;
}
.hero-card {
  animation-delay: 0.5s;
  opacity: 0;
  animation: hIn 0.9s 0.5s ease forwards;
}

@keyframes hIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-band {
  background: var(--blue);
}

.stats-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-box {
  padding: 46px 20px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.stat-box:last-child {
  border-left: none;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stat-n {
  font-family: var(--font);
  font-size: 50px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-l {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 110px 64px;
}

.sec-center {
  text-align: center;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid var(--blue-mid);
}

.sec-title {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.sec-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

.sec-desc {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.9;
  max-width: 560px;
}

.sec-desc.c {
  margin: 0 auto;
}

.srv-bg {
  background: var(--off);
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.srv-card {
  background: white;
  border: 1px solid var(--g200);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s;
  position: relative;
}

.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-mid);
}

.srv-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.srv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background-size: cover;
  background-position: center;
}

.srv-card:hover .srv-img {
  transform: scale(1.06);
}

.srv-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 31, 48, 0.55) 0%,
    transparent 60%
  );
}

.srv-num {
  position: absolute;
  top: 14px;
  right: 16px;
  background: white;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: var(--sh-sm);
}

.srv-body {
  padding: 24px;
}

.srv-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.srv-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
}

.srv-price {
  margin-top: 16px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.srv-arrow {
  position: absolute;
  bottom: 22px;
  left: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
}

.srv-card:hover .srv-arrow {
  background: var(--blue);
  color: white;
}

.why-bg {
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-img-col {
  position: relative;
}

.why-main-img {
  width: 100%;
  border-radius: 24px;
  height: 520px;
  object-fit: cover;
  background: url("images/صورة\ لماذا\ نحن\ .webp") center/cover no-repeat;
  background-color: #c0d4e8;
  box-shadow: var(--sh-lg);
}

.why-badge-card {
  position: absolute;
  bottom: -24px;
  right: -28px;
  background: white;
  border: 1px solid var(--g200);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.wbc-icon {
  font-size: 32px;
}
.wbc-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.wbc-lbl {
  font-size: 12px;
  color: var(--mid);
  margin-top: 2px;
}

.why-cert {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--blue);
  color: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(21, 88, 168, 0.4);
  text-align: center;
}

.wc-icon {
  font-size: 24px;
  margin-bottom: 4px;
}
.wc-txt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--off);
  border: 1px solid var(--g200);
  border-radius: 16px;
  transition: all 0.3s;
}

.why-item:hover {
  border-color: var(--blue-mid);
  background: var(--blue-pale);
  box-shadow: var(--sh-sm);
}

.wi-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(21, 88, 168, 0.3);
}

.wi-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.wi-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
}

.ba-bg {
  background: var(--off);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.ba-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--g200);
  aspect-ratio: 4/3;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--sh-md);
}

.ba-card:hover {
  box-shadow: var(--sh-lg);
}

.ba-lbl {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 700;
  position: absolute;
  top: 16px;
  z-index: 5;
}

.ba-lbl.before {
  right: 16px;
  background: rgba(14, 31, 48, 0.75);
  color: white;
  backdrop-filter: blur(8px);
}

.ba-lbl.after {
  left: 16px;
  background: var(--blue);
  color: white;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before {
  z-index: 1;
  background: #b0bec8;
}

.ba-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  background: #8ab4cc;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: white;
  z-index: 10;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.ba-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}
.footer{
    background: var(--blue);

}
.ba-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(14, 31, 48, 0.85), transparent);
  z-index: 20;
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.doc-bg {
  background: white;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.doc-card {
  background: var(--off);
  border: 1px solid var(--g200);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s;
}

.doc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-mid);
}

.doc-photo {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.doc-card:hover .doc-photo img {
  transform: scale(1.05);
}

.doc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--off) 0%, transparent 50%);
}

.doc-info {
  padding: 22px;
}

.doc-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.doc-title {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.doc-bio {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

.doc-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.tag {
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid var(--blue-mid);
}

.doc-btn {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--blue-mid);
  border-radius: 10px;
  padding: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.3s;
}

.doc-btn:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.doc-ov {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 35, 0.72);
  backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.doc-ov.open {
  opacity: 1;
  pointer-events: all;
}

.ov-box {
  background: white;
  border-radius: 24px;
  max-width: 860px;
  width: 90%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: all 0.4s;
  box-shadow: var(--sh-lg);
}

.doc-ov.open .ov-box {
  transform: translateY(0) scale(1);
}

.ov-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--g100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.ov-close:hover {
  background: var(--blue);
  color: white;
}

.ov-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}

.ov-img {
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  background: #c0d4e8;
}

.ov-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ov-name {
  font-family: var(--font);
  font-size: 30px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 4px;
}

.ov-spec {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ov-story {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.9;
}

.ov-skills {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sk-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 6px;
}

.sk-bar {
  height: 6px;
  background: var(--g100);
  border-radius: 3px;
  overflow: hidden;
}

.sk-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 3px;
  width: 0;
  transition: width 1.2s ease;
}

.tst-bg {
  background: var(--off);
}

.chat-wrap {
  max-width: 580px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cm {
  max-width: 78%;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.5s;
}

.cm.show {
  opacity: 1;
  transform: translateY(0);
}

.cm.recv {
  align-self: flex-end;
}

.cm.sent {
  align-self: flex-start;
}

.cm-who {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 5px;
}

.bubble {
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark);
}

.recv .bubble {
  background: white;
  border: 1px solid var(--g200);
  border-bottom-left-radius: 4px;
  box-shadow: var(--sh-sm);
}

.sent .bubble {
  background: var(--blue);
  color: white;
  border-bottom-right-radius: 4px;
}

.cm-time {
  font-size: 11px;
  color: var(--light);
  margin-top: 4px;
}

.recv .cm-time {
  text-align: right;
}

.off-bg {
  background: white;
}

.offer-card {
  max-width: 700px;
  margin: 52px auto 0;
  background: linear-gradient(135deg, #0e4a8a 0%, #1558a8 50%, #1068c8 100%);
  border-radius: 28px;
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(21, 88, 168, 0.38);
  text-align: center;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.offer-card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.off-badge {
  display: inline-block;
  background: #f0c96a;
  color: #0e1f30;
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.off-pct {
  font-family: var(--font);
  font-size: 96px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.off-pct sup {
  font-size: 40px;
  vertical-align: top;
  margin-top: 16px;
  display: inline-block;
}

.off-name {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  margin: 8px 0 28px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.cd-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 24px;
  min-width: 76px;
}

.cd-n {
  font-family: var(--font);
  font-size: 42px;
  color: white;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.cd-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.cd-sep {
  font-family: var(--font);
  font-size: 38px;
  color: rgba(255, 255, 255, 0.45);
  align-self: center;
  padding-top: 4px;
}

.scarcity-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 8px 22px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: urgP 2.5s infinite;
}

@keyframes urgP {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.14);
  }
}

.sc-dot {
  width: 8px;
  height: 8px;
  background: #ffd166;
  border-radius: 50%;
  animation: blink 1s infinite;
}

.btn-offer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--blue);
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.btn-offer:hover {
  transform: translateY(-3px);
  background: #f0c96a;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}

.final {
  background: linear-gradient(160deg, #ebf4ff 0%, #f0f8ff 50%, #e8f5f5 100%);
  padding: 140px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
}

.final-big {
  font-family: var(--font);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.final-big em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

.final-sub {
  font-size: 16px;
  color: var(--mid);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.9;
}

.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  box-shadow: 0 8px 30px rgba(21, 88, 168, 0.35);
  transition: all 0.3s;
}

.btn-p:hover {
  background: var(--blue-h);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(21, 88, 168, 0.4);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--blue);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--blue-mid);
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.3s;
}

.btn-o:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}

#booking-form {
  display: none;
  max-width: 520px;
  margin: 40px auto 0;
  background: white;
  border: 1px solid var(--g200);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--sh-lg);
  text-align: right;
}

.ft {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 22px;
}

.ff {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fi {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  font-size: 15px;
  color: var(--dark);
  font-family: var(--font);
  outline: none;
  transition:
    border 0.3s,
    box-shadow 0.3s;
  background: var(--off);
  direction: rtl;
}

.fi:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(21, 88, 168, 0.12);
}

.fi.error {
  border-color: #e53e3e !important;
  background-color: #fff5f5 !important;
}

.error-msg {
  color: #e53e3e;
  font-size: 12px;
  margin-top: 6px;
  margin-right: 4px;
  font-weight: 500;
  height: 20px;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

.btn-p.shake {
  animation: shake 0.3s ease-in-out 0s 2;
}

.success-message {
  text-align: center;
  padding: 40px 20px;
  background: #e6fffa;
  border-radius: 24px;
  color: #0b8a8a;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid #9ae6b4;
  box-shadow: 0 8px 24px rgba(11, 138, 138, 0.15);
}

.success-message::before {
  content: "✓";
  display: block;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 12px;
}

footer {
  background: var(--dark);
  padding: 56px 64px;
  text-align: center;
}

.fl {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.fl span {
  color: #6eb8ff;
}

.ft2 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.flinks {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

.flinks a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.flinks a:hover {
  color: #6eb8ff;
}

.fcopy {
  margin-top: 36px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18);
}

#mag-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 800;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  box-shadow: 0 8px 32px rgba(21, 88, 168, 0.45);
  transition: all 0.2s ease;
}

#mag-btn:hover {
  transform: scale(1.03);
  background: var(--blue-h);
}

.rv {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.rv.v {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

@media (max-width: 1100px) {
  nav {
    padding: 16px 28px;
  }
  nav.scrolled {
    padding: 12px 28px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 120px 28px 80px;
  }
  .hero-card {
    display: none;
  }
  .why-grid,
  .ov-grid {
    grid-template-columns: 1fr;
  }
  .srv-grid,
  .doc-grid,
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box:nth-child(2) {
    border-left: none;
  }
  .stat-box:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .wrap {
    padding: 80px 28px;
  }
  .final {
    padding: 100px 28px;
  }
  footer {
    padding: 48px 28px;
  }
  .nav-links {
    display: none;
  }
  .why-badge-card,
  .why-cert {
    display: none;
  }
}

@media (max-width: 640px) {
  .srv-grid,
  .doc-grid,
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .stat-box {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-box:first-child {
    border-top: none;
  }
  h1.htitle {
    font-size: 36px;
  }
  .off-pct {
    font-size: 72px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--blue);
  border-radius: 10px;
  transition: all 0.3s;
}

.nav-links-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 100px 30px 40px;
  list-style: none;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-links-mobile.active {
  right: 0;
}

.nav-links-mobile a {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--g200);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
}
.srv-card,
.doc-card,
#mag-btn {
  will-change: transform;
  backface-visibility: hidden;
}

@media (hover: none) and (pointer: coarse) {
  .srv-card,
  .doc-card {
    transform: none !important;
    transition: none !important;
  }
  .srv-card:hover,
  .doc-card:hover {
    transform: translateY(-4px) !important;
  }
}

img {
  max-width: 100%;
  height: auto;
  content-visibility: auto;
}

/* ===== رقم الهاتف وواتساب في الهيدر ===== */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dark) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: color 0.3s !important;
}
.nav-phone:hover { color: var(--blue) !important; }

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366 !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 50px;
  font-size: 12px !important;
  font-weight: 700 !important;
  transition: all 0.3s !important;
}
.nav-whatsapp:hover {
  background: #1ebe5a !important;
  transform: translateY(-2px);
}
.nav-whatsapp::after { display: none !important; }

/* ===== FAQ ===== */
.faq-bg {
  background: var(--off);
  padding: 0;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--g200);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: right;
  gap: 12px;
}
.faq-icon {
  font-size: 22px;
  color: var(--blue);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
  color: var(--mid);
  font-size: 15px;
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ===== التأمين ===== */
.ins-bg {
  background: var(--dark);
  padding: 0;
}
.ins-bg .sec-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.ins-bg .sec-title { color: white; }
.ins-bg .sec-desc { color: rgba(255,255,255,0.6); }
.ins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.ins-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  transition: all 0.3s;
}
.ins-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.ins-note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
@media(max-width:768px) {
  .ins-grid { grid-template-columns: repeat(2,1fr); }
}

/* ===== شارات الاعتماد ===== */
.cert-bg {
  background: white;
  padding: 0;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cert-badge {
  background: var(--blue-pale);
  border: 1.5px solid var(--blue-mid);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.cert-badge:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--blue);
}
.cert-icon { font-size: 40px; margin-bottom: 12px; }
.cert-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.cert-sub {
  font-size: 13px;
  color: var(--mid);
}
@media(max-width:768px) {
  .cert-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:480px) {
  .cert-grid { grid-template-columns: 1fr; }
}

/* ===== خريطة الموقع ===== */
.map-bg { background: var(--off); padding: 0; }
.map-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: stretch;
  min-height: 400px;
}
.map-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--g200);
}
.map-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.map-detail-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-detail-title {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 4px;
  font-weight: 600;
}
.map-detail-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.7;
}
.map-embed {
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--sh-md);
}
@media(max-width:900px) {
  .map-container { grid-template-columns: 1fr; }
  .map-embed { min-height: 280px; }
}

/* ===== Calendly ===== */
.cal-bg { background: white; padding: 0; }
.cal-container { max-width: 820px; margin: 0 auto; }
.cal-placeholder {
  background: var(--off);
  border: 2px dashed var(--blue-mid);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}
.cal-ph-icon { font-size: 64px; margin-bottom: 16px; }
.cal-placeholder h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}
.cal-placeholder p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 16px;
}
.cal-code {
  display: block;
  background: var(--dark);
  color: #6eb8ff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  margin: 0 auto;
  max-width: 480px;
  text-align: left;
  direction: ltr;
}
