:root {
  --navy-950: #061018;
  --navy-900: #08172b;
  --navy-800: #0a2558;
  --navy-700: #12356f;
  --navy-600: #1a4a8a;
  --gold: #c9a24d;
  --gold-2: #d4af37;
  --gold-soft: #e8d5a3;
  --cream: #f6f1e6;
  --white: #ffffff;
  --muted: rgba(246, 241, 230, 0.72);
  --line: rgba(201, 162, 77, 0.28);
  --shadow: 0 22px 50px rgba(6, 16, 24, 0.35);
  --radius: 22px;
  --header-h: 86px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Cairo", sans-serif;
  background: var(--navy-950);
  color: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(201, 162, 77, 0.16), transparent 55%),
    radial-gradient(700px 360px at 0% 20%, rgba(18, 53, 111, 0.55), transparent 60%),
    linear-gradient(180deg, #071422 0%, #0a1d38 40%, #061018 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(8, 23, 43, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(6, 16, 24, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 64px;
  width: auto;
  mix-blend-mode: screen;
  filter: contrast(1.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-inline-start: auto;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.3s ease;
}

.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, #e4c97a, var(--gold) 45%, #a8842d);
  color: #1a1408;
  box-shadow: 0 10px 24px rgba(201, 162, 77, 0.28);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 56px 0 80px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 16, 24, 0.92) 0%, rgba(8, 23, 43, 0.78) 46%, rgba(6, 16, 24, 0.55) 100%),
    linear-gradient(180deg, rgba(6, 16, 24, 0.22), rgba(6, 16, 24, 0.82));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-content { max-width: 640px; }

.hero-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 77, 0.35);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  min-height: 480px;
  height: 480px;
  background: #0a1a33 url("../assets/images/hero-journey.jpg") center 18% / cover no-repeat;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 23, 43, 0.86);
  border: 1px solid rgba(201, 162, 77, 0.4);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(10px);
  animation: floatChip 4.2s ease-in-out infinite;
}

.hero-chip i { color: var(--gold); }
.hero-chip-1 { top: 22px; left: 18px; }
.hero-chip-2 { bottom: 22px; right: 18px; animation-delay: 0.8s; }

.kicker {
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Cinzel", "Playfair Display", serif;
}

.eyebrow {
  color: var(--gold-soft);
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

h1, h2, h3 { line-height: 1.35; }
h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 14px 0 10px;
  font-weight: 800;
}

.hero-en {
  font-family: "Playfair Display", serif;
  color: var(--gold-soft);
  font-size: 20px;
  margin-bottom: 22px;
}

.slogan {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.slogan span { font-weight: 700; font-size: 20px; }

.slogan strong {
  background: linear-gradient(135deg, #e8d5a3, var(--gold));
  color: #1a1408;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 16px;
}

.hero-lead, .lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.hero-note {
  color: rgba(246, 241, 230, 0.78);
  font-size: 15px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.hero-note i { color: var(--gold); margin-top: 6px; }

.trust {
  padding: 0 0 20px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item, .why-card, .service-panel, .center-card, .pkg, .cta-panel, .perks-box, .contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover, .center-card:hover, .service-panel:hover, .pkg:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 77, 0.42);
}

.trust-item {
  padding: 22px 18px;
  text-align: center;
}

.trust-item i {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 8px;
  display: inline-block;
}

.trust-item strong, .trust-item span { display: block; }
.trust-item span { color: var(--muted); font-size: 14px; }

.section {
  position: relative;
  padding: 86px 0;
  scroll-margin-top: var(--header-h);
}

.band-a {
  --cream: #10233a;
  --muted: rgba(16, 35, 58, 0.72);
  --gold: #a8842d;
  --gold-soft: #8a6a1f;
  --line: rgba(16, 35, 58, 0.16);
  --shadow: 0 16px 36px rgba(10, 25, 45, 0.10);
  color: #10233a;
  background:
    radial-gradient(760px 300px at 100% 0%, rgba(201, 162, 77, 0.12), transparent 58%),
    linear-gradient(180deg, #fbf8f1 0%, #f3ede1 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(16, 35, 58, 0.08);
}

.band-a .trust-item,
.band-a .why-card,
.band-a .service-panel,
.band-a .center-card,
.band-a .pkg,
.band-a .perks-box,
.band-a .contact-card,
.band-a .steps li {
  background: #ffffff;
  border-color: rgba(16, 35, 58, 0.10);
  box-shadow: 0 16px 36px rgba(10, 25, 45, 0.10);
}

.band-a .why-card:hover,
.band-a .center-card:hover,
.band-a .service-panel:hover,
.band-a .pkg:hover {
  border-color: rgba(168, 132, 45, 0.55);
}

.band-a .icon-wrap { background: rgba(168, 132, 45, 0.14); }
.band-a .center-count { color: rgba(168, 132, 45, 0.26); }
.band-a .btn-ghost { background: #ffffff; }
.band-a .pkg-vip {
  background: linear-gradient(180deg, #fff8e6, #ffffff);
  border-color: rgba(168, 132, 45, 0.6);
  box-shadow: 0 24px 44px rgba(168, 132, 45, 0.18);
}

.band-b {
  background:
    radial-gradient(900px 360px at 8% 0%, rgba(201, 162, 77, 0.12), transparent 46%),
    linear-gradient(180deg, #0f2a58 0%, #081a35 100%);
  box-shadow:
    inset 0 1px 0 rgba(232, 213, 163, 0.22),
    inset 0 -1px 0 rgba(6, 16, 24, 0.35);
}

.band-b .why-card,
.band-b .service-panel,
.band-b .center-card,
.band-b .pkg,
.band-b .contact-card,
.band-b .steps li {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border-color: rgba(255, 255, 255, 0.12);
}

.section-head { margin-bottom: 40px; max-width: 760px; }
.section-head h2, .why h2, .egypt h2, .contact h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 10px 0 12px;
}

.why-grid, .centers-grid, .packages-grid {
  display: grid;
  gap: 16px;
}

.why-grid { grid-template-columns: repeat(6, 1fr); }
.why-card { grid-column: span 2; padding: 26px; }
.why-card-wide { grid-column: span 4; }

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 77, 0.12);
  color: var(--gold);
  margin-bottom: 14px;
}

.why-card p, .service-panel p, .center-card p, .egypt p, .pkg p { color: var(--muted); }

.services-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; }
.service-panel { padding: 32px; }
.service-panel-alt { background: linear-gradient(180deg, rgba(201,162,77,0.10), rgba(255,255,255,0.03)); }

.service-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 10px;
}

.service-top i { font-size: 22px; }
.service-panel h3 { font-size: 28px; margin-bottom: 10px; }

.check-list { margin: 22px 0; display: grid; gap: 10px; }
.check-list i { color: var(--gold); width: 18px; }

.text-link {
  color: var(--gold-soft);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.centers-grid { grid-template-columns: repeat(3, 1fr); }
.center-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.center-count {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(201, 162, 77, 0.22);
  position: absolute;
  top: 16px;
  left: 20px;
}

.center-card i { color: var(--gold); font-size: 26px; margin-bottom: 16px; }
.center-card.featured { border-color: rgba(201, 162, 77, 0.45); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: none;
}

.steps li {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.steps span {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--gold);
  font-size: 20px;
}

.perks { padding-top: 86px; }
.perks-box {
  padding: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.perks-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

.perks-box i { color: var(--gold); width: 20px; }

.packages-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.pkg { padding: 28px 24px 26px; display: flex; flex-direction: column; }
.pkg h3 { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 600; }
.pkg-ar { margin: 6px 0 18px; }
.pkg ul { display: grid; gap: 10px; margin-bottom: 24px; flex: 1; }
.pkg ul li::before {
  content: "✦";
  color: var(--gold);
  margin-left: 8px;
}

.pkg-vip {
  transform: translateY(-10px);
  border-color: rgba(201, 162, 77, 0.7);
  background: linear-gradient(180deg, rgba(201,162,77,0.22), rgba(10,37,88,0.42));
  box-shadow: 0 24px 40px rgba(201, 162, 77, 0.12);
}

.pkg-vip:hover { transform: translateY(-14px); }

.badge {
  display: inline-block;
  background: var(--gold);
  color: #1a1408;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.egypt-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
}

.egypt-media {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.egypt-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.contact-cards { display: grid; gap: 12px; margin-top: 24px; }
.contact-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
}

.contact-card i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 77, 0.14);
  color: var(--gold);
}

.contact-card strong, .contact-card span { display: block; }
.contact-card span { color: var(--muted); }

.cta-panel {
  padding: 36px 28px;
  background:
    linear-gradient(180deg, rgba(6,16,24,0.84), rgba(8,23,43,0.88)),
    url("../assets/images/brand-navy.png") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 100%;
}

.site-footer {
  padding: 42px 0 14px;
  background: #050b12;
  border-top: 1px solid rgba(201, 162, 77, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 28px;
  padding-bottom: 8px;
}

.footer-brand p { color: var(--muted); max-width: 34ch; }
.footer-en {
  font-family: "Playfair Display", serif;
  color: var(--gold-soft);
  margin-top: 4px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-col h4 {
  color: var(--gold-soft);
  font-size: 16px;
  margin-bottom: 4px;
}

.footer-col a, .footer-col p { color: var(--muted); }
.footer-col a:hover { color: var(--cream); }

.footer-contact {
  direction: rtl;
  text-align: right;
}

.footer-line {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  direction: rtl;
  text-align: right;
}

.footer-line i {
  color: var(--gold);
  width: 18px;
  margin-top: 5px;
  flex-shrink: 0;
}
.site-footer .brand-logo { height: 68px; }

.m2-signature {
  --m2-sig-text: #f6f1e6;
  --m2-sig-accent: #c9a24d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 12px;
  padding-top: 12px;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  letter-spacing: 0.2px;
  text-align: center;
  line-height: 1;
}

.m2-signature__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.m2-signature__logo:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.m2-signature__logo img {
  height: 18px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
}

.m2-signature__mark {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--m2-sig-accent);
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--m2-sig-accent) 55%, transparent));
  animation: m2-sig-pulse 3.4s ease-in-out infinite;
}

.m2-signature__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes m2-sig-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.12) rotate(45deg); opacity: 1; }
}

.m2-signature__tag,
.m2-signature__tag strong {
  color: var(--m2-sig-text);
  font-size: 13px;
}

.m2-signature__year {
  color: color-mix(in srgb, var(--m2-sig-text) 78%, transparent);
  font-size: 13px;
}

.wa-float {
  position: fixed;
  inset: auto 18px 18px auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  z-index: 50;
  animation: pulse 2.4s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.85s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.18s; }
.delay-3 { animation-delay: 0.26s; }
.delay-4 { animation-delay: 0.34s; }
.delay-5 { animation-delay: 0.42s; }
.delay-6 { animation-delay: 0.5s; }

.js-ready .reveal { animation-play-state: paused; }
.js-ready .reveal.in { animation-play-state: running; }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

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

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

@media (max-width: 980px) {
  .nav {
    position: absolute;
    inset: var(--header-h) 16px auto;
    display: none;
    flex-direction: column;
    padding: 18px;
    background: rgba(8, 23, 43, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; margin-inline-start: auto; }
  .header-cta { display: none; }
  .trust-grid, .centers-grid, .packages-grid, .steps, .services-grid, .contact-grid, .egypt-wrap, .perks-box, .hero-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 320px; height: 320px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card, .why-card-wide { grid-column: auto; }
  .pkg-vip { transform: none; }
  .perks-box ul { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  h1 { font-size: 34px; }
  .brand-logo { height: 52px; }
  .hero { padding: 48px 0 70px; }
}

@media (max-width: 575px) {
  .m2-signature { gap: 8px 10px; }
}
