/* ============================================================
   ACRONATIONTLV — styles.css
   Palette: Ice #F0F7FA · Teal #1A9CB0 · Deep #0A1920
            Mint #2DD4A8 · Gold #F0C246 · Warm #FFF8F0
   Fonts:   Instrument Serif (headings) · Outfit (body)
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --cream:      #F0F7FA;
  --cream-dark: #E2EFF5;
  --warm:       #FFF8F0;
  --terra:      #1A9CB0;
  --terra-dark: #14808F;
  --terra-light:#3EC4D6;
  --charcoal:   #0A1920;
  --brown:      #1E3A45;
  --sage:       #2DD4A8;
  --gold:       #F0C246;
  --wa-green:   #25D366;

  --font-head:  'Instrument Serif', Georgia, serif;
  --font-body:  'Outfit', system-ui, sans-serif;

  --nav-h:      80px;
  --r:          16px;
  --r-lg:       24px;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);

  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── Accessibility ───────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100000;
  padding: 12px 24px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: underline;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* Focus styles for keyboard navigation */
*:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Global grain overlay */
body::after {
  content: '';
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: var(--grain);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; }
h3 { font-size: 1.35rem; font-weight: 400; }
p  { line-height: 1.75; color: #365663; font-weight: 300; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--terra);
  display: inline-block;
}
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}
.section-head h2 {
  letter-spacing: -0.02em;
}
.section-head p {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #4a7a8a;
  font-style: italic;
  font-family: var(--font-head);
}

/* ── Image Placeholders ──────────────────────────────────── */
.img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dceef5 0%, #c8e2ee 100%);
  border: 2px dashed #80b8cc60;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: var(--terra);
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: inherit;
}
.img-ph small { display: block; margin-top: 6px; color: #5a8a9a; font-weight: 400; line-height: 1.5; }
.img-ph code  { background: #c8e0ea; padding: 1px 4px; border-radius: 3px; font-size: 0.78em; }

/* ── Scroll-reveal (motion.js handles animation) ────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 6px 24px rgba(26,156,176,0.3);
}
.btn-primary:hover { background: var(--terra-dark); box-shadow: 0 12px 36px rgba(26,156,176,0.4); }

.btn-ghost {
  background: rgba(26,156,176,0.25);
  color: #fff;
  border: 2px solid var(--terra-light);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(26,156,176,0.45); border-color: #fff; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
  box-shadow: 0 4px 16px #25d36640;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px #25d36660; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(240, 247, 250, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(26,156,176,0.08), 0 8px 32px rgba(10,25,32,0.06);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease-spring), filter 0.4s ease;
}
.navbar:not(.scrolled) .nav-logo-img {
  filter: brightness(0) invert(1);
  height: 108px;
  position: absolute;
  top: 4px;
}
.navbar:not(.scrolled) .logo-text { color: #fff; }
.navbar:not(.scrolled) .logo-mark { background: rgba(255,255,255,0.15); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

/* Nav links */
.nav-links {
  display: flex;
  gap: 2px;
  margin-inline-start: auto;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.8); }
.nav-links a:hover {
  background: rgba(26,156,176,0.08);
  color: var(--terra);
}
.navbar:not(.scrolled) .nav-links a:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1.5px solid rgba(26,156,176,0.25);
  color: var(--terra);
  transition: background 0.2s, border-color 0.2s;
}
.navbar:not(.scrolled) .lang-toggle {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}
.lang-toggle:hover { background: rgba(26,156,176,0.06); border-color: var(--terra); }
.lang-sep { opacity: 0.3; }
.lang-opt.active { font-weight: 700; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-inline-start: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(240, 247, 250, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(26,156,176,0.1);
  padding: 16px 0 28px;
  box-shadow: 0 16px 48px rgba(10,25,32,0.12);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 0 32px; }
.mobile-menu li { border-bottom: 1px solid rgba(26,156,176,0.08); }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
}
.mobile-wa {
  color: var(--wa-green) !important;
  font-weight: 600 !important;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.2);
  object-position: center 30%;
  -webkit-filter: saturate(1.1);
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(26,156,176,0.25) 0%, transparent 60%),
    linear-gradient(
      170deg,
      rgba(10,25,32,0.2) 0%,
      rgba(10,25,32,0.5) 40%,
      rgba(10,25,32,0.8) 100%
    );
}

.hero-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 160px;
  background: var(--cream);
  clip-path: ellipse(70% 100% at 50% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-body);
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--terra-light);
}

.hero-title {
  color: #fff;
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-line1 { display: block; }
.hero-line2 {
  display: block;
  font-style: italic;
  color: var(--terra-light);
  text-shadow: 0 0 80px rgba(62,196,214,0.3);
}

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 180px;
  left: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  font-weight: 300;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.5); }
}

/* Hero reveal (motion.js handles animation) */
.reveal-hero {
  opacity: 0;
  transform: translateY(40px);
}

/* ── SERVICES ────────────────────────────────────────────── */
.services {
  padding: 120px 0 80px;
  background: var(--cream);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(26,156,176,0.08);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.3s ease, background 0.3s ease;
  box-shadow: 0 2px 12px rgba(10,25,32,0.04);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--sage));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 20px 60px rgba(10,25,32,0.1);
  border-color: rgba(26,156,176,0.15);
  background: rgba(255,255,255,0.9);
}
.service-card:hover::before { opacity: 1; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,156,176,0.1), rgba(45,212,168,0.08));
  display: grid;
  place-items: center;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 4px;
  transition: transform 0.3s var(--ease-spring);
}
.service-card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card-icon svg { display: block; }

.service-card h3 {
  font-size: 1.2rem;
  color: var(--brown);
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--terra);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border: 1.5px solid rgba(26,156,176,0.3);
  border-radius: 50px;
  align-self: flex-start;
  margin-top: 8px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease-spring);
}
.card-btn:hover {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
  transform: translateX(4px);
}
[dir="rtl"] .card-btn:hover { transform: translateX(-4px); }

/* ── ABOUT ───────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.about::before {
  content: 'FLY';
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: var(--font-head);
  font-size: 22vw;
  font-weight: 400;
  font-style: italic;
  color: rgba(26,156,176,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
[dir="rtl"] .about::before { right: auto; left: -20px; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-eyebrow { color: var(--terra-light); }
.about-text .section-eyebrow::before { background: var(--terra-light); }
.about-text h2 { margin-bottom: 24px; color: #fff; letter-spacing: -0.02em; }
.about-text p { color: rgba(255,255,255,0.55); }
.about-text p + p { margin-top: 16px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { text-align: center; }
.stat-n {
  display: block;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--terra-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-n sup { font-size: 1rem; }
.stat-l {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}

.about-img { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  height: 55%;
  border-radius: var(--r-lg);
  border: 2px solid rgba(26,156,176,0.2);
  z-index: -1;
}
[dir="rtl"] .about-img-accent { right: auto; left: -24px; }

/* ── TEAM ────────────────────────────────────────────────── */
.team {
  padding: 120px 0;
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,25,32,0.04);
  border: 1px solid rgba(26,156,176,0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.team-card:hover {
  box-shadow: 0 24px 64px rgba(10,25,32,0.12);
}

.team-photo {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
}
.team-photo img.img-zoom-crop {
  transform: scale(1.15);
  object-position: center 30%;
}
.team-card:hover .team-photo img {
  transform: scale(1.06);
  filter: saturate(1.15);
}
.team-card:hover .team-photo img.img-zoom-crop {
  transform: scale(1.22);
}

.team-info {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-info h3 {
  font-size: 1.15rem;
  color: var(--brown);
  letter-spacing: -0.01em;
}
.team-role {
  font-size: 0.75rem;
  color: var(--terra);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.team-info p {
  font-size: 0.86rem;
  line-height: 1.65;
  margin-top: 8px;
}
.team-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--terra);
  transition: opacity 0.2s, transform 0.2s var(--ease-spring);
}
.team-ig:hover { opacity: 0.75; transform: translateX(3px); }

/* ── SECTION BREAKS (3-column portrait grid) ─────────────── */
.section-break {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
/* Section breaks always visible — no hidden gaps if JS/animation fails */
.section-break.reveal {
  opacity: 1;
  transform: none;
}
.section-break img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  border-radius: var(--r);
  transition: filter 0.4s ease;
}
.section-break img:hover { filter: saturate(1.2) brightness(1.03); }

@media (max-width: 768px) {
  .section-break { gap: 8px; padding: 12px 16px; }
  .section-break img { aspect-ratio: 3/4; }
}

/* ── BOOKING MODAL ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 200;
  background: rgba(10,25,32,0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: #fff;
  border-radius: var(--r-lg);
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  box-shadow: 0 32px 80px rgba(10,25,32,0.3);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s var(--ease-out);
  position: relative;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #999;
  transition: background 0.2s, color 0.2s;
}
[dir="rtl"] .modal-close { right: auto; left: 16px; }
.modal-close:hover { background: var(--cream); color: var(--charcoal); }

.modal h3, .modal .modal-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.modal .modal-sub {
  font-size: 0.88rem;
  color: #6a9aaa;
  margin-bottom: 28px;
}
.modal-category {
  display: inline-block;
  background: var(--cream);
  color: var(--terra);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 24px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.modal-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brown);
}
.modal-field input {
  padding: 14px 18px;
  border: 1.5px solid rgba(26,156,176,0.15);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: var(--cream);
}
.modal-field input:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(26,156,176,0.1);
  background: #fff;
}
.modal-field input::placeholder { color: #90b8c8; }
.modal-submit {
  width: 100%;
  padding: 16px 20px;
  background: var(--wa-green);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  box-shadow: 0 6px 20px #25d36640;
}
.modal-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px #25d36660; }
.modal-submit svg { flex-shrink: 0; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--warm);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 6%;
  font-family: var(--font-head);
  font-size: 28rem;
  color: rgba(26,156,176,0.04);
  line-height: 1;
  pointer-events: none;
}
[dir="rtl"] .testimonials::before { left: auto; right: 6%; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  border: 1px solid rgba(26,156,176,0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(10,25,32,0.08); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
.testi-card blockquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brown);
  flex: 1;
}
.testi-card footer { display: flex; flex-direction: column; gap: 4px; }
.testi-card footer strong { font-size: 0.9rem; color: var(--charcoal); font-weight: 600; }
.testi-card footer span  { font-size: 0.73rem; color: var(--terra); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── GALLERY — infinite carousel ──────────────────────────── */
.gallery {
  padding: 120px 0 80px;
  background: var(--charcoal);
  overflow: hidden;
  position: relative;
}
.gallery .section-head h2 { color: #fff; }
.gallery .section-eyebrow { color: var(--sage); }
.gallery .section-eyebrow::before { background: var(--sage); }
.gallery .section-head p { color: rgba(255,255,255,0.5); }

/* Carousel container */
.gallery-carousel {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 24px;
}

/* Track — infinite scroll via animation */
.carousel-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: carouselScroll 60s linear infinite;
}
.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
[dir="rtl"] .carousel-track {
  animation-name: carouselScrollRTL;
}
@keyframes carouselScrollRTL {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* Items — natural aspect ratio, no cropping */
.g-item {
  flex-shrink: 0;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}

.g-item img {
  height: 100%;
  width: auto;
  display: block;
  transition: transform 0.6s var(--ease-out), filter 0.5s ease;
  filter: brightness(0.85) saturate(1.05);
}

/* Hover effects */
.g-item:hover {
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.g-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.2);
}

/* Bottom gradient on hover */
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 50%, rgba(10,25,32,0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.g-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery { padding: 80px 0 48px; }
  .g-item { height: 240px; border-radius: 8px; }
  .carousel-track { gap: 8px; animation-duration: 40s; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  padding: 120px 0;
  background: var(--cream);
}
.faq-inner { max-width: 760px; }
.faq-list  { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(26,156,176,0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] {
  border-color: rgba(26,156,176,0.2);
  box-shadow: 0 8px 32px rgba(10,25,32,0.06);
}

.faq-item summary {
  padding: 22px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color 0.2s;
}
.faq-item[open] summary { color: var(--terra); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--terra);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 28px 24px;
  border-top: 1px solid rgba(26,156,176,0.06);
}
.faq-body p { font-size: 0.94rem; padding-top: 18px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,156,176,0.3), transparent);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
}

/* Footer brand */
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer .logo-mark { background: var(--terra); }
.footer .logo-text { color: #fff; }
.footer-brand > p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.35);
  line-height: 1;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  align-self: flex-start;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  box-shadow: 0 6px 20px #25d36640;
}
.footer-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 32px #25d36660; }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.soc {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s var(--ease-spring);
}
.soc:hover {
  border-color: var(--terra);
  color: var(--terra-light);
  background: rgba(26,156,176,0.08);
  transform: translateY(-3px);
}

/* Footer nav */
.footer-nav h4, .footer-info h4 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer-nav a:hover { color: var(--terra-light); transform: translateX(4px); }

/* Footer info */
.footer-info { display: flex; flex-direction: column; gap: 14px; }
.footer-info h4 { margin-bottom: 10px; }
.footer-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-info p svg { margin-top: 2px; flex-shrink: 0; opacity: 0.5; }
.footer-info a { color: var(--terra-light); }
.footer-info a:hover { text-decoration: underline; }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 32px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  max-width: 1240px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* ── Floating WA FAB ─────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 60px; height: 60px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px #25d36650;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, border-radius 0.3s ease;
}
[dir="rtl"] .wa-fab { right: auto; left: 28px; bottom: 100px; }
.wa-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 12px 40px #25d36670; border-radius: 22px; }
.wa-fab::before {
  content: '';
  position: absolute;
  top: -5px; right: -5px; bottom: -5px; left: -5px;
  border-radius: 22px;
  border: 2px solid var(--wa-green);
  opacity: 0;
  animation: waPulse 3.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { opacity: 0; transform: scale(1);   }
  50%       { opacity: 0.3; transform: scale(1.2); }
}

/* ── Hebrew Fonts + RTL Support ───────────────────────────── */
[dir="rtl"] {
  --font-head: 'Secular One', 'Rubik', sans-serif;
  --font-body: 'Rubik', 'Arial', sans-serif;
}
[dir="rtl"] body { font-family: var(--font-body); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 {
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: 0;
}
[dir="rtl"] .hero-line2 { font-style: normal; }
[dir="rtl"] .testi-card blockquote { font-family: var(--font-body); font-style: normal; }
[dir="rtl"] .footer-brand > p { font-family: var(--font-body); font-style: normal; }

[dir="rtl"] .hero-scroll { left: auto; right: 32px; }
[dir="rtl"] .hero-eyebrow::before { display: none; }
[dir="rtl"] .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--terra-light);
}
[dir="rtl"] .about::before { right: auto; left: -20px; }
[dir="rtl"] .testimonials::before { left: auto; right: 6%; }
[dir="rtl"] .wa-fab { right: auto; left: 28px; bottom: 100px; }
[dir="rtl"] .faq-item summary { direction: rtl; }
[dir="rtl"] .faq-item summary::after { margin-right: auto; margin-left: 0; }
[dir="rtl"] .footer-info p { direction: rtl; }
[dir="rtl"] .section-eyebrow { letter-spacing: 0.06em; }
[dir="rtl"] .section-eyebrow::before { display: none; }
[dir="rtl"] .section-eyebrow::after {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--terra);
  display: inline-block;
}
[dir="rtl"] .footer-nav a:hover { transform: translateX(-4px); }
[dir="rtl"] .team-ig:hover { transform: translateX(-3px); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-inner   { gap: 48px; }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand  { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .container { padding: 0 20px; }

  /* Nav */
  .nav-links  { display: none; }
  .nav-actions { gap: 8px; }
  .btn-wa span { display: none; }
  .btn-wa { padding: 10px 12px; }
  .hamburger { display: flex; }

  /* Hero */
  h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { justify-content: center; }
  .hero-scroll { display: none; }
  .hero-shape { height: 100px; }

  /* Services */
  .services { padding: 80px 0 64px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }

  /* About */
  .about { padding: 80px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .about::before { font-size: 30vw; }

  /* Team */
  .team { padding: 80px 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Gallery */
  .gallery { padding: 80px 0 48px; }

  /* Testimonials */
  .testimonials { padding: 80px 0; }
  .testi-grid   { grid-template-columns: 1fr; }
  .testimonials::before { display: none; }

  /* FAQ */
  .faq { padding: 80px 0; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 20px 36px; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 0 16px; padding-top: var(--nav-h); }
  .section-head { margin: 0 auto 48px; }
  .service-card { padding: 28px 20px; }
  .testi-card { padding: 28px 22px; }
  .faq-item summary { padding: 18px 20px; font-size: 0.92rem; }
  .faq-body { padding: 0 20px 20px; }
  .modal { padding: 32px 24px; }
}

/* ── Safe-area insets (notched phones) ────────────────────── */
@supports (padding: env(safe-area-inset-bottom)) {
  .wa-fab {
    bottom: calc(28px + env(safe-area-inset-bottom));
  }
  [dir="rtl"] .wa-fab {
    bottom: calc(100px + env(safe-area-inset-bottom));
  }
  .footer-bottom {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
  .hero-content {
    padding-left: calc(32px + env(safe-area-inset-left));
    padding-right: calc(32px + env(safe-area-inset-right));
  }
  .nav-container {
    padding-left: calc(32px + env(safe-area-inset-left));
    padding-right: calc(32px + env(safe-area-inset-right));
  }
  .mobile-menu ul {
    padding-left: calc(32px + env(safe-area-inset-left));
    padding-right: calc(32px + env(safe-area-inset-right));
  }
}

/* ── Reduced motion (accessibility) ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-hero { opacity: 1; transform: none; }
  .scroll-line { animation: none; }
  .wa-fab::before { animation: none; }
}

/* ── iOS body scroll lock helper ──────────────────────────── */
body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* ── Touch targets (min 44px for mobile) ──────────────────── */
@media (pointer: coarse) {
  .nav-links a { min-height: 44px; display: inline-flex; align-items: center; }
  .card-btn { min-height: 44px; }
  .faq-item summary { min-height: 48px; }
  .team-ig { min-height: 44px; }
  .soc { min-width: 44px; min-height: 44px; }
  .lang-toggle { min-height: 44px; }
  .hamburger { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .modal-close { min-width: 44px; min-height: 44px; }
}
