/* =========================================================
   Najm Alithar — Luxury Travel Landing
   Brand: Deep Teal (#0e4a4a) + Gold (#c9a24a) on Ivory
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root{
  --c-teal:        #0e4a4a;
  --c-teal-2:      #143f3f;
  --c-teal-deep:   #0a3535;
  --c-gold:        #c9a24a;
  --c-gold-soft:   #e2c684;
  --c-ivory:       #f7f2e8;
  --c-cream:       #fbf7ee;
  --c-paper:       #ffffff;
  --c-ink:         #1a2626;
  --c-ink-soft:    #5a6a6a;
  --c-line:        rgba(14,74,74,.14);

  --f-display: "Amiri", "Cairo", "Times New Roman", serif;
  --f-body:    "Cairo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow-sm: 0 4px 14px rgba(10,53,53,.06);
  --shadow-md: 0 18px 40px -18px rgba(10,53,53,.28);
  --shadow-lg: 0 40px 80px -30px rgba(10,53,53,.35);

  --radius: 4px;
  --radius-lg: 10px;

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family: var(--f-body);
  background: var(--c-ivory);
  color: var(--c-ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  direction: rtl;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font: inherit; background:none; border:0; cursor:pointer; color:inherit; }
ul{ list-style:none; }

/* ---------- Layout helpers ---------- */
.container{ width:100%; max-width: var(--container); margin-inline:auto; padding-inline: var(--pad-x); }
.section{ padding: clamp(80px, 10vw, 140px) 0; position: relative; }

/* ---------- Typography ---------- */
.h2{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.35;
  color: var(--c-teal-deep);
  letter-spacing: -.01em;
  max-width: 22ch;
}
.h2 em{ color: var(--c-gold); font-style: normal; }
.h2--light{ color: var(--c-cream); }
.h2--light em{ color: var(--c-gold-soft); }

.lede{
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--c-ink-soft);
  max-width: 52ch;
  margin-top: 20px;
}
.lede--light{ color: rgba(251,247,238,.75); }

.eyebrow{
  font-size: .78rem;
  letter-spacing: .28em;
  color: var(--c-gold);
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before{
  content:""; width: 32px; height:1px; background: var(--c-gold);
}
.eyebrow--light{ color: var(--c-gold-soft); }
.eyebrow--light::before{ background: var(--c-gold-soft); }
.eyebrow + .h2{ margin-top: 22px; }

.section__head{
  margin-bottom: clamp(56px, 7vw, 92px);
  text-align: center;
}
.section__head .eyebrow{
  justify-content:center;
  margin-bottom: 16px;
}
.section__head .h2{
  margin: 20px auto 0;
}
.section__head--row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap:wrap;
  gap:32px;
  text-align: start;
}
.section__head--row .eyebrow{
  justify-content:flex-start;
  margin-bottom: 12px;
}
.section__head--row .h2{
  margin-inline:0;
  margin-top: 18px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items:center; justify-content:center; gap: 12px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: .96rem;
  border-radius: 6px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: .01em;
  cursor: pointer;
}
.btn svg{ transition: transform .3s var(--ease); flex-shrink: 0; }
.btn:hover svg{ transform: translateX(-4px); }

.btn--primary{
  background: var(--c-gold);
  color: var(--c-teal-deep);
  box-shadow: 0 14px 36px -14px rgba(201,162,74,.65);
  font-weight: 700;
}
.btn--primary:hover{
  background: #d5b25e;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -16px rgba(201,162,74,.7);
}

.btn--ghost{
  background: rgba(255,255,255,.1);
  color: var(--c-cream);
  border: 1px solid rgba(255,255,255,.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}

.btn--outline{
  background: transparent;
  color: var(--c-cream);
  border: 1.5px solid var(--c-gold-soft);
}
.btn--outline:hover{
  background: rgba(201,162,74,.1);
  border-color: var(--c-gold);
  color: var(--c-cream);
  transform: translateY(-2px);
}

.btn--lg{
  padding: 20px 36px;
  font-size: 1.02rem;
  min-height: 56px;
}

.link-arrow{
  display: inline-flex;
  align-items:center;
  gap:12px;
  color: var(--c-teal-deep);
  font-weight: 700;
  border-bottom: 1.5px solid var(--c-line);
  padding-bottom: 6px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
  font-size: .98rem;
  letter-spacing: .01em;
}
.link-arrow svg{
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.link-arrow:hover{
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.link-arrow:hover svg{
  transform: translateX(-5px);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 28px;
}
.nav__brand{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-shrink: 0;
}
.nav__logo{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--c-cream);
  padding: 4px;
  box-shadow: 0 8px 20px -8px rgba(10,53,53,.25);
  object-fit: contain;
  transition: transform .3s var(--ease);
}
.nav__brand:hover .nav__logo{ transform: scale(1.05); }
.nav__brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
  color: var(--c-cream);
}
.nav__brand-name{
  font-family: var(--f-display);
  font-weight:700;
  font-size: 1.1rem;
  letter-spacing: -.01em;
}
.nav__brand-sub{
  font-size: .7rem;
  color: var(--c-gold-soft);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav__links{
  display:flex;
  gap: clamp(20px, 3vw, 40px);
  flex: 1;
  justify-content: center;
}
.nav__links a{
  font-size: .9rem;
  color: var(--c-cream);
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  transition: color .25s var(--ease);
  letter-spacing: .01em;
}
.nav__links a::after{
  content:"";
  position:absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__links a:hover{ color: var(--c-gold-soft); }
.nav__links a:hover::after{ transform: scaleX(1); }

.nav__cta{
  padding: 12px 24px;
  background: var(--c-gold);
  color: var(--c-teal-deep);
  border-radius: 6px;
  font-weight: 700;
  font-size: .92rem;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .01em;
}
.nav__cta:hover{
  background: #d5b25e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(201,162,74,.4);
}

.nav__toggle{
  display:none;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  gap: 6px;
  flex-shrink: 0;
  transition: opacity .3s var(--ease);
}
.nav__toggle:hover{ opacity: .8; }
.nav__toggle span{
  width: 24px;
  height: 2.5px;
  background: var(--c-cream);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  border-radius: 1.5px;
}

/* Scrolled state */
.nav.is-scrolled{
  background: rgba(10, 53, 53, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  border-color: rgba(201,162,74,.18);
  box-shadow: var(--shadow-sm);
}

/* Mobile drawer */
.nav__drawer{
  position: fixed;
  inset: 0 0 auto 0;
  background: linear-gradient(180deg, var(--c-teal-deep) 0%, #0a3535 100%);
  padding: 108px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform .5s var(--ease);
  border-bottom: 1.5px solid rgba(201,162,74,.22);
  box-shadow: 0 16px 32px -8px rgba(0,0,0,.2);
}
.nav__drawer a{
  padding: 18px 0;
  color: var(--c-cream);
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .25s var(--ease);
  letter-spacing: .01em;
}
.nav__drawer a:hover{ color: var(--c-gold-soft); }
.nav__drawer-cta{
  margin-top: 24px;
  background: var(--c-gold);
  color: var(--c-teal-deep) !important;
  text-align:center;
  border-radius: 6px;
  border-bottom: 0 !important;
  padding: 16px !important;
  font-weight: 700;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav__drawer-cta:hover{
  background: #d5b25e;
  box-shadow: 0 8px 20px -8px rgba(201,162,74,.4);
}
.nav.is-open .nav__drawer{ transform: translateY(0); }
.nav.is-open .nav__toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2){ opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--c-cream);
  padding: 140px 0 100px;
}
.hero__media{ position: absolute; inset: 0; z-index: -1; }
.hero__media img{
  width:100%; height:100%; object-fit: cover; object-position: center 35%;
  transform: scale(1.02);
  animation: heroZoom 20s var(--ease) forwards;
  filter: saturate(.92);
}
@keyframes heroZoom{ to{ transform: scale(1); } }
.hero__scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,53,53,.75) 0%, rgba(10,53,53,.65) 40%, rgba(10,53,53,.92) 100%),
    radial-gradient(circle at 35% 35%, rgba(201,162,74,.14), transparent 60%);
}

.hero__frame{ position: relative; z-index: 2; max-width: 920px; margin: 0 auto; text-align: center; }

.hero__eyebrow{
  display:flex; align-items:center; justify-content:center; gap: 12px;
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--c-gold-soft);
  font-weight: 600;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.hero__title{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.35;
  letter-spacing: -.01em;
  max-width: 32ch;
  margin: 0 auto 40px;
  color: var(--c-cream);
  text-shadow: 0 4px 32px rgba(0,0,0,.25);
}
.hero__title em{ color: var(--c-gold); font-style: normal; font-weight: 700; }

.hero__sub{
  margin: 0 auto 26px;
  max-width: 58ch;
  font-size: clamp(1.4rem, 1.3vw, 1.18rem);
  color: rgba(251,247,238,.88);
  line-height: 1.75;
  font-weight: 400;
}
.hero__sub strong{ color: var(--c-gold-soft); font-weight: 700; }

.hero__highlights{
  margin: 0 auto 48px;
  line-height: 1.95;
}


/* Destination chips — the offer at a glance, without emoji */
.hero__pills{
  margin: 0 auto;
  max-width: 660px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.hero__pills li{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(251,247,238,.92);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,162,74,.32);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.hero__pills li:hover{
  background: rgba(201,162,74,.14);
  border-color: rgba(201,162,74,.6);
  transform: translateY(-2px);
}
.hero__pills svg{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--c-gold-soft);
}

.hero__ctas{
  margin: 36px 0 8px;
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center; justify-content: center;
}
.hero__ctas .btn{ min-height: 52px; }

.hero__social{
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(201,162,74,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 18px);
  flex-wrap: wrap;
  max-width: 420px;
  margin-inline: auto;
}
.hero__social-link{
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: var(--c-cream);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.hero__social-link svg{ width: 20px; height: 20px; }
.hero__social-link:hover{
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 14px 28px -12px rgba(0,0,0,.5);
}
.hero__social-link--instagram:hover{ background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.hero__social-link--tiktok:hover{ background: #010101; }
.hero__social-link--snapchat:hover{ background: #FFFC00; color: #1a1a1a; }
.hero__social-link--whatsapp:hover{ background: #25D366; }

.hero__scroll{
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 42px;
  border: 1.5px solid rgba(201,162,74,.6);
  border-radius: 22px;
  display: flex; justify-content: center; padding-top: 8px;
  z-index: 3;
  transition: border-color .3s var(--ease);
}
.hero__scroll:hover{ border-color: var(--c-gold); }
.hero__scroll span{
  width: 2px; height: 8px; background: var(--c-gold);
  border-radius: 1px;
  animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot{ 0%{ transform: translateY(0); opacity:1 } 70%{ transform: translateY(16px); opacity:0 } 100%{ opacity:0 } }

/* ---------- Trust / license strip (hero) ---------- */
.trust-strip{
  margin: 44px auto 0;
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 999px;
  background: rgba(201,162,74,.1);
  border: 1px solid rgba(201,162,74,.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.trust-strip__icon{
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-teal-deep);
}
.trust-strip p{
  font-size: .92rem;
  color: rgba(251,247,238,.92);
  line-height: 1.6;
  text-align: right;
}
.trust-strip p strong{ color: var(--c-gold-soft); }
.trust-strip bdi{ font-weight: 700; color: var(--c-gold-soft); }

/* =========================================================
   ABOUT
   ========================================================= */
.about{ background: var(--c-cream); }
.about__grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.about__media{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 60px -24px rgba(10,53,53,.28);
  aspect-ratio: 4/3;
  border: 1px solid rgba(201,162,74,.12);
  background:
    radial-gradient(circle at 50% 42%, rgba(201,162,74,.14), transparent 55%),
    linear-gradient(150deg, var(--c-teal) 0%, var(--c-teal-deep) 100%);
  display: grid;
  place-items: center;
}
.about__media img{
  width: 55%;
  aspect-ratio: 1 / 1;
  object-fit:cover;
  border-radius: 50%;
  box-shadow: 0 24px 56px -20px rgba(0,0,0,.55), 0 0 0 1px rgba(201,162,74,.4);
  transition: transform 1.3s var(--ease);
}
.about__media:hover img{ transform: scale(1.05); }

.about__badge{
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--c-teal-deep);
  color: var(--c-cream);
  padding: 16px 24px;
  border-radius: 10px;
  border: 1.5px solid var(--c-gold);
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:14px;
  max-width: 260px;
  box-shadow: 0 12px 32px -12px rgba(10,53,53,.4);
}
.about__badge-icon{
  flex-shrink:0;
  width: 34px; height: 34px;
  border-radius: 50%;
  display:grid; place-items:center;
  color: var(--c-teal-deep);
  background: var(--c-gold);
  font-weight: 900;
  font-size: 1.05rem;
  line-height:1;
}
.about__badge-txt{
  font-size: .86rem;
  letter-spacing: .02em;
  color: var(--c-cream);
  font-weight: 700;
  line-height: 1.4;
}

.about__points{
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-line);
}
.about__points li{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-line);
  transition: opacity .3s var(--ease);
}
.about__points li:hover{ opacity: .8; }
.about__points span{
  font-family: var(--f-display);
  color: var(--c-gold);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .15em;
  flex-shrink: 0;
}
.about__points p{
  color: var(--c-ink);
  font-weight: 500;
  line-height: 1.75;
}

.about__body .link-arrow{ margin-top: 36px; }

/* ---------- Ministry verification badges ---------- */
.verify-row{
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.verify-badge{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.verify-badge:hover{ border-color: rgba(201,162,74,.5); transform: translateY(-2px); }
.verify-badge__icon{
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(201,162,74,.12);
  color: var(--c-gold);
}
.verify-badge__text{ display: flex; flex-direction: column; gap: 2px; }
.verify-badge__text strong{ font-size: .88rem; color: var(--c-teal-deep); font-weight: 700; }
.verify-badge__text em{ font-size: .78rem; color: var(--c-ink-soft); font-style: normal; direction: ltr; text-align: right; }

/* =========================================================
   SERVICES
   ========================================================= */
.services{ background: var(--c-ivory); }
.services__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border: none;
}
.services__grid--3{ grid-template-columns: repeat(3, 1fr); gap: 24px; }
.services__note{
  margin-top: 40px;
  text-align: center;
  font-style: italic;
  font-size: .88rem;
  color: var(--c-ink-soft);
  max-width: 62ch;
  margin-inline: auto;
  line-height: 1.8;
}
.service{
  padding: 48px 36px 44px;
  background: var(--c-cream);
  position: relative;
  transition: background .35s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  min-height: 280px;
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,162,74,.15);
  box-shadow: 0 12px 28px -16px rgba(10,53,53,.15);
}
.service:hover{
  background: var(--c-paper);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -20px rgba(10,53,53,.25);
  border-color: rgba(201,162,74,.3);
}
.service__num{
  font-family: var(--f-display);
  color: var(--c-gold);
  font-size: .85rem;
  letter-spacing: .25em;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.service h3{
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--c-teal-deep);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
.service p{ color: var(--c-ink-soft); font-size: .94rem; line-height: 1.7; }
.service__glyph{
  position: absolute; top: 32px; left: 32px;
  width: 64px; height: 64px;
  opacity: .2;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.service__glyph svg{
  width: 100%;
  height: 100%;
  stroke: var(--c-gold);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service:hover .service__glyph{
  opacity: .35;
  transform: scale(1.1);
}

/* =========================================================
   WHY
   ========================================================= */
.why{ background: var(--c-teal-deep); color: var(--c-cream); position:relative; overflow:hidden; }
.why::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 90% 10%, rgba(201,162,74,.06), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(201,162,74,.04), transparent 55%);
  pointer-events:none;
}
.why__grid{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
  position: relative;
}
.why__intro{ position: relative; }
.why__intro .h2{ color: var(--c-cream); }
.why__intro .h2 em{ color: var(--c-gold); }
.why__intro .lede{ color: rgba(251,247,238,.78); margin-top: 24px; }

.why__photo{
  margin-top: 36px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201,162,74,.3);
  box-shadow: 0 24px 56px -24px rgba(0,0,0,.5);
  transform: rotate(-1.2deg);
  transition: transform .5s var(--ease);
}
.why__photo:hover{ transform: rotate(0deg) scale(1.01); }
.why__photo img{ width: 100%; height: auto; display: block; }

.why__list--single{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why__list--single li{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 8px;
  border-bottom: 1px solid rgba(201,162,74,.18);
  transition: background .35s var(--ease), transform .35s var(--ease), padding .35s var(--ease);
  border-radius: var(--radius);
}
.why__list--single li:hover{
  background: rgba(201,162,74,.06);
  transform: translateX(-4px);
  padding-inline-start: 18px;
}
.why__check{
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-teal-deep);
}
.why__list--single p{ color: rgba(251,247,238,.82); font-size: .98rem; line-height: 1.8; }
.why__list--single p strong{ color: var(--c-gold-soft); font-weight: 700; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery{ background: var(--c-cream); }
.gallery__slider{
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.gallery__track{
  flex: 1;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  /* proximity, not mandatory: the last slide's start-aligned snap point sits
     past max scroll on wide screens, and mandatory would yank the track back
     off the end instead of letting it rest there. */
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  padding: 6px 6px 22px;
  margin: -6px -6px -22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery__track::-webkit-scrollbar{ display: none; }
.gallery__slide{
  flex: 0 0 auto;
  width: min(78vw, 380px);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  /* Square frame: the photos are a mix of landscape and portrait, and 1:1
     crops both by a similar amount instead of gutting the landscape ones. */
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,162,74,.16);
}
.gallery__slide img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%; /* bias up — faces sit above the midline */
  transition: transform .8s var(--ease);
}
.gallery__slide:hover img{ transform: scale(1.06); }
.gallery__slide figcaption{
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 18px 16px;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--c-cream);
  background: linear-gradient(0deg, rgba(10,53,53,.92) 0%, rgba(10,53,53,.55) 60%, transparent 100%);
}
.gallery__arrow{
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-paper);
  color: var(--c-teal-deep);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), opacity .3s var(--ease);
}
.gallery__arrow:hover{
  background: var(--c-gold);
  color: var(--c-teal-deep);
  border-color: var(--c-gold);
  transform: scale(1.06);
}
.gallery__arrow.is-disabled{ opacity: .35; pointer-events: none; }
.gallery__dots{
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.gallery__dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(14,74,74,.2);
  transition: background .3s var(--ease), transform .3s var(--ease), width .3s var(--ease);
}
.gallery__dot:hover{ background: rgba(14,74,74,.4); }
.gallery__dot.is-active{
  background: var(--c-gold);
  width: 26px;
  border-radius: 5px;
}

@media (max-width: 680px){
  .gallery__arrow{ display: none; }
  .gallery__slide{ width: 82vw; }
}

/* ---------- Video reel (vertical 9:16) ---------- */
.reel{
  margin-top: clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(150deg, var(--c-teal) 0%, var(--c-teal-deep) 100%);
  border: 1px solid rgba(201,162,74,.4);
  box-shadow: 0 40px 90px -32px rgba(10,53,53,.45);
}
.reel::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 15%, rgba(201,162,74,.16), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(201,162,74,.08), transparent 55%);
  pointer-events: none;
}
.reel__title{
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.35;
  color: var(--c-cream);
  font-weight: 700;
  margin-top: 20px;
  max-width: 20ch;
}
.reel__title em{ color: var(--c-gold); font-style: normal; }
.reel__lede{
  margin-top: 18px;
  color: rgba(251,247,238,.78);
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
  line-height: 1.8;
  max-width: 48ch;
}
.reel__text .btn{ margin-top: 30px; }

.reel__stage{ display: flex; justify-content: center; position: relative; }
.reel__stage::before{
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: radial-gradient(circle at 50% 45%, rgba(201,162,74,.28), transparent 68%);
  filter: blur(6px);
}
.reel__frame{
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9/16;          /* matches the 576×1024 source */
  border-radius: 26px;
  overflow: hidden;
  background: #05201f;
  border: 1px solid rgba(201,162,74,.45);
  box-shadow:
    0 30px 70px -22px rgba(0,0,0,.65),
    0 0 0 6px rgba(201,162,74,.09);
}
.reel__frame::after{
  content: "مقطع حقيقي";
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(5,32,31,.55);
  border: 1px solid rgba(201,162,74,.5);
  color: var(--c-gold-soft);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.reel__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel__play{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--c-teal-deep);
  background: linear-gradient(0deg, rgba(10,53,53,.55), rgba(10,53,53,.15));
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.reel__play svg{
  position: relative;
  z-index: 2;
  /* nudge: the glyph's visual mass sits left of its box centre */
  margin-inline-start: 4px;
  width: 26px;
  height: 26px;
}
.reel__play::after{
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.6);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.reel__play:hover::after{ transform: scale(1.08); background: #d5b25e; }
.reel__play-ring{
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid rgba(201,162,74,.55);
  animation: reelPing 2.6s var(--ease) infinite;
}
@keyframes reelPing{
  0%{ transform: scale(1); opacity: .7; }
  100%{ transform: scale(1.75); opacity: 0; }
}
.reel__play.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce){
  .reel__play-ring{ animation: none; }
}

@media (max-width: 900px){
  .reel{
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .reel__title, .reel__lede{ max-width: none; }
  .reel__text .eyebrow{ justify-content: center; }
  .reel__frame{ max-width: 290px; }
}
@media (max-width: 480px){
  .reel{ padding: 32px 20px; border-radius: 16px; }
  .reel__frame{ max-width: 100%; }
  .reel__play::after, .reel__play-ring{ width: 66px; height: 66px; }
}

/* =========================================================
   SPECIAL OFFER
   ========================================================= */
.offer{ background: var(--c-ivory); }
.offer__card{
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: stretch;
  background: linear-gradient(150deg, var(--c-teal) 0%, var(--c-teal-deep) 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,162,74,.4);
  box-shadow: 0 40px 90px -32px rgba(10,53,53,.45);
}
.offer__ribbon{
  position: absolute;
  top: 26px;
  inset-inline-start: 26px;
  z-index: 3;
  background: var(--c-gold);
  color: var(--c-teal-deep);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.4);
}
.offer__body{
  padding: clamp(48px, 6vw, 76px) clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.offer__body .h2{ margin-top: 16px; max-width: none; }
.offer__body .lede{ margin-top: 20px; max-width: 56ch; }
.offer__soon{
  margin: 32px 0;
  padding: 22px 26px;
  border: 1.5px dashed rgba(201,162,74,.45);
  border-radius: 12px;
  background: rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 56ch;
}
.offer__soon-tag{
  align-self: flex-start;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-gold);
}
.offer__soon p{ color: rgba(251,247,238,.85); font-size: .92rem; line-height: 1.75; }
.offer__body .btn{ align-self: flex-start; }
.offer__media{
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
}
.offer__media img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .8s var(--ease);
}
.offer__media:hover img{ transform: scale(1.04); }
.offer__media-tip{
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-cream);
  background: linear-gradient(0deg, rgba(10,53,53,.92), transparent);
}

/* =========================================================
   BOOKING FORM
   ========================================================= */
.book{ background: var(--c-cream); }
.book__form{
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--c-paper);
  padding: clamp(32px, 5vw, 56px);
  border-radius: 18px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-lg);
}
.book__field{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.book__field:last-of-type{ grid-column: 1 / -1; }
.book__field label{
  font-size: .86rem;
  font-weight: 700;
  color: var(--c-teal-deep);
}
.book__field input,
.book__field select{
  height: 54px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1.5px solid var(--c-line);
  background: var(--c-ivory);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: .96rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.book__field select{ cursor: pointer; }
.book__field input:focus,
.book__field select:focus{
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 4px rgba(201,162,74,.15);
}
.book__field input::placeholder{ color: var(--c-ink-soft); opacity: .6; }
.book__submit{
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
}
.book__success{
  grid-column: 1 / -1;
  display: none;
  text-align: center;
  padding: 18px 20px;
  border-radius: 10px;
  background: rgba(14,74,74,.08);
  border: 1.5px solid rgba(14,74,74,.25);
  color: var(--c-teal-deep);
  font-weight: 700;
  font-size: .94rem;
  line-height: 1.7;
}
.book__success.is-visible{ display: block; animation: bookSuccessIn .5s var(--ease); }
@keyframes bookSuccessIn{
  from{ opacity: 0; transform: translateY(-8px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
  background: linear-gradient(180deg, #061e1e 0%, #051818 100%);
  color: rgba(251,247,238,.78);
  padding: 88px 0 0;
  position: relative;
}
.footer::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,74,.35), transparent);
}
.footer::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(201,162,74,.09), transparent 55%),
    radial-gradient(circle at 92% 40%, rgba(201,162,74,.06), transparent 50%);
  pointer-events: none;
}
.footer__cta{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 48px);
  margin-top: clamp(-130px, -12vw, -80px);
  margin-bottom: 56px;
  border-radius: 20px;
  border: 1px solid rgba(201,162,74,.4);
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-deep) 100%);
  box-shadow: 0 40px 90px -28px rgba(6,20,20,.6), 0 0 0 1px rgba(201,162,74,.06);
}
.footer__cta-text h3{
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--c-cream);
  margin-top: 10px;
  max-width: 34ch;
  line-height: 1.4;
}
.footer__cta-text h3 em{ color: var(--c-gold); font-style: normal; }
.footer__cta .btn{ flex-shrink: 0; }
.footer__inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 64px;
  padding: 56px 0 64px;
  border-bottom: 1px solid rgba(201,162,74,.14);
}
.footer__brand{
  display:flex;
  flex-direction:column;
  gap:28px;
  max-width: 360px;
}
.footer__brand img{
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--c-cream);
  padding: 4px;
  object-fit: contain;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.5), 0 0 0 1px rgba(201,162,74,.2);
  transition: transform .3s var(--ease);
}
.footer__brand:hover img{ transform: scale(1.05); }
.footer__brand-name{
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -.01em;
}
.footer__brand-loc{
  font-size: .88rem;
  line-height: 1.85;
  color: rgba(251,247,238,.65);
  font-weight: 400;
}
.footer__licenses{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,162,74,.15);
}
.footer__licenses span{
  font-size: .82rem;
  color: rgba(251,247,238,.65);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__licenses span::before{
  content: "✓";
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,162,74,.15);
  color: var(--c-gold);
  font-size: .7rem;
  flex-shrink: 0;
}
.footer__licenses bdi{ color: var(--c-cream); font-weight: 600; }

.footer__cols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer__quick{ display: flex; flex-direction: column; }
.footer__quick-btn{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 8px;
  border-radius: 8px;
  background: transparent;
  font-size: .87rem;
  font-weight: 600;
  color: var(--c-cream);
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.footer__quick-btn:hover{
  background: rgba(201,162,74,.16);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -8px rgba(201,162,74,.2);
}
.footer__quick-btn--wa:hover{
  background: rgba(37,211,102,.16);
  box-shadow: 0 8px 16px -8px rgba(37,211,102,.2);
}
.footer__quick-icon{ flex-shrink: 0; display: inline-flex; color: var(--c-gold-soft); }

.footer__pay{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.paybadge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(201,162,74,.25);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--c-cream);
  background: rgba(201,162,74,.05);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.paybadge svg{ flex-shrink: 0; color: var(--c-gold-soft); }
.paybadge:hover{
  border-color: rgba(201,162,74,.45);
  background: rgba(201,162,74,.1);
}
.footer__ministries{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.minibadge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(201,162,74,.08);
  border: 1.5px solid rgba(201,162,74,.2);
  font-size: .76rem;
  color: rgba(251,247,238,.78);
  font-weight: 500;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.minibadge:hover{
  border-color: rgba(201,162,74,.4);
  background: rgba(201,162,74,.15);
}
.minibadge svg{ color: var(--c-gold); flex-shrink: 0; width: 14px; height: 14px; }
.footer__cols h5{
  font-family: var(--f-display);
  color: var(--c-gold);
  font-size: .92rem;
  letter-spacing: .15em;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,162,74,.15);
}
.footer__cols a{
  display:block;
  padding: 10px 0;
  font-size: .9rem;
  transition: color .25s var(--ease);
  color: rgba(251,247,238,.75);
  font-weight: 400;
}
.footer__cols a:hover{
  color: var(--c-gold);
  padding-inline-start: 6px;
}

.footer__social{
  display:flex;
  gap: 14px;
}
.footer__social a{
  width: 44px;
  height: 44px;
  display: grid;
  place-items:center;
  border-radius: 50%;
  color: var(--c-gold-soft);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  background: transparent;
}
.footer__social a:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,.5);
}
.footer__social-link--instagram:hover{
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}
.footer__social-link--tiktok:hover{ background: #010101; color: #fff; }
.footer__social-link--snapchat:hover{ background: #FFFC00; color: #1a1a1a; }
.footer__social-link--whatsapp:hover{ background: #25D366; color: #fff; }
.footer__social svg{
  width: 19px;
  height: 19px;
  display: block;
}

.footer__bar{
  position: relative;
  z-index: 1;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: .8rem;
  color: rgba(251,247,238,.5);
  line-height: 1.6;
  border-top: 1px solid rgba(201,162,74,.12);
}
.footer__totop{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  color: var(--c-gold-soft);
  flex-shrink: 0;
  transition: background .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.footer__totop:hover{
  background: rgba(201,162,74,.2);
  color: var(--c-gold);
  transform: translateY(-3px);
}

/* =========================================================
   MOBILE CTA (sticky)
   ========================================================= */
.mobicta{
  display: none;
  position: fixed; inset: auto 0 0 0;
  z-index: 90;
  padding: 12px 16px;
  background: rgba(10,53,53,.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1.5px solid rgba(201,162,74,.28);
  gap: 10px;
}
.mobicta__btn{
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
}
.mobicta__btn--primary{ background: var(--c-gold); color: var(--c-teal-deep); }
.mobicta__btn--ghost{
  background: transparent;
  color: var(--c-cream);
  border: 1px solid rgba(201,162,74,.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .hero__media img{ animation:none; transform:none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px){
  .services__grid--3{ grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .offer__card{ grid-template-columns: 1fr; }
  .offer__media{ min-height: 320px; }
}

@media (max-width: 900px){
  .nav__links{ display: none; }
  .nav__cta{ display: none; }
  .nav__toggle{ display: flex; }

  .about__grid{ grid-template-columns: 1fr; }
  .about__media{ aspect-ratio: 4/3; }

  .services__grid--3{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service{ padding: 40px 32px 36px; }

  .why__grid{ grid-template-columns: 1fr; }
  .why__intro{ position: static; }
  .why__photo{ max-width: 420px; }

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

  .footer__inner{ grid-template-columns: 1fr; gap: 56px; }
  .footer__cols{ grid-template-columns: repeat(3, 1fr); gap: 32px; }

  .footer__cta{
    flex-direction: column;
    text-align: center;
    margin-top: -60px;
  }
  .footer__cta-text h3{ max-width: none; }

  .mobicta{ display: flex; }
  body{ padding-bottom: 76px; }
}

@media (max-width: 680px){
  .hero{ padding: 120px 0 90px; min-height: auto; }
  .hero__title{ font-size: clamp(1.7rem, 6vw, 2.5rem); max-width: 22ch; }
  .hero__ctas{ gap: 12px; margin-top: 36px; }
  .hero__ctas .btn{ min-height: 48px; padding: 13px 20px; font-size: .92rem; }
  .hero__pills{ gap: 8px; }
  .hero__pills li{ padding: 8px 14px; font-size: .8rem; gap: 7px; }
  .hero__pills svg{ width: 14px; height: 14px; }
  .trust-strip{ flex-direction: column; text-align: center; padding: 20px; }
  .trust-strip p{ text-align: center; }

  .services__grid--3{ grid-template-columns: 1fr; gap: 14px; }
  .service{ min-height: auto; padding: 32px 26px; }

  .offer__ribbon{ top: 18px; inset-inline-start: 18px; }
  .offer__body{ padding: 56px 24px 40px; }
  .offer__soon{ padding: 18px 20px; }

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

@media (max-width: 480px){
  .footer__cols{ grid-template-columns: 1fr; gap: 24px; }
  .footer__cta{ margin-top: -36px; padding: 24px 22px; border-radius: 16px; }
  .footer__bar{ justify-content: center; text-align: center; }
}

/* =========================================================
   ENHANCEMENTS v2 — hover fixes, card polish, mobile
   ========================================================= */
.service{
  transition: background .35s var(--ease), transform .45s var(--ease),
              box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative;
}
.service::after{
  content:""; position:absolute; inset:auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  transform: scaleX(0); transform-origin:center;
  transition: transform .55s var(--ease);
}
.service:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -28px rgba(10,53,53,.35);
}
.service:hover::after{ transform: scaleX(1); }

/* =========================================================
   MOBILE POLISH — touch targets, spacing, typography
   ========================================================= */
@media (max-width: 900px){
  .btn{ min-height: 48px; padding: 14px 22px; }
  .nav__cta{ min-height: 44px; }
  .mobicta__btn{ min-height: 48px; padding: 15px; }
  .service{ min-height: auto; padding: 36px 26px; }
  .footer__social a{ width: 44px; height: 44px; }
  .nav__drawer a{ padding: 18px 0; min-height: 44px; }
}
@media (max-width: 600px){
  .hero{ padding: 120px 0 90px; }
  .hero__title{ font-size: clamp(1.5rem, 7vw, 2.1rem); max-width: 20ch; }
  .hero__ctas{ flex-direction: column; align-items: stretch; }
  .hero__ctas .btn{ width: 100%; justify-content: center; }
  .section{ padding: 72px 0; }
  .section__head{ margin-bottom: 40px; }

  .about__badge{ right: 14px; bottom: 14px; padding: 12px 16px; max-width: calc(100% - 28px); }
  .about__badge-txt{ font-size: .78rem; }

  .footer__inner{ grid-template-columns: 1fr; gap: 32px; }
  .footer__cols{ grid-template-columns: 1fr; gap: 24px; }
  .footer__social a{ width: 40px; height: 40px; }
  .footer__social svg{ width: 17px; height: 17px; }
  .footer__bar{ justify-content: center; text-align: center; }
}

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader{
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background:
    radial-gradient(circle at 50% 40%, rgba(201,162,74,.1), transparent 60%),
    linear-gradient(160deg, var(--c-teal-deep) 0%, #071e1e 100%);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader__inner{
  position: relative;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
}
.preloader__logo{
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--c-cream);
  padding: 6px;
  box-shadow: 0 12px 32px -10px rgba(0,0,0,.5);
  animation: preloaderPulse 1.8s var(--ease) infinite;
}
.preloader__ring{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201,162,74,.18);
  border-top-color: var(--c-gold);
  animation: preloaderSpin 1.1s linear infinite;
}
.preloader__text{
  font-family: var(--f-display);
  font-size: .95rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-gold-soft);
  font-weight: 600;
}
@keyframes preloaderSpin{ to{ transform: rotate(360deg); } }
@keyframes preloaderPulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.05); }
}
.preloader.is-done{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce){
  .preloader__logo{ animation: none; }
  .preloader__ring{ animation: none; }
}

/* =========================================================
   WHATSAPP FLOATING BUBBLE
   ========================================================= */
.wa-bubble{
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 95;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 16px 36px -12px rgba(0,0,0,.5), 0 0 0 3px rgba(37,211,102,.18);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-bubble:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 22px 44px -14px rgba(0,0,0,.55), 0 0 0 5px rgba(37,211,102,.22);
}
.wa-bubble__icon{
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
}
.wa-bubble__ping{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPing 2.4s var(--ease) infinite;
}
@keyframes waPing{
  0%{ transform: scale(1); opacity: .55; }
  100%{ transform: scale(1.9); opacity: 0; }
}
.wa-bubble__tip{
  position: absolute;
  inset-inline-end: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--c-teal-deep);
  color: var(--c-cream);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.4);
  border: 1px solid rgba(201,162,74,.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.wa-bubble:hover .wa-bubble__tip{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (prefers-reduced-motion: reduce){
  .wa-bubble__ping{ animation: none; display: none; }
}
@media (max-width: 900px){
  .wa-bubble{ display: none; }
}
