/* =====================================================================
   Aribel — אריבל סוכנות לביטוח  |  pixel-perfect reproduction
   ===================================================================== */

/* ---------- design tokens ---------- */
:root {
  /* brand colors (extracted from source) */
  --navy:        #161448;
  --navy-2:      #262261;
  --gold:        #fbb040;
  --gold-2:      #f7941d;
  --white:       #ffffff;
  --offwhite:    #f2f2f3;
  --maroon:      #b01e4c;

  /* service accent bars */
  --c-cyan:  #26aae1;
  --c-green: #4db848;
  --c-lime:  #8dc63f;
  --c-red:   #ef4036;
  --c-orange:#f7941d;
  --c-tan:   #d5c399;
  --c-brown: #a97c50;
  --c-dbrown:#3c2414;

  /* layout */
  --aw: 709px;             /* artboard width = design reference (1pt ≈ 1px) */
  --pad: 54px;             /* default side margin from design */

  /* fonts */
  --font:      "Noto Sans Hebrew", system-ui, sans-serif;
  --font-logo: "Cormorant", "Noto Serif Hebrew", serif;
  --font-lat:  "Catamaran", "Noto Sans Hebrew", sans-serif;

  /* fluid type scale — caps at exact design px on desktop (≥709px column) */
  --fs-logo:  clamp(72px, 19vw, 135px);
  --fs-h1:    clamp(28px, 7.4vw, 53px);
  --fs-pill:  clamp(22px, 5.2vw, 37px);
  --fs-lead:  clamp(17px, 4.4vw, 27px);
  --fs-body:  clamp(15px, 3.9vw, 26px);
  --fs-small: clamp(13px, 3.4vw, 22px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 78px; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--white);
  background: var(--navy);
  direction: rtl;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--aw); margin-inline: auto; }
.section { position: relative; padding-block: clamp(48px, 11vw, 86px); padding-inline: 0; }
.section--navy { background: var(--navy); }
.pad { padding-inline: clamp(20px, 7.6vw, var(--pad)); }

/* ---------- gold pill heading ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  background: linear-gradient(180deg, #ffce6a 0%, var(--gold) 45%, #e99a2e 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: var(--fs-pill);
  line-height: 1;
  padding: .42em 1.25em .52em;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.heading-block { text-align: center; }
.heading-block .pill { margin-bottom: clamp(18px, 4vw, 30px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-weight: 700;
  font-size: var(--fs-lead);
  line-height: 1;
  padding: .72em 2.1em;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(180deg, #ffce6a 0%, var(--gold) 48%, #e99a2e 100%);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(0,0,0,.3);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.38); }
.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
}
.btn--navy:hover { transform: translateY(-2px); background: var(--navy-2); }
.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--navy); }

/* ---------- eagle (recolorable via mask) ---------- */
.eagle {
  display: inline-block;
  -webkit-mask: url(../assets/icons/eagle.svg) center / contain no-repeat;
  mask: url(../assets/icons/eagle.svg) center / contain no-repeat;
  background-color: currentColor;
}

/* ---------- reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   1. HERO
   ===================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background: var(--navy) url(../assets/img/hero-bg.webp) center top / cover no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22,20,72,.18) 0%, rgba(22,20,72,0) 26%),
    linear-gradient(0deg, rgba(22,20,72,.85) 0%, rgba(22,20,72,0) 34%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(40px, 11vh, 128px) clamp(20px, 7vw, 54px) clamp(48px, 15vh, 180px);
}
.hero__brand { margin-top: 0; color: var(--white); }
.hero__eagle {
  width: clamp(120px, 30vw, 200px);
  height: auto;
  margin-inline: auto;
  margin-bottom: clamp(4px, 1.2vw, 12px);
}
.hero__logo {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: var(--fs-logo);
  line-height: .9;
  letter-spacing: .01em;
  color: var(--white);
}
.hero__tagline {
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: .12em;
  margin-top: clamp(2px, .8vw, 8px);
  color: var(--white);
}
.hero__cta { margin-top: auto; white-space: normal; max-width: min(88%, 330px); line-height: 1.25; text-align: center; }

/* =====================================================================
   2. ABOUT
   ===================================================================== */
.about { text-align: center; }
.about__lead {
  font-size: var(--fs-lead);
  font-weight: 700;
  color: var(--white);
  margin-bottom: clamp(16px, 2.8vw, 26px);
}
.about__body { max-width: 600px; margin-inline: auto; }
.about__body p { font-size: var(--fs-body); color: var(--white); margin-bottom: .9em; }
.about__body p:last-child { margin-bottom: 0; }
.about__eagle { width: clamp(54px, 11vw, 82px); height: auto; margin: clamp(26px, 5vw, 44px) auto 0; }

/* =====================================================================
   3. SERVICES GRID
   ===================================================================== */
.services { text-align: center; }
.services__subtitle { font-size: var(--fs-body); color: var(--white); margin-top: 2px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(26px, 4.4vw, 46px) clamp(8px, 2vw, 18px);
  margin-top: clamp(30px, 5.4vw, 52px);
}
.svc { display: flex; flex-direction: column; align-items: center; gap: clamp(8px, 1.4vw, 14px); }
.svc__icon { width: clamp(46px, 9.2vw, 68px); height: auto; aspect-ratio: 1; object-fit: contain; }
.svc__label { font-size: var(--fs-small); font-weight: 500; color: var(--white); }
@media (max-width: 540px) {
  /* 2-column grid has room — make the service icons big & prominent */
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: clamp(30px, 7vw, 42px) 14px; }
  .svc__icon { width: clamp(74px, 22vw, 104px); }
  .svc__label { font-size: clamp(13px, 3.4vw, 16px); }
}

/* =====================================================================
   4. SERVICE DETAILS (list)
   ===================================================================== */
.svc-list .wrap { display: flex; flex-direction: column; gap: clamp(15px, 2.6vw, 24px); }
.svc-row { display: flex; align-items: center; gap: clamp(14px, 3.2vw, 30px); }
.svc-row__text { flex: 1 1 auto; }
.svc-row__title { font-size: var(--fs-lead); font-weight: 700; color: var(--white); margin-bottom: .22em; }
.svc-row__desc { font-size: var(--fs-small); color: #d7d7e4; line-height: 1.5; }
.svc-row__media { position: relative; flex: 0 0 clamp(120px, 30vw, 205px); padding-inline-start: 0; padding-left: 10px; }
.svc-row__media::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; border-radius: 2px; background: var(--bar, var(--gold));
}
.svc-row__media img {
  width: 100%; aspect-ratio: 520 / 292; object-fit: cover;
  border-radius: 6px; box-shadow: 0 9px 20px rgba(0,0,0,.42);
}

/* =====================================================================
   5. VISION
   ===================================================================== */
.vision { background: var(--navy); }
.vision__intro { text-align: center; padding: clamp(46px, 9.5vw, 84px) 0 clamp(20px, 4vw, 32px); }
.vision__text { font-size: var(--fs-body); color: var(--white); max-width: 600px; margin-inline: auto; }
.vision__scene {
  position: relative;
  width: 100%;
  aspect-ratio: 709 / 640;
  background: var(--navy) url(../assets/img/network-bg.webp) center / cover no-repeat;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.vision__scene::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, var(--navy) 0%, rgba(22,20,72,0) 22%, rgba(22,20,72,0) 78%, var(--navy) 100%),
    linear-gradient(90deg, var(--navy) 0%, rgba(22,20,72,0) 16%, rgba(22,20,72,0) 84%, var(--navy) 100%);
}
.vision__eagle {
  position: relative; z-index: 2;
  width: 86%; max-width: 620px; height: auto;
  opacity: .82;
  mix-blend-mode: multiply;
}
.vision__stats {
  background: #fff; max-width: var(--aw); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr;
}
.stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(2px, 0.8vw, 8px); text-align: center;
  padding: clamp(20px, 4vw, 40px) clamp(10px, 2.4vw, 24px);
}
.stat:nth-child(1), .stat:nth-child(3) { border-left: 1px solid rgba(22,20,72,.8); }
.stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(22,20,72,.8); }
.stat__num { font-size: clamp(44px, 11vw, 78px); font-weight: 800; color: #262261; line-height: 1; letter-spacing: -.02em; }
.stat__label { font-size: var(--fs-small); color: #161448; font-weight: 500; line-height: 1.3; }

/* =====================================================================
   6. WHY US
   ===================================================================== */
.why { text-align: center; }
.why__office {
  width: 100%; aspect-ratio: 706 / 471; object-fit: cover;
  border-radius: 5px; box-shadow: 0 12px 30px rgba(0,0,0,.42);
  margin: clamp(22px, 4.4vw, 36px) 0 clamp(28px, 5.4vw, 50px);
}
.why__list { display: flex; flex-direction: column; gap: clamp(22px, 3.8vw, 34px); text-align: right; }
.adv { display: flex; align-items: center; gap: clamp(16px, 3.4vw, 30px); }
.adv__icon { width: clamp(58px, 14vw, 66px); height: auto; aspect-ratio: 1; object-fit: contain; flex: 0 0 auto; }
.adv__title { font-size: var(--fs-lead); font-weight: 700; color: var(--white); margin-bottom: .14em; }
.adv__desc { font-size: var(--fs-small); color: #d3d3e2; line-height: 1.45; }

/* =====================================================================
   7. TEAM
   ===================================================================== */
.team { text-align: center; }
.team__members {
  display: flex; flex-direction: column; gap: clamp(34px, 6vw, 58px);
  margin: clamp(34px, 5.6vw, 54px) auto clamp(28px, 4.6vw, 42px);
}
.member { display: flex; align-items: center; gap: clamp(18px, 4vw, 36px); text-align: right; }
.member--left { flex-direction: row-reverse; }
.member__photo {
  flex: 0 0 auto; width: clamp(130px, 33vw, 226px); aspect-ratio: 1 / 1;
  object-fit: cover; border-radius: 14px; box-shadow: 0 12px 28px rgba(0,0,0,.45);
}
.member__text { flex: 1 1 auto; }
.member__name { font-size: var(--fs-lead); font-weight: 700; color: var(--white); margin-bottom: .42em; line-height: 1.25; }
.member__name span { font-weight: 500; color: var(--gold); font-size: .9em; }
.member__bio { font-size: var(--fs-small); color: #d3d3e2; line-height: 1.5; }
.member__contact { margin-top: .85em; }
.member__contact a { display: block; color: var(--gold); font-size: var(--fs-small); font-weight: 600; text-decoration: none; direction: ltr; overflow-wrap: anywhere; }
.member__contact a + a { margin-top: 3px; }
.member__contact a:hover { text-decoration: underline; }
.team__closing { font-size: var(--fs-body); color: var(--white); max-width: 620px; margin-inline: auto; }
@media (max-width: 600px) {
  .member, .member--left { flex-direction: column; text-align: center; gap: 16px; }
  .member__photo { width: clamp(160px, 56vw, 220px); }
}

/* =====================================================================
   6.5 SUCCESSES (ההצלחות שלנו) — new
   ===================================================================== */
.successes { text-align: center; }
.successes__certs {
  display: flex; justify-content: center; gap: clamp(14px, 3.4vw, 30px);
  margin: clamp(26px, 4.6vw, 44px) auto clamp(22px, 4vw, 34px);
}
.successes__certs img {
  width: clamp(135px, 40%, 268px); height: auto; aspect-ratio: 71 / 100; object-fit: cover;
  border-radius: 5px; box-shadow: 0 10px 26px rgba(0,0,0,.42);
}
.successes__find {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--maroon); font-weight: 700; font-size: var(--fs-lead);
  margin-bottom: clamp(22px, 4vw, 36px);
}
.successes__find img { width: clamp(54px, 11vw, 64px); height: auto; }
.successes__savings img { width: 100%; max-width: var(--aw); aspect-ratio: 3 / 2; object-fit: cover; margin-inline: auto; display: block; }

/* =====================================================================
   8. TRAVEL
   ===================================================================== */
.travel { background: #fff; }
.travel__head { background: var(--navy); text-align: center; padding-block: clamp(40px, 8vw, 72px) clamp(22px, 4.4vw, 36px); }
.travel__title { font-size: var(--fs-h1); font-weight: 800; color: var(--white); margin-bottom: .4em; text-wrap: balance; }
.travel__sub { font-size: var(--fs-small); color: var(--white); max-width: 600px; margin-inline: auto; }
.travel__img { width: 100%; max-width: var(--aw); margin-inline: auto; aspect-ratio: 713 / 401; object-fit: cover; }
.travel__buy {
  background: #fff; display: flex; flex-direction: column; align-items: center;
  gap: clamp(13px, 2.2vw, 18px);
  padding: clamp(28px, 5vw, 46px) clamp(20px, 7vw, 54px) clamp(10px, 2vw, 16px);
}
.travel__buy .btn { width: min(100%, 430px); }

/* =====================================================================
   9. TESTIMONIALS
   ===================================================================== */
.testimonials { background: #fff; color: var(--navy); }
.tst__head { text-align: center; margin-bottom: clamp(26px, 4.6vw, 44px); }
.tst__deco { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: clamp(8px, 1.6vw, 14px); }
.tst__deco::before, .tst__deco::after { content: ""; height: 1px; width: clamp(40px, 9vw, 70px); }
.tst__deco::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.tst__deco::after { background: linear-gradient(90deg, var(--gold), transparent); }
.tst__deco-circle {
  width: clamp(44px, 8vw, 54px); aspect-ratio: 1; border: 1.5px solid var(--gold);
  border-radius: 50%; display: grid; place-items: center; color: var(--gold); flex: 0 0 auto;
}
.tst__deco-circle svg { width: 48%; }
.tst__title { font-size: var(--fs-h1); font-weight: 800; color: var(--navy); }
.tst__sub { font-size: var(--fs-small); color: #6b6b78; margin-top: .25em; }

.carousel { position: relative; }
.carousel__track {
  display: flex; gap: clamp(14px, 2.4vw, 20px);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none; padding: 10px 4px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.tcard {
  scroll-snap-align: center; flex: 0 0 calc((100% - 2 * clamp(14px, 2.4vw, 20px)) / 3);
  background: #fff; border: 1px solid #ececf0; border-radius: 11px;
  padding: clamp(18px, 2.6vw, 28px) clamp(14px, 2vw, 22px);
  text-align: center; box-shadow: 0 10px 26px rgba(20, 20, 60, .07);
}
.tcard__stars { color: var(--gold); font-size: clamp(15px, 2.3vw, 18px); letter-spacing: 3px; }
.tcard__q { display: block; color: #e3b461; margin: clamp(8px, 1.4vw, 14px) auto clamp(6px, 1vw, 10px); }
.tcard__q svg { width: clamp(26px, 4vw, 34px); }
.tcard__text { font-size: var(--fs-small); color: #4a4a55; line-height: 1.55; min-height: 4.6em; }
.tcard__name { font-size: 1.04em; font-weight: 700; color: var(--navy); margin-top: .7em; }
.tcard__role { font-size: .85em; color: #9a9aa6; margin-top: .12em; }
/* image testimonials (customer screenshots) */
.tcard.tcard--img { padding: 6px; background: #fff; text-align: center; overflow: hidden; }
.tcard__img { width: 100%; height: auto; border-radius: 8px; display: block; cursor: zoom-in; }

.carousel__arrow {
  position: absolute; top: 46%; transform: translateY(-50%);
  width: clamp(34px, 6vw, 42px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid #e6e6ec; background: #fff; color: var(--navy);
  font-size: 1.5em; line-height: 1; cursor: pointer; z-index: 3;
  display: grid; place-items: center; box-shadow: 0 5px 14px rgba(0, 0, 0, .1);
  transition: background .2s, color .2s;
}
.carousel__arrow:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.carousel__arrow--prev { left: -8px; }
.carousel__arrow--next { right: -8px; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: clamp(16px, 3vw, 24px); }
.carousel__dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: #d6d6df; cursor: pointer; transition: background .25s, width .25s; }
.carousel__dot.is-active { background: var(--gold); width: 24px; border-radius: 5px; }
@media (max-width: 660px) {
  .tcard { flex-basis: 84%; }
  .carousel__arrow--prev { left: -4px; }
  .carousel__arrow--next { right: -4px; }
}
.tst__cta {
  display: flex;
  margin: clamp(28px, 4.8vw, 46px) auto 0;
  max-width: 290px;
  white-space: normal; line-height: 1.3;
  font-size: var(--fs-small);
}

/* =====================================================================
   10. CONTACT
   ===================================================================== */
.contact { text-align: center; }
.contact__head { margin-bottom: clamp(28px, 5vw, 48px); }
.contact__title { font-size: clamp(22px, 5.6vw, 40px); font-weight: 600; color: var(--gold); line-height: 1.3; letter-spacing: -.01em; text-wrap: balance; }
.contact__form { max-width: 600px; margin-inline: auto; display: flex; flex-direction: column; gap: clamp(14px, 2.4vw, 20px); }
.field { display: flex; align-items: center; gap: clamp(12px, 2.4vw, 18px); }
.field label { flex: 0 0 clamp(76px, 19vw, 104px); text-align: right; font-size: var(--fs-body); font-weight: 500; color: var(--white); }
.field input {
  flex: 1 1 auto; min-width: 0; background: #fff; border: none; border-radius: 7px;
  padding: clamp(12px, 2vw, 16px) clamp(13px, 2vw, 18px);
  font-size: var(--fs-small); color: var(--navy); font-family: var(--font-lat), var(--font);
}
.field input:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }
.consent { display: flex; align-items: flex-start; gap: 12px; text-align: right; margin-top: 4px; cursor: pointer; }
.consent input { order: 2; flex: 0 0 auto; width: 22px; height: 22px; margin-top: 3px; accent-color: var(--gold); }
.consent span { order: 1; flex: 1 1 auto; font-size: clamp(12px, 2.7vw, 15px); color: #cdcdda; line-height: 1.5; }
.contact__submit { align-self: center; min-width: 210px; margin-top: 8px; }
.form-status { font-size: var(--fs-small); min-height: 1.2em; margin-top: 2px; }
.form-status.is-ok { color: #74e6a4; }
.form-status.is-err { color: #ff9d9d; }

.contact__info {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 22px) clamp(18px, 5vw, 46px);
  max-width: 560px; margin: clamp(36px, 6vw, 58px) auto clamp(24px, 4vw, 34px);
}
.cinfo { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--white); font-size: var(--fs-small); }
.cinfo:hover { color: var(--gold); }
.cinfo__ico {
  flex: 0 0 auto; width: clamp(30px, 6.4vw, 38px); height: clamp(30px, 6.4vw, 38px);
  border: 1.2px solid currentColor; border-radius: 50%; display: grid; place-items: center;
}
.cinfo__ico svg { width: 52%; height: 52%; }
.cinfo span:last-child { font-family: var(--font-lat), var(--font); white-space: nowrap; }

.contact__wa { margin: clamp(8px, 2vw, 16px) auto clamp(22px, 4vw, 32px); }
.btn--wa { background: transparent; border: 1.5px solid rgba(255,255,255,.5); color: var(--gold); }
.btn--wa svg { width: 1.35em; height: 1.35em; }
.btn--wa:hover { border-color: var(--gold); background: rgba(251,176,64,.08); transform: translateY(-2px); }

.contact__social { display: flex; justify-content: center; gap: clamp(16px, 4vw, 26px); direction: ltr; margin-bottom: clamp(26px, 5vw, 44px); }
.contact__social a { color: var(--gold); width: clamp(26px, 5vw, 31px); display: grid; place-items: center; transition: transform .2s; }
.contact__social a:hover { transform: translateY(-3px); }
.contact__eagle { width: clamp(74px, 15vw, 112px); margin: 0 auto; opacity: .9; }

/* floating WhatsApp */
.wa-float {
  position: fixed; bottom: clamp(16px, 3vw, 26px); right: clamp(16px, 3vw, 26px);
  width: clamp(52px, 11vw, 62px); height: clamp(52px, 11vw, 62px);
  background: #25D366; color: #fff; border-radius: 50%;
  display: grid; place-items: center; z-index: 60;
  box-shadow: 0 8px 22px rgba(0,0,0,.32); transition: transform .2s;
}
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 58%; height: 58%; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }

/* =====================================================================
   LIGHTBOX (zoomable images)
   ===================================================================== */
.zoomable { cursor: zoom-in; transition: transform .2s ease, box-shadow .2s ease; }
.zoomable:hover { transform: translateY(-3px); }
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 52px);
  background: rgba(8, 7, 26, .92);
  opacity: 0; animation: lb-fade .22s ease forwards;
}
.lightbox[hidden] { display: none; }
@keyframes lb-fade { to { opacity: 1; } }
.lightbox__img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  border-radius: 6px; box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
  animation: lb-zoom .25s ease;
}
@keyframes lb-zoom { from { transform: scale(.94); } to { transform: scale(1); } }
.lightbox__close {
  position: absolute; top: clamp(12px, 3vw, 26px); right: clamp(12px, 3vw, 26px);
  width: clamp(42px, 9vw, 52px); height: clamp(42px, 9vw, 52px);
  border: none; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .14); color: #fff;
  font-size: clamp(26px, 6vw, 34px); line-height: 1;
  display: grid; place-items: center; transition: background .2s, color .2s;
}
.lightbox__close:hover { background: var(--gold); color: var(--navy); }

/* =====================================================================
   PRELOADER (flying-eagle splash on load)
   ===================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 2000;
  background: radial-gradient(120% 100% at 50% 38%, var(--navy-2) 0%, var(--navy) 68%);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; padding: 22px; }
.preloader__eagle {
  width: clamp(112px, 30vw, 178px); height: auto;
  animation: pl-in 1s ease-out both, pl-fly 1.9s .95s ease-in-out infinite;
}
.preloader__name {
  margin-top: clamp(14px, 2.8vw, 22px);
  font-family: 'Noto Sans Hebrew', sans-serif; font-weight: 800;
  font-size: clamp(30px, 9vw, 52px); line-height: 1; color: #fff;
  opacity: 0; animation: pl-fade .8s .55s ease forwards;
}
.preloader__name span {
  display: block; margin-top: 8px;
  font-family: 'Noto Sans Hebrew', sans-serif; font-weight: 600;
  font-size: .38em; letter-spacing: .02em; color: var(--gold);
}
/* eagle swoops in from the lower-left, then keeps soaring (rise + sway + tilt) */
@keyframes pl-in {
  0% { transform: translate(-95px, 66px) scale(.24) rotate(-26deg); opacity: 0; }
  55% { opacity: 1; }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 1; }
}
@keyframes pl-fly {
  0% { transform: translate(0, 0) rotate(-3deg); }
  25% { transform: translate(7px, -15px) rotate(3deg); }
  50% { transform: translate(0, -22px) rotate(-2deg); }
  75% { transform: translate(-7px, -13px) rotate(3deg); }
  100% { transform: translate(0, 0) rotate(-3deg); }
}
@keyframes pl-fade { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .preloader__eagle { animation: pl-in .5s both; } }

/* =====================================================================
   STICKY HEADER + HAMBURGER NAV
   ===================================================================== */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 90;
  height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: clamp(16px, 5vw, 40px);
  background: rgba(22, 20, 72, .8);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.site-header__logo { display: flex; align-items: center; gap: 9px; color: #fff; }
.site-header__logo img { width: 30px; height: 30px; }
.site-header__logo b { font-family: var(--font-logo); font-weight: 600; font-size: 25px; line-height: 1; }

.hamburger {
  position: relative; width: 44px; height: 44px; flex: 0 0 auto;
  border: none; background: transparent; cursor: pointer; padding: 0;
}
.hamburger span {
  position: absolute; left: 9px; right: 9px; height: 2.5px; border-radius: 2px;
  background: var(--gold); transition: top .3s ease, transform .3s ease, opacity .2s ease;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20.75px; }
.hamburger span:nth-child(3) { top: 27.5px; }
.hamburger.open span:nth-child(1) { top: 20.75px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 20.75px; transform: rotate(-45deg); }

.nav-drawer {
  position: fixed; top: 0; bottom: 0; right: 0; z-index: 80;
  width: min(82vw, 320px);
  background: #1a1850;
  box-shadow: -12px 0 44px rgba(0, 0, 0, .5);
  transform: translateX(100%); visibility: hidden;
  transition: transform .33s cubic-bezier(.4, 0, .2, 1), visibility .33s;
  padding-top: 78px; overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); visibility: visible; }
.nav-drawer a {
  display: block; padding: 14px clamp(24px, 7vw, 40px);
  color: #fff; font-size: 19px; font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s, color .2s, padding-inline-start .2s;
}
.nav-drawer a:hover, .nav-drawer a:focus-visible {
  background: rgba(251, 176, 64, .12); color: var(--gold);
  padding-inline-start: clamp(32px, 8vw, 50px);
}
.nav-backdrop {
  position: fixed; inset: 0; z-index: 75;
  background: rgba(8, 7, 26, .55);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* =====================================================================
   FLOATING TRAVEL CTA (bottom-left, mirrors WhatsApp on the right)
   ===================================================================== */
.travel-float {
  position: fixed; top: clamp(88px, 13vh, 120px); left: clamp(13px, 3vw, 22px);
  width: clamp(108px, 29vw, 122px); height: clamp(108px, 29vw, 122px);
  border-radius: 50%; z-index: 60;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .42), 0 0 0 4px rgba(255, 255, 255, .13);
  transition: transform .2s;
}
.tf-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.travel-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(251, 176, 64, .5); animation: tf-pulse 2.4s infinite;
}
.travel-float:hover { transform: scale(1.08); }
.travel-float.clicked { animation: tf-bounce .5s ease; }
@keyframes tf-pulse { 0% { box-shadow: 0 0 0 0 rgba(251,176,64,.5); } 70% { box-shadow: 0 0 0 24px rgba(251,176,64,0); } 100% { box-shadow: 0 0 0 0 rgba(251,176,64,0); } }
@keyframes tf-bounce { 0% { transform: scale(1); } 30% { transform: scale(.84); } 60% { transform: scale(1.14); } 100% { transform: scale(1); } }
@keyframes tf-fly {
  0%, 100% { transform: translateY(1.2px) rotate(0deg); }
  30% { transform: translateY(-1.6px) rotate(-8deg); }
  65% { transform: translateY(-0.4px) rotate(7deg); }
}
@media (prefers-reduced-motion: reduce) { .travel-float::after, .tf-plane { animation: none; } }

/* contact form attention flash (arriving via the travel CTA) */
@keyframes form-flash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 176, 64, 0); }
  35% { box-shadow: 0 0 0 5px rgba(251, 176, 64, .55); }
}
.contact__form.flash { border-radius: 14px; animation: form-flash 1.5s ease; }

/* =====================================================================
   DESKTOP ADAPTATION (≥ 992px)
   ===================================================================== */
@media (min-width: 992px) {
  .wrap { max-width: 1240px; }
  .pad { padding-inline: clamp(32px, 5vw, 72px); }
  .section { padding-block: clamp(78px, 7vw, 124px); }

  /* hero */
  .hero__logo { font-size: clamp(140px, 11vw, 182px); }
  .hero__eagle { width: clamp(160px, 15vw, 232px); }
  .hero__tagline { font-size: 24px; }

  /* about — text | eagle emblem */
  .about__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: center; }
  .about__content { text-align: right; }
  .about__content .heading-block { text-align: right; }
  .about__lead { font-size: 30px; }
  .about__body { max-width: none; margin: 0; }
  .about__body p { font-size: 20px; }
  .about__visual { position: relative; display: grid; place-items: center; }
  .about__visual::before { content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(251,176,64,.13), transparent 70%); }
  .about__eagle { position: relative; width: clamp(180px, 18vw, 270px); margin: 0; }

  /* services — cards */
  .services__grid { max-width: 1140px; margin-inline: auto; grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .svc {
    background: var(--navy-2); border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px; padding: 40px 16px 32px; gap: 18px;
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  }
  .svc:hover { transform: translateY(-7px); background: #2d2974; box-shadow: 0 18px 40px rgba(0,0,0,.4); }
  .svc__icon { width: 72px; }
  .svc__label { font-size: 19px; }

  /* service-details — two columns of cards */
  .svc-list .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; align-items: stretch; }
  .svc-row {
    background: var(--navy-2); border: 1px solid rgba(255,255,255,.05);
    border-radius: 16px; padding: 22px; gap: 22px;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .svc-row:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.35); }
  .svc-row__media { flex: 0 0 200px; }
  .svc-row__title { font-size: 23px; }
  .svc-row__desc { font-size: 16px; }

  /* vision */
  .vision__text { max-width: 840px; font-size: 22px; }
  .vision__scene { aspect-ratio: 1180 / 520; }
  .vision__eagle { max-width: 720px; }
  .vision__stats { max-width: 1040px; }
  .stat__num { font-size: 80px; }
  .stat__label { font-size: 21px; }

  /* why-us — office | advantages */
  .why__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
  .why__office { width: 100%; margin: 0; aspect-ratio: 3 / 2; }
  .why__list { display: flex; flex-direction: column; gap: 30px; text-align: right; }
  .adv__icon { width: 58px; }
  .adv__title { font-size: 23px; }
  .adv__desc { font-size: 16px; }

  /* successes */
  .successes__certs { gap: 44px; }
  .successes__certs img { width: clamp(270px, 32%, 360px); }
  .successes__find { font-size: 24px; margin-block: 12px 40px; }
  .successes__savings img { max-width: 1000px; }

  /* team — 3-up cards */
  .team__members { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 46px; }
  .member, .member--left {
    flex-direction: column; width: clamp(280px, 30%, 350px); text-align: center; gap: 20px;
    background: var(--navy-2); border: 1px solid rgba(255,255,255,.05);
    border-radius: 18px; padding: 28px 24px 30px;
  }
  .member__photo { width: 100%; max-width: 100%; aspect-ratio: 1; margin: 0; }
  .member__name { font-size: 21px; }
  .member__name span { display: block; margin-top: 4px; }
  .member__bio { font-size: 15.5px; }

  /* travel */
  .travel__title { font-size: clamp(44px, 4vw, 58px); }
  .travel__sub { font-size: 19px; max-width: 760px; }
  .travel__img { max-width: 1080px; aspect-ratio: 1180 / 440; }
  .travel__buy { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 18px; padding-block: clamp(36px,4vw,54px) clamp(16px,2vw,22px); }
  .travel__buy .btn { width: auto; min-width: 290px; }

  /* testimonials */
  .tst__title { font-size: clamp(44px, 4vw, 58px); }
  .tcard { padding: 32px 28px; }
  .tcard__text { min-height: 5.4em; font-size: 16.5px; }
  .tst__cta { font-size: 16px; max-width: 400px; }

  /* contact — form | info side by side */
  .contact__title { font-size: clamp(42px, 3.6vw, 54px); }
  .contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; max-width: 1000px; margin-inline: auto; }
  .contact__form { max-width: none; }
  .contact__info { max-width: none; grid-template-columns: 1fr; gap: 22px; align-content: start; margin: 0; padding-top: 6px; }
  .cinfo { justify-content: flex-start; font-size: 17px; }
}
