/* ============================================================
   KORTOV GROUP — WEBSITE STYLESHEET
   Clean, professional, modern blue-accented business design
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Hebrew / RTL font override */
[lang="he"] body,
[dir="rtl"] body {
  font-family: 'Heebo', 'Arial', sans-serif;
}

:root {
  --green-900: #08122a;
  --green-800: #0d1c3f;
  --green-700: #132d68;
  --green-600: #1a45a3;
  --green-500: #2358d4;
  --green-400: #3b82f6;
  --green-300: #60a5fa;
  --green-200: #93c5fd;
  --green-100: #bfdbfe;
  --green-50:  #eff6ff;

  --dark-950: #08090f;
  --dark-900: #111218;
  --dark-800: #1a1e2c;
  --dark-700: #242838;
  --dark-600: #2f3448;

  --neutral-50:  #f8faf9;
  --neutral-100: #edf1ef;
  --neutral-200: #d8e0db;
  --neutral-300: #b8c5bd;
  --neutral-400: #92a49b;
  --neutral-500: #6e8478;
  --neutral-600: #546860;
  --neutral-700: #3f4f48;
  --neutral-800: #2c3832;
  --neutral-900: #1c2520;

  --white: #ffffff;
  --gold:  #d4a843;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.10);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.18), 0 8px 24px rgba(0,0,0,.12);

  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── UTILITY ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 18, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.navbar:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(0,0,0,.55), transparent);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: padding var(--transition);
}

.navbar.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.01em;
}
.nav-logo em { font-style: normal; color: var(--green-300); }
.logo-icon { font-size: 1.4rem; }
.logo-text { line-height: 1; }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 18, 42, .82) 0%,
    rgba(8, 18, 42, .65) 50%,
    rgba(0, 0, 0, .55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(59, 130, 246, .2);
  border: 1px solid rgba(59, 130, 246, .5);
  color: var(--green-200);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-accent { color: var(--green-300); }

.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 99px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green-400);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59,130,246,.4);
}
.btn-primary:hover {
  background: var(--green-300);
  box-shadow: 0 8px 28px rgba(59,130,246,.5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}

/* ─── SCROLL INDICATOR ───────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,.7);
  border-bottom: 2px solid rgba(255,255,255,.7);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTIONS ───────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-light { background: var(--neutral-50); }
.section-dark  { background: var(--dark-900); color: var(--white); }
.section-green {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-600) 100%);
  color: var(--white);
}
.section-summary {
  background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-800) 100%);
  color: var(--white);
}

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}
.section-tag--light {
  background: rgba(255,255,255,.15);
  color: var(--green-200);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--dark-900);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }

.section-dark .section-title { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,.8); }
.section-dark .section-desc { color: var(--neutral-300); }

/* ─── STATS ROW ──────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-600);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-plus { font-size: 2rem; vertical-align: super; }
.stat-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─── TIMELINE ───────────────────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--green-600), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 48px;
  position: relative;
}
.timeline-item[data-side="right"] {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px; height: 16px;
  background: var(--green-400);
  border: 3px solid var(--dark-900);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: transform var(--transition), background var(--transition);
}
.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.4);
  background: var(--green-300);
}

.timeline-card {
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-md);
  padding: 28px;
  max-width: 380px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.timeline-item:hover .timeline-card {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.timeline-year {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-400);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: .9rem;
  color: var(--neutral-400);
  line-height: 1.65;
}

/* ─── COMPANIES GRID ─────────────────────────────────────────── */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.company-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.company-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.company-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.company-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.company-card:hover .company-card-img img { transform: scale(1.06); }

.company-card-img--green { background: linear-gradient(135deg, var(--green-700), var(--green-500)); }
.company-card-img--dark  { background: linear-gradient(135deg, var(--dark-700), var(--dark-500, var(--neutral-700))); }
.company-card-img--brown { background: linear-gradient(135deg, #4a3520, #7a5a34); }

.company-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
}

.company-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
.company-big-icon { font-size: 5rem; }

.company-card-body { padding: 28px; }

.company-badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.company-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.company-desc {
  font-size: .9rem;
  color: var(--neutral-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.company-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.company-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--neutral-700);
}
.fact-icon { color: var(--green-500); font-size: .6rem; flex-shrink: 0; }

/* ─── SERVICES GRID ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  backdrop-filter: blur(4px);
}
.service-card:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-text {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

/* ─── FACILITIES ─────────────────────────────────────────────── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.facility-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.facility-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.facility-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.facility-card:hover .facility-img img { transform: scale(1.08); }

.facility-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green-500);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}

.facility-body { padding: 24px; }

.facility-location {
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.facility-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.facility-desc {
  font-size: .88rem;
  color: var(--neutral-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.facility-spec {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--neutral-100);
}
.spec-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-600);
  letter-spacing: -.04em;
  line-height: 1;
}
.spec-unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-500);
}
.spec-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-left: 4px;
}

/* ─── STRENGTHS ──────────────────────────────────────────────── */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strength-card {
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.strength-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-600);
  box-shadow: 0 0 0 1px var(--green-600), 0 12px 40px rgba(0,0,0,.3);
}

.strength-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(59, 130, 246, .15);
  letter-spacing: -.06em;
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.strength-card:hover .strength-number { color: rgba(59, 130, 246, .3); }

.strength-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.strength-text {
  font-size: .875rem;
  color: var(--neutral-400);
  line-height: 1.65;
}

/* ─── EXECUTIVE SUMMARY ──────────────────────────────────────── */
.summary-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.summary-text .section-tag {
  background: rgba(255,255,255,.12);
  color: var(--green-200);
}
.summary-text .section-title {
  color: var(--white);
  margin-bottom: 40px;
  text-align: left;
}

.summary-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.point-icon {
  color: var(--green-400);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.summary-point p {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
}

.summary-image {
  position: relative;
}
.summary-image img {
  width: 100%; height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.summary-image-caption {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  background: linear-gradient(to top, var(--dark-900), transparent);
  padding: 32px 24px 20px;
  color: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-size: .85rem;
  line-height: 1.5;
}

/* ─── LANGUAGE TOGGLE ────────────────────────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px;
  padding: 5px 14px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
  margin-left: auto;
}
.lang-toggle:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
}
.navbar.scrolled .lang-toggle {
  background: rgba(255,255,255,.08);
}

.lang-opt {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  font-family: 'Inter', sans-serif;
}
.lang-opt.active {
  color: var(--white);
}
.lang-sep {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  font-weight: 400;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer {
  background: var(--dark-950);
  padding: 60px 0 0;
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-brand .logo-icon { font-size: 1.6rem; }
.footer-brand > div, .footer-brand > span, .footer-brand > a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-brand .logo-text em { font-style: normal; color: var(--green-300); }
.footer-tagline {
  font-size: .82rem;
  color: var(--neutral-500);
  font-style: italic;
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--neutral-400);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--green-300); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: .8rem;
  color: var(--neutral-600);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.animate-fade-up {
  animation: fadeUp .9s cubic-bezier(.4,0,.2,1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.animate-on-scroll:nth-child(2) { transition-delay: .1s; }
.animate-on-scroll:nth-child(3) { transition-delay: .2s; }
.animate-on-scroll:nth-child(4) { transition-delay: .3s; }
.animate-on-scroll:nth-child(5) { transition-delay: .4s; }
.animate-on-scroll:nth-child(6) { transition-delay: .5s; }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .summary-inner { grid-template-columns: 1fr; gap: 48px; }
  .summary-image img { height: 300px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--green-900);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    transition: right var(--transition);
    box-shadow: -4px 0 32px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 12px 16px; }

  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item[data-side="right"] {
    padding: 0 0 0 56px;
    justify-content: flex-start;
  }
  .timeline-dot { left: 20px; }
  .timeline-card { max-width: 100%; }

  .companies-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .strengths-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 16px; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .company-facts { grid-template-columns: 1fr; }
}

/* ─── RTL / HEBREW OVERRIDES ─────────────────────────────────── */

/* Language transition for smooth RTL flip */
html {
  transition: font-size 0s;
}

/* Nav: in RTL the logo stays visually on the right side, hamburger on left */
[dir="rtl"] .nav-inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}
[dir="rtl"] .hamburger {
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .lang-toggle {
  margin-left: 0;
  margin-right: auto;
}

/* Mobile menu slides from left in RTL */
@media (max-width: 768px) {
  [dir="rtl"] .nav-links {
    right: auto;
    left: -100%;
    transition: left var(--transition);
    box-shadow: 4px 0 32px rgba(0,0,0,.3);
  }
  [dir="rtl"] .nav-links.open {
    left: 0;
    right: auto;
  }
}

/* Hero text in RTL */
[dir="rtl"] .hero-content {
  text-align: right;
}
[dir="rtl"] .hero-cta {
  justify-content: flex-end;
}

/* Section headers */
[dir="rtl"] .section-header {
  text-align: right;
}

/* Timeline: flip left↔right sides */
[dir="rtl"] .timeline::before {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
[dir="rtl"] .timeline-item[data-side="left"] {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
[dir="rtl"] .timeline-item[data-side="right"] {
  justify-content: flex-end;
  padding-left: 0;
  padding-right: calc(50% + 40px);
}
[dir="rtl"] .timeline-dot {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
[dir="rtl"] .timeline-item:hover .timeline-dot {
  transform: translateX(50%) scale(1.4);
}

/* RTL timeline on mobile */
@media (max-width: 768px) {
  [dir="rtl"] .timeline::before {
    left: auto;
    right: 20px;
    transform: none;
  }
  [dir="rtl"] .timeline-item,
  [dir="rtl"] .timeline-item[data-side="left"],
  [dir="rtl"] .timeline-item[data-side="right"] {
    padding: 0 56px 0 0;
    justify-content: flex-end;
  }
  [dir="rtl"] .timeline-dot {
    left: auto;
    right: 20px;
    transform: none;
  }
  [dir="rtl"] .timeline-item:hover .timeline-dot {
    transform: scale(1.4);
  }
}

/* Summary: flip text and image order */
[dir="rtl"] .summary-inner {
  direction: rtl;
}
[dir="rtl"] .summary-text .section-title {
  text-align: right;
}
[dir="rtl"] .summary-point {
  flex-direction: row-reverse;
  text-align: right;
}

/* Stats, services, strengths — text align */
[dir="rtl"] .stat-card,
[dir="rtl"] .service-card,
[dir="rtl"] .strength-card {
  text-align: right;
}

/* Company facts list */
[dir="rtl"] .company-facts li {
  flex-direction: row-reverse;
}

/* Facility spec */
[dir="rtl"] .facility-spec {
  flex-direction: row-reverse;
}
[dir="rtl"] .spec-label {
  margin-left: 0;
  margin-right: 4px;
}

/* Footer */
[dir="rtl"] .footer-inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-brand {
  align-items: flex-end;
}
[dir="rtl"] .footer-logo-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-nav {
  flex-direction: row-reverse;
}

/* Letter-spacing tweaks — Hebrew doesn't benefit from tight tracking */
[dir="rtl"] .section-tag,
[dir="rtl"] .hero-badge,
[dir="rtl"] .stat-label,
[dir="rtl"] .company-badge,
[dir="rtl"] .facility-badge,
[dir="rtl"] .facility-location,
[dir="rtl"] .spec-label {
  letter-spacing: 0;
}

/* Hero title tighter for Hebrew */
[dir="rtl"] .hero-title {
  letter-spacing: -.01em;
}
[dir="rtl"] .section-title {
  letter-spacing: -.01em;
}

/* Language toggle: highlight correct side */
.lang-toggle #langEn.active { color: var(--white); }
.lang-toggle #langHe.active { color: var(--white); }
.lang-toggle #langEn:not(.active),
.lang-toggle #langHe:not(.active) { color: rgba(255,255,255,.45); }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.contact-card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.contact-card-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 2px;
}

.contact-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-address strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 4px;
}
.contact-address span {
  font-size: .92rem;
  color: var(--neutral-600);
  line-height: 1.5;
}

.contact-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-900);
  text-decoration: none;
  word-break: break-all;
  transition: color var(--transition);
  line-height: 1.4;
}
a.contact-link:hover { color: var(--green-600); }

/* RTL contact */
[dir="rtl"] .contact-card {
  text-align: right;
}
[dir="rtl"] .contact-address {
  align-items: flex-end;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-card--address {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card--address {
    grid-column: auto;
  }
}
