/*
Theme Name:  מעברים גליל מערבי
Theme URI:   https://maavarim.co.il
Description: תבנית ייעודית למיזם מעברים גליל מערבי
Author:      מעברים
Version:     1.0.0
Text Domain: maavarim
*/

/* ═══════════════════════════════
   VARIABLES + RESET
═══════════════════════════════ */
:root {
  --lime:    #7bc143;
  --lime-dk: #5a9130;
  --lime-lt: #eef7e4;
  --ink:     #141810;
  --white:   #ffffff;
  --cream:   #f4f5f0;
  --muted:   #7a8272;
  --border:  #dde5d0;
  --c1:#5daa3c; --c2:#3f7ec4; --c3:#7455a8;
  --c4:#4ab2cc; --c5:#e6b935; --c6:#df7a35;
  --c7:#c23a30; --c8:#7d4f28;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans Hebrew', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; line-height: 1.6; }

/* ═══════════════════════════════
   ABOUT STRIP
═══════════════════════════════ */
.about-strip { padding: 5rem 3rem; background: var(--white); position: relative; }
.about-strip::before { content: ''; position: absolute; top: 0; left: -5%; right: -5%; bottom: 0;
  background: var(--cream); clip-path: polygon(0 30%,100% 15%,100% 75%,0 90%); z-index: 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; position: relative; z-index: 1; }
.sec-kicker { font-size: .7rem; font-weight: 700; color: var(--lime-dk);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: .6rem; }
.about-title { font-size: clamp(1.6rem,3vw,2.5rem); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.15; margin-bottom: .4rem; }
.about-title span { color: var(--lime); }
.ab-line { width: 52px; height: 3px; background: linear-gradient(to left,var(--c1),var(--c2),var(--c6));
  border-radius: 2px; margin: .8rem 0 1.2rem; }
.about-excerpt { font-size: .88rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.5rem; }
.more-link { display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; color: var(--lime-dk); text-decoration: none; transition: gap .2s; }
.more-link:hover { gap: .7rem; }
.about-img-wrap { border-radius: 14px; overflow: hidden; height: 380px; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════
   PROGRAMS GRID
═══════════════════════════════ */
.programs-section { padding: 5rem 3rem; background: var(--cream); position: relative; overflow: hidden; }
.programs-section::before { content: ''; position: absolute; top: -8%; left: -5%; right: -5%; bottom: -8%;
  background: var(--white); clip-path: polygon(0 12%,100% 0%,100% 88%,0 100%); z-index: 0; }
.programs-section > * { position: relative; z-index: 1; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.section-title { font-size: clamp(1.4rem,2.8vw,2.2rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.2; }
.section-title-left { border-right: 4px solid var(--lime); padding-right: 1.2rem; }
.prog-count { font-size: .85rem; color: var(--muted); }
.prog-count strong { color: var(--ink); font-weight: 800; }
.programs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .9rem; }

/* Program Card – uniform light green */
.program-card {
  background: var(--lime-lt);
  border: 1.5px solid var(--border);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .28s; text-decoration: none; color: inherit;
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(59,82,41,.13);
  border-color: var(--lime);
}
.pc-img { height: 180px; overflow: hidden; position: relative; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.program-card:hover .pc-img img { transform: scale(1.04); }
.pc-status { position: absolute; top: .7rem; left: .7rem;
  font-size: .65rem; font-weight: 800; color: #fff; padding: .2rem .65rem; border-radius: 50px; }
.pc-body { padding: 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pc-chips { display: flex; gap: .4rem; margin-bottom: .85rem; flex-wrap: wrap; }
.pc-chip-type {
  font-size: .68rem; font-weight: 700;
  background: rgba(90,145,48,.13); color: var(--lime-dk);
  border: 1px solid rgba(90,145,48,.22);
  padding: .22rem .8rem; border-radius: 50px;
}
.pc-chip {
  font-size: .64rem; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,.7); border: 1px solid var(--border);
  padding: .18rem .65rem; border-radius: 50px;
}
.pc-name { font-size: .86rem; font-weight: 900; color: var(--ink); margin-bottom: .4rem; letter-spacing: -.02em; line-height: 1.2; }
.pc-elig { font-size: .8rem; color: var(--muted); line-height: 1.72; flex: 1; margin-bottom: .8rem; }
.pc-amount {
  font-size: .75rem; font-weight: 700; color: var(--lime-dk);
  background: rgba(90,145,48,.08); border-radius: 6px;
  padding: .25rem .75rem; margin-bottom: .85rem;
  display: inline-block; width: fit-content;
}
.pc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: .85rem;
  border-top: 1px solid rgba(90,145,48,.15);
}
.pc-operator { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.pc-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--lime-dk); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; flex-shrink: 0; transition: background .2s;
}
.program-card:hover .pc-arrow { background: var(--lime); }

/* ═══════════════════════════════
   SINGLE PROGRAM PAGE
═══════════════════════════════ */
.single-program { padding-top: 64px; }
.prog-hero { background: var(--cream); padding: 5rem 3rem 3rem; position: relative; overflow: hidden; }
.prog-hero::before { content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 45%;
  background: linear-gradient(135deg,var(--lime),var(--lime-dk));
  clip-path: polygon(12% 0%,100% 0%,100% 100%,0% 100%); opacity: .08; }
.breadcrumbs { font-size: .75rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--lime-dk); }
.breadcrumbs .sep { margin: 0 .4rem; }
.ph-layout { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: flex-start; }
.ph-type-badge { display: inline-flex; align-items: center; font-size: .72rem; font-weight: 700;
  padding: .3rem 1rem; border-radius: 50px; margin-bottom: 1rem; border: 1.5px solid; }
.ph-status-badge { display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 700; padding: .25rem .8rem; border-radius: 50px;
  color: #fff; margin-right: .5rem; }
.prog-main-title { font-size: clamp(1.8rem,4vw,3.2rem); font-weight: 900;
  letter-spacing: -.04em; line-height: 1.1; margin-bottom: .8rem; }
.prog-operator-line { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.prog-operator-line strong { color: var(--ink); }
.ph-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.ph-tag { font-size: .72rem; font-weight: 700; color: var(--muted);
  background: var(--white); border: 1.5px solid var(--border); padding: .25rem .75rem; border-radius: 50px; }

/* Stats box */
.stats-box { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px;
  padding: 1.5rem 1.8rem; min-width: 260px; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.stats-box-title { font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 1rem; }
.stats-row { display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 0; border-bottom: 1px solid var(--border); }
.stats-row:last-of-type { border: none; padding-bottom: 0; }
.stats-label { font-size: .78rem; color: var(--muted); }
.stats-value { font-size: .82rem; font-weight: 700; }
.apply-btn { display: block; text-align: center; margin-top: 1.2rem;
  background: var(--lime); color: #fff; padding: .8rem; border-radius: 8px;
  font-size: .88rem; font-weight: 800; text-decoration: none; transition: background .2s; }
.apply-btn:hover { background: var(--lime-dk); }

/* Deadline badge */
.deadline-box { color: #fff; border-radius: 12px; padding: 1.1rem; text-align: center; margin-bottom: 1.2rem; }
.deadline-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }
.deadline-date  { font-size: 1.4rem; font-weight: 900; margin: .3rem 0; }
.deadline-days  { font-size: .75rem; opacity: .8; }

/* Program body */
.prog-body { padding: 4rem 3rem; display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.content-section { margin-bottom: 2.5rem; }
.content-section-title { font-size: 1.05rem; font-weight: 900; letter-spacing: -.02em;
  padding-bottom: .7rem; margin-bottom: 1.2rem; border-bottom: 2px solid var(--border);
  display: flex; align-items: center; gap: .6rem; }
.content-section p { font-size: .9rem; color: var(--muted); line-height: 1.85; }
.steps-list { display: flex; flex-direction: column; gap: .8rem; }
.step-item { display: flex; align-items: flex-start; gap: 1rem;
  background: var(--cream); border-radius: 12px; padding: 1rem 1.2rem; }
.step-num { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime); color: #fff; font-size: .78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; }
.step-text { font-size: .85rem; font-weight: 500; line-height: 1.5; }
.docs-list { display: flex; flex-direction: column; gap: .5rem; }
.doc-item { display: flex; align-items: center; gap: .8rem;
  padding: .7rem 1rem; background: var(--cream); border-radius: 10px; font-size: .84rem; }
.doc-item::before { content: '📄'; }

/* Side card */
.side-card { background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 1.4rem; margin-bottom: 1.3rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.side-card-title { font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 1rem; }
.contact-row { display: flex; align-items: center; gap: .8rem; font-size: .84rem; margin-bottom: .7rem; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row a { color: var(--lime-dk); text-decoration: none; font-weight: 600; }

/* Related */
.related-section { padding: 4rem 3rem; background: var(--cream); }
.related-title { font-size: 1.3rem; font-weight: 900; margin-bottom: 1.8rem; letter-spacing: -.03em; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1rem; }
.related-card { background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 1.2rem 1.4rem; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: .5rem; transition: all .25s; }
.related-card:hover { border-color: var(--lime); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.related-type { font-size: .68rem; font-weight: 700; color: var(--lime-dk); text-transform: uppercase; letter-spacing: .07em; }
.related-name { font-size: .92rem; font-weight: 800; line-height: 1.3; }
.related-op   { font-size: .72rem; color: var(--muted); }

/* ═══════════════════════════════
   ABOUT PAGE
═══════════════════════════════ */
.about-hero { min-height: 55vh; padding: 8rem 3rem 4rem;
  background: linear-gradient(135deg,var(--lime) 0%,var(--lime-dk) 55%,#2a4018 100%);
  position: relative; overflow: hidden; display: flex; align-items: center; }
.about-hero::before { content: ''; position: absolute; inset: 0; opacity: .06;
  background: repeating-linear-gradient(-52deg,rgba(255,255,255,1) 0,rgba(255,255,255,1) 24px,transparent 24px,transparent 48px); }
.about-hero-content { position: relative; z-index: 2; }
.about-hero-kicker { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: .8rem; }
.about-hero-title { font-size: clamp(2rem,5vw,4.5rem); font-weight: 900; color: #fff;
  letter-spacing: -.04em; line-height: 1.05; margin-bottom: 1rem; }
.about-hero-sub { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 500px; line-height: 1.8; }
.about-story { padding: 5rem 3rem; background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-img { border-radius: 18px; overflow: hidden; height: 460px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-h2 { font-size: clamp(1.6rem,3vw,2.6rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 1rem; }
.story-h2 span { color: var(--lime); }
.story-body p { font-size: .88rem; color: var(--muted); line-height: 1.9; margin-bottom: 1rem; }
.mv-section { padding: 5rem 3rem; background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card { background: var(--white); border-radius: 18px; padding: 2rem;
  border: 1.5px solid var(--border); position: relative; overflow: hidden; }
.mv-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 5px; }
.mv-card.vision::before { background: linear-gradient(to left,var(--c1),var(--c2)); }
.mv-card.mission::before { background: linear-gradient(to left,var(--c6),var(--c7)); }
.mv-icon { font-size: 2rem; margin-bottom: 1rem; }
.mv-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .5rem; }
.mv-title { font-size: 1.1rem; font-weight: 900; margin-bottom: .8rem; }
.mv-text { font-size: .85rem; color: var(--muted); line-height: 1.85; }
.values-section { padding: 5rem 3rem; background: var(--white); }
.values-title { font-size: clamp(1.6rem,3vw,2.6rem); font-weight: 900; text-align: center; letter-spacing: -.03em; margin-bottom: .5rem; }
.values-sub { font-size: .85rem; color: var(--muted); text-align: center; margin-bottom: 3rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 1.2rem; }
.value-item { background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 1.4rem; display: flex; align-items: flex-start; gap: .9rem; transition: all .25s; }
.value-item:hover { border-color: var(--lime); transform: translateY(-2px); }
.value-num { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime); color: #fff; font-size: .78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; }
.value-text { font-size: .86rem; font-weight: 600; line-height: 1.5; }
.team-section { padding: 5rem 3rem; background: var(--cream); }
.team-title { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: .5rem; }
.team-sub { font-size: .85rem; color: var(--muted); margin-bottom: 2.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 1.4rem; }
.team-card { background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; overflow: hidden; transition: all .3s; text-align: center; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }
.team-avatar { width: 100%; aspect-ratio: 1; object-fit: cover;
  background: var(--lime-lt); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1rem 1.2rem 1.3rem; }
.team-name { font-size: .92rem; font-weight: 800; margin-bottom: .2rem; }
.team-role { font-size: .75rem; color: var(--muted); }
.partners-section { padding: 4rem 3rem; background: var(--white); text-align: center; }
.partners-title { font-size: 1.1rem; font-weight: 900; margin-bottom: .5rem; }
.partners-sub { font-size: .82rem; color: var(--muted); margin-bottom: 2rem; }
.partners-logos { display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 2rem; opacity: .55; filter: grayscale(1); }
.partner-logo { height: 36px; object-fit: contain; }
.about-cta { background: linear-gradient(135deg,var(--lime),var(--lime-dk));
  padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; }
.about-cta::before { content: ''; position: absolute; inset: 0; opacity: .05;
  background: repeating-linear-gradient(-52deg,rgba(255,255,255,1) 0,rgba(255,255,255,1) 24px,transparent 24px,transparent 48px); }
.about-cta h2 { font-size: clamp(1.6rem,3vw,2.8rem); font-weight: 900; color: #fff; letter-spacing: -.04em; margin-bottom: .8rem; position: relative; }
.about-cta p { font-size: .9rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; position: relative; }
.about-cta-btn { display: inline-block; background: var(--white); color: var(--lime-dk);
  padding: .9rem 2.4rem; border-radius: 8px; font-size: .9rem; font-weight: 800;
  text-decoration: none; transition: all .2s; position: relative; }
.about-cta-btn:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

/* ═══════════════════════════════
   WHY / FAQ / CONTACT / FOOTER
═══════════════════════════════ */
.stripe-div { height: 5px; background: linear-gradient(to left,var(--c1) 0%,var(--c2) 14.3%,var(--c3) 28.6%,var(--c4) 42.9%,var(--c5) 57.1%,var(--c6) 71.4%,var(--c7) 85.7%,var(--c8) 100%); }
.gallery-section { padding: 5rem 3rem; background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; }
.gallery-img-col { border-radius: 14px 0 0 14px; overflow: hidden; min-height: 360px; position: relative; }
.gallery-img-col img { width: 100%; height: 100%; object-fit: cover; }
.gallery-img-col::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right,rgba(0,0,0,.3),transparent); }
.gallery-text-col { background: var(--ink); border-radius: 0 14px 14px 0; padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.g-stripe { height: 3px; width: 64px; border-radius: 2px; margin-bottom: 1.4rem; background: linear-gradient(to left,var(--c1),var(--c4),var(--c6)); }
.g-kicker { font-size: .68rem; font-weight: 700; color: var(--lime); text-transform: uppercase; letter-spacing: .12em; margin-bottom: .6rem; }
.g-title { font-size: clamp(1.5rem,3vw,2.5rem); font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 1rem; }
.g-title span { color: var(--lime); }
.g-text { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 1.8rem; }
.g-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700; color: var(--lime); text-decoration: none; }
.why-section { padding: 5rem 3rem; background: var(--cream); position: relative; overflow: hidden; }
.why-section::after { content: ''; position: absolute; top: -10%; left: -5%; right: -5%; bottom: -10%; background: var(--white); clip-path: polygon(0 8%,100% 0%,100% 92%,0 100%); z-index: 0; }
.why-section > * { position: relative; z-index: 1; }
.why-center { text-align: center; margin-bottom: 3rem; }
.why-kicker { font-size: .68rem; font-weight: 700; color: var(--lime-dk); text-transform: uppercase; letter-spacing: .12em; margin-bottom: .5rem; }
.why-title { font-size: clamp(1.7rem,3.5vw,3rem); font-weight: 900; letter-spacing: -.04em; margin-bottom: .5rem; }
.why-sub { font-size: .85rem; color: var(--muted); max-width: 380px; margin: 0 auto; }
.why-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.why-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.6rem; transition: all .25s; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 4px; }
.why-card:nth-child(1)::before { background: var(--lime-dk); }
.why-card:nth-child(2)::before { background: var(--mv-teal); }
.why-card:nth-child(3)::before { background: var(--mv-blue); }
.why-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.08); transform: translateY(-3px); }
.why-card-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--lime-lt); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.why-card-title { font-size: .92rem; font-weight: 900; margin-bottom: .4rem; letter-spacing: -.01em; }
.why-card-desc { font-size: .8rem; color: var(--muted); line-height: 1.7; }
.faq-section { padding: 5rem 3rem; background: var(--white); }
.faq-top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.faq-title { font-size: clamp(1.6rem,3vw,2.6rem); font-weight: 900; letter-spacing: -.03em; }
.faq-title span { color: var(--lime); }
.faq-subtitle { font-size: .85rem; color: var(--muted); line-height: 1.85; align-self: flex-end; }
.faq-item { border: 1.5px solid var(--border); border-radius: 11px; margin-bottom: .7rem; overflow: hidden; background: var(--white); transition: border-color .2s; }
.faq-item.open { border-color: var(--lime); }
.faq-question { width: 100%; padding: 1rem 1.3rem; background: none; border: none; font-family: 'Noto Sans Hebrew',sans-serif; font-size: .88rem; font-weight: 700; color: var(--ink); text-align: right; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color .2s; }
.faq-question:hover { color: var(--lime-dk); }
.faq-arrow { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: .62rem; transition: transform .3s,background .2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--lime); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; font-size: .84rem; color: var(--muted); line-height: 1.8; transition: max-height .35s,padding .35s; padding: 0 1.3rem; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.3rem 1.1rem; }
.contact-section { padding: 5rem 3rem; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: .8rem; font-size: .88rem; }
.contact-item a { color: var(--lime-dk); text-decoration: none; font-weight: 600; }
.contact-form-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 2rem; }
.cf-title { font-size: 1rem; font-weight: 800; margin-bottom: 1.4rem; }
.cf-input { width: 100%; background: var(--cream); border: 1.5px solid var(--border); border-radius: 8px; padding: .7rem 1rem; font-family: 'Noto Sans Hebrew',sans-serif; font-size: .86rem; color: var(--ink); margin-bottom: .8rem; outline: none; transition: border-color .2s; }
.cf-input:focus { border-color: var(--lime); }
.cf-textarea { min-height: 110px; resize: vertical; }
.cf-submit { width: 100%; background: var(--lime); color: #fff; border: none; border-radius: 8px; padding: .85rem; font-family: 'Noto Sans Hebrew',sans-serif; font-size: .9rem; font-weight: 800; cursor: pointer; transition: background .2s; }
.cf-submit:hover { background: var(--lime-dk); }
.site-footer { background: linear-gradient(135deg,var(--lime-dk) 0%,#2f4c18 50%,var(--ink) 100%); color: rgba(255,255,255,.7); padding: 4rem 3rem 2rem; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; inset: 0; opacity: .04; background: repeating-linear-gradient(-52deg,rgba(255,255,255,1) 0,rgba(255,255,255,1) 20px,transparent 20px,transparent 40px); }
.site-footer > * { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand h3 { font-size: .95rem; font-weight: 900; color: #fff; margin-bottom: .4rem; }
.fb-stripe { height: 3px; border-radius: 2px; margin: .7rem 0 .9rem; width: 64px; background: linear-gradient(to left,#fff,rgba(255,255,255,.4)); }
.footer-brand p { font-size: .78rem; line-height: 1.8; max-width: 220px; }
.footer-col h5 { font-size: .64rem; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: .8rem; color: rgba(255,255,255,.65); text-decoration: none; margin-bottom: .45rem; transition: color .2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .72rem; }
.social-links { display: flex; gap: .55rem; }
.social-links a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: .75rem; transition: all .2s; }
.social-links a:hover { background: var(--lime); border-color: var(--lime); color: #fff; }

/* ═══ REVEAL ═══ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .19s; }
.delay-3 { transition-delay: .28s; }

/* ═══════════════════════════════
   CLEAN CSS-ONLY VISUALS (no external images)
═══════════════════════════════ */

/* About visual card */
.about-visual {
    border-radius: 20px; overflow: hidden;
    background: linear-gradient(160deg, var(--lime-lt) 0%, #dfecd4 100%);
    border: 1.5px solid var(--border);
    min-height: 340px; display: flex; flex-direction: column;
}
.about-visual-inner {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 3rem 2rem; text-align: center;
}
.av-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.av-title { font-size: 1.1rem; font-weight: 800; color: var(--olive, var(--lime-dk)); margin-bottom: .4rem; }
.av-sub { font-size: .85rem; color: var(--muted); }
.av-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
}
.av-s {
    display: flex; align-items: center; gap: .5rem;
    padding: .85rem 1.2rem; font-size: .82rem; font-weight: 600; color: var(--ink);
    border-left: 1px solid var(--border);
}
.av-s:nth-child(even) { border-left: none; }
.av-s span { font-size: 1rem; }

/* CTA band (replaces gallery-section) */
.cta-band {
    display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.cta-band-visual {
    background: linear-gradient(150deg, var(--lime-dk) 0%, #2d4a1e 100%);
    padding: 4rem 3rem;
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 1.8rem;
    position: relative; overflow: hidden;
}
.cta-band-visual::before {
    content: '';
    position: absolute; inset: 0; opacity: .05;
    background: repeating-linear-gradient(-50deg,
        rgba(255,255,255,1) 0,rgba(255,255,255,1) 22px,
        transparent 22px, transparent 44px);
}
.cta-band-icon { font-size: 3rem; position: relative; z-index: 1; }
.cta-band-stat {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
}
.cta-band-stat span {
    font-size: 2rem; font-weight: 900; color: #fff;
    letter-spacing: -.04em; line-height: 1;
}
.cta-band-stat { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: .2rem; }
.cta-band-text {
    background: var(--ink);
    padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center;
}

/* Partner pills (no logos) */
.partners-pills {
    display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem;
    margin-top: 2rem;
}
.partner-pill {
    background: var(--cream); border: 1.5px solid var(--border);
    border-radius: 50px; padding: .5rem 1.3rem;
    font-size: .82rem; font-weight: 600; color: var(--muted);
    transition: all .2s;
}
.partner-pill:hover { border-color: var(--lime); color: var(--lime-dk); }

/* Story visual (about page) */
.story-visual {
    border-radius: 18px; overflow: hidden; height: 460px;
    background: linear-gradient(150deg, #e8f3df 0%, #c8ddb8 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative;
}
.sv-inner { text-align: center; }
.sv-icon { font-size: 5rem; margin-bottom: 1.5rem; }
.sv-line {
    font-size: 1.3rem; font-weight: 900; color: var(--lime-dk);
    letter-spacing: -.02em; margin-bottom: .5rem;
}
.sv-year { font-size: .9rem; color: var(--muted); }

/* Program card – CSS gradient bg when no image */
.pc-img-gradient {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}

/* ═══════════════════════════════
   FOOTER – CLEAN, SUBTLE, ONE-TONE
   No multiple lines or borders
═══════════════════════════════ */
.site-footer {
    background: #1a2412;   /* single deep green, no gradient */
    color: rgba(255,255,255,.55);
    padding: 4rem 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}
/* Subtle texture only */
.site-footer::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123,193,67,.07) 0%, transparent 65%);
    pointer-events: none;
}
.site-footer > * { position: relative; z-index: 1; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-brand h3 {
    font-size: 1rem; font-weight: 900;
    color: rgba(255,255,255,.9); margin-bottom: .6rem;
}
.fb-stripe {
    width: 36px; height: 2px;
    background: var(--lime); border-radius: 2px;
    margin: .6rem 0 .9rem; opacity: .7;
}
.footer-brand p { font-size: .8rem; line-height: 1.8; max-width: 230px; }
.footer-col h5 {
    font-size: .68rem; font-weight: 700;
    color: rgba(255,255,255,.28);
    text-transform: uppercase; letter-spacing: .12em;
    margin-bottom: 1rem;
}
.footer-col a {
    display: block; font-size: .8rem;
    color: rgba(255,255,255,.5);
    text-decoration: none; margin-bottom: .45rem;
    transition: color .2s;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
    padding-top: 2rem;
    /* Subtle separator – very faint, single line */
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
    font-size: .7rem; color: rgba(255,255,255,.22);
    text-decoration: none; transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.5); }
.social-links { display: flex; gap: .55rem; }
.social-links a {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.4);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: .75rem; transition: all .2s;
}
.social-links a:hover { background: var(--lime); border-color: var(--lime); color: #fff; }

/* Responsive */
@media(max-width:900px){
    .cta-band { grid-template-columns: 1fr; }
    .cta-band-visual { padding: 3rem 1.5rem; }
    .cta-band-text { padding: 3rem 1.5rem; }
    .about-visual { min-height: 260px; }
    .story-visual { height: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════
   4-CATEGORY TABS
═══════════════════════════════════════════════════ */
.prog-tabs { display:flex; gap:.6rem; margin-bottom:2.2rem; flex-wrap:wrap; }
.prog-tab {
  display:flex; align-items:center; gap:.45rem;
  padding:.55rem 1.2rem; border-radius:50px;
  border:2px solid var(--border); background:var(--white);
  font-family:'Noto Sans Hebrew',sans-serif;
  font-size:.82rem; font-weight:700; color:var(--muted);
  cursor:pointer; transition:all .22s;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
}
.prog-tab:hover { border-color:var(--lime); color:var(--lime-dk); background:var(--lime-lt); }
.prog-tab.active {
  background:var(--lime-dk); border-color:var(--lime-dk);
  color:#fff; box-shadow:0 4px 16px rgba(90,145,48,.3);
}
.prog-tab.active:hover { background:var(--ink); border-color:var(--ink); }
.program-card[hidden] { display:none !important; }
.prog-empty { grid-column:1/-1; text-align:center; padding:3rem; color:var(--muted); }

/* ═══════════════════════════════════════════════════
   STRONGER PROGRAM CARDS
═══════════════════════════════════════════════════ */
.program-card {
  background:var(--white);
  border:1.5px solid var(--border);
  border-radius:16px; overflow:hidden;
  display:flex; flex-direction:column;
  transition:all .28s; text-decoration:none; color:inherit;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
}
.program-card:hover {
  transform:translateY(-5px);
  box-shadow:0 16px 40px rgba(59,82,41,.14);
  border-color:var(--lime);
}
.pc-img { height:170px; overflow:hidden; position:relative; }
.pc-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.program-card:hover .pc-img img { transform:scale(1.05); }
.pc-status { position:absolute; top:.7rem; left:.7rem;
  font-size:.65rem; font-weight:800; color:#fff;
  padding:.22rem .7rem; border-radius:50px; }
.pc-body { padding:1.4rem 1.5rem; flex:1; display:flex; flex-direction:column; }
.pc-chips { display:flex; gap:.4rem; margin-bottom:.9rem; flex-wrap:wrap; }
.pc-chip-type {
  font-size:.7rem; font-weight:700;
  background:rgba(90,145,48,.12); color:var(--lime-dk);
  border:1.5px solid rgba(90,145,48,.25);
  padding:.24rem .85rem; border-radius:50px;
}
.pc-chip {
  font-size:.65rem; font-weight:600; color:var(--muted);
  background:var(--cream); border:1px solid var(--border);
  padding:.2rem .7rem; border-radius:50px;
}
.pc-name { font-size:.98rem; font-weight:900; color:var(--ink);
  margin-bottom:.5rem; letter-spacing:-.02em; line-height:1.25; }
.pc-elig { font-size:.8rem; color:var(--muted); line-height:1.72; flex:1; margin-bottom:.8rem; }
.pc-amount {
  font-size:.77rem; font-weight:800; color:var(--lime-dk);
  background:var(--lime-lt); border-radius:7px;
  padding:.28rem .85rem; margin-bottom:.9rem;
  display:inline-block; width:fit-content;
  border:1px solid rgba(90,145,48,.2);
}
.pc-foot {
  display:flex; align-items:center; justify-content:space-between;
  margin-top:auto; padding-top:.9rem;
  border-top:1.5px solid var(--lime-lt);
}
.pc-operator { font-size:.65rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.06em; color:var(--muted); }
.pc-arrow { width:34px; height:34px; border-radius:50%;
  background:var(--lime-dk); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.88rem; flex-shrink:0; transition:all .2s; }
.program-card:hover .pc-arrow { background:var(--lime); transform:scale(1.1); }

/* ═══════════════════════════════════════════════════
   STRONGER SECTION COLORS
═══════════════════════════════════════════════════ */
.about-strip { background:var(--white); }
.about-strip::before { background:var(--cream); opacity:1; }
.programs-section { background:var(--cream); }
.why-section { background:var(--white); }
.faq-section { background:var(--cream); }
.contact-section { background:var(--white); }
/* Section kicker – more prominent */
.sec-kicker { font-size:.72rem; font-weight:800; color:var(--lime-dk);
  text-transform:uppercase; letter-spacing:.14em; margin-bottom:.5rem; }
/* Section title – bolder */
.about-title { font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:900; }
.section-title { font-size:clamp(1.5rem,3vw,2.4rem); font-weight:900; }

/* ═══════════════════════════════════════════════════
   FLOATING NAV – houseforbiz style
═══════════════════════════════════════════════════ */
.rb { position:fixed; top:0; left:0; right:0; height:4px; z-index:500;
  background:linear-gradient(to left,var(--c1),var(--c2),var(--c3),var(--c4),var(--c5),var(--c6),var(--c7),var(--c8)); }
.site-header {
  position:fixed; top:10px; left:1.8rem; right:1.8rem;
  z-index:8000;
  background:rgba(255,255,255,.98);
  border-radius:14px;
  box-shadow:0 4px 28px rgba(0,0,0,.12);
  transition:box-shadow .3s;
}
.site-header.scrolled { box-shadow:0 6px 36px rgba(0,0,0,.18); }
.hd-inner {
  display:flex; align-items:center;
  padding:0 1.5rem; height:68px;
}
/* Logo */
.hd-logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
.hd-logo-img { width:52px; height:52px; border-radius:50%; object-fit:cover; }
.hd-logo-circle { width:52px; height:52px; border-radius:50%;
  background:var(--lime); color:#fff; font-size:1.5rem; font-weight:900;
  display:flex; align-items:center; justify-content:center; }
/* Nav center */
.hd-nav { display:flex; align-items:center; gap:.2rem; margin:0 auto; }
.hd-link {
  font-size:.82rem; font-weight:700; color:#3a4a2c;
  text-decoration:none; padding:.5rem .9rem; border-radius:7px;
  transition:all .18s; white-space:nowrap;
  display:flex; align-items:center; gap:.3rem;
}
.hd-link:hover { background:var(--lime-lt); color:var(--lime-dk); }
.drop-arr { transition:transform .22s; flex-shrink:0; }
/* Dropdown */
.hd-drop { position:relative; }
.hd-dropdown {
  position:absolute; top:calc(100% + 8px); right:50%; transform:translateX(50%);
  background:var(--white); border:1.5px solid var(--border);
  border-radius:14px; padding:.5rem;
  box-shadow:0 16px 48px rgba(0,0,0,.12);
  min-width:220px;
  opacity:0; transform:translateX(50%) translateY(-6px); pointer-events:none;
  transition:opacity .2s,transform .2s; z-index:500;
}
.hd-drop:hover .hd-dropdown,
.hd-drop:focus-within .hd-dropdown {
  opacity:1; transform:translateX(50%) translateY(0); pointer-events:all;
}
.hd-drop:hover .drop-arr { transform:rotate(180deg); }
.hd-dd-item {
  display:flex; align-items:center; gap:.8rem;
  padding:.7rem .9rem; border-radius:9px;
  text-decoration:none; color:var(--ink);
  font-size:.82rem; font-weight:600;
  transition:background .15s;
}
.hd-dd-item:hover { background:var(--lime-lt); color:var(--lime-dk); }
.hd-dd-item > span:first-child { font-size:1.1rem; }
/* Right side */
.hd-right { display:flex; align-items:center; gap:.45rem; flex-shrink:0; }
.hd-social {
  width:34px; height:34px; border-radius:8px;
  border:1.5px solid var(--border); display:flex;
  align-items:center; justify-content:center;
  color:var(--muted); text-decoration:none;
  transition:all .18s;
}
.hd-social:hover { border-color:var(--lime); color:var(--lime-dk); background:var(--lime-lt); }
.hd-wa:hover { border-color:#25d366; color:#25d366; background:#f0fdf4; }
.hd-cta {
  font-size:.8rem; font-weight:800; color:#fff;
  background:var(--lime-dk); padding:.55rem 1.25rem;
  border-radius:7px; text-decoration:none;
  box-shadow:0 3px 14px rgba(90,145,48,.35);
  transition:all .2s; white-space:nowrap;
}
.hd-cta:hover { background:var(--ink); color:#fff; }
/* Burger */
.hd-burger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:.4rem;
}
.hd-burger span { width:22px; height:2px; background:var(--ink);
  border-radius:2px; display:block; transition:all .25s; }
.hd-burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hd-burger.open span:nth-child(2){ opacity:0; }
.hd-burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO SLIDESHOW
═══════════════════════════════════════════════════ */
.hero-slider {
  position:relative; width:100%; height:100vh;
  min-height:560px; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  padding-top:74px;
}
.hs-track { position:absolute; inset:0; }
.hs-slide {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transition:opacity 1s ease;
}
.hs-slide.active { opacity:1; }
.hs-no-img { background:linear-gradient(150deg,#2d4a1e 0%,#1a2412 100%); }
.hs-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to bottom,
    rgba(10,20,5,.25) 0%,
    rgba(10,20,5,.55) 100%
  );
}
#hero-canvas { position:absolute; inset:0; width:100%; height:100%; z-index:1; pointer-events:none; }
/* Content */
.hs-content {
  position:relative; z-index:2;
  text-align:center; padding:2rem 1.5rem;
  display:flex; flex-direction:column; align-items:center;
  max-width:720px;
}
.hs-logo { width:90px; height:90px; border-radius:50%; object-fit:cover;
  border:3px solid rgba(255,255,255,.4); margin-bottom:1.2rem;
  box-shadow:0 4px 24px rgba(0,0,0,.3); }
.hs-logo-fallback { width:80px; height:80px; border-radius:50%;
  background:var(--lime); color:#fff; font-size:2rem; font-weight:900;
  display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem;
  border:3px solid rgba(255,255,255,.3); }
.hs-badge {
  display:inline-flex; align-items:center; gap:.4rem;
  background:rgba(123,193,67,.2); border:1px solid rgba(123,193,67,.5);
  color:rgba(255,255,255,.92); font-size:.72rem; font-weight:700;
  padding:.32rem 1rem; border-radius:50px; margin-bottom:1.1rem;
  backdrop-filter:blur(8px);
}
.hs-title {
  font-size:clamp(2rem,5vw,3.8rem); font-weight:900;
  color:#fff; letter-spacing:-.04em; line-height:1.1;
  margin-bottom:1rem; text-shadow:0 2px 16px rgba(0,0,0,.4);
}
.hs-sub {
  font-size:1rem; color:rgba(255,255,255,.82);
  line-height:1.8; margin-bottom:2rem; max-width:520px;
  text-shadow:0 1px 8px rgba(0,0,0,.3);
}
.hs-actions { display:flex; gap:.8rem; flex-wrap:wrap; justify-content:center; }
.hs-btn-main {
  background:var(--lime); color:#fff;
  padding:.8rem 2rem; border-radius:7px;
  font-size:.9rem; font-weight:800; text-decoration:none;
  box-shadow:0 6px 24px rgba(123,193,67,.45);
  transition:all .22s;
}
.hs-btn-main:hover { background:var(--lime-dk); transform:translateY(-2px); }
.hs-btn-ghost {
  background:rgba(255,255,255,.12); color:#fff;
  padding:.8rem 1.8rem; border-radius:7px;
  border:1.5px solid rgba(255,255,255,.35);
  font-size:.9rem; font-weight:700; text-decoration:none;
  backdrop-filter:blur(6px); transition:all .22s;
}
.hs-btn-ghost:hover { background:rgba(255,255,255,.22); }
/* Dots */
.hs-dots {
  position:absolute; bottom:1.8rem; left:50%; transform:translateX(-50%);
  display:flex; gap:.5rem; z-index:3;
}
.hs-dot {
  width:9px; height:9px; border-radius:50%;
  background:rgba(255,255,255,.35); border:none; cursor:pointer;
  transition:all .25s; padding:0;
}
.hs-dot.active { background:#fff; width:24px; border-radius:5px; }
/* Arrows */
.hs-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:3; background:rgba(255,255,255,.15);
  border:none; color:#fff; width:44px; height:44px;
  border-radius:50%; font-size:1.4rem; cursor:pointer;
  backdrop-filter:blur(6px); transition:all .2s;
  display:flex; align-items:center; justify-content:center;
}
.hs-arrow:hover { background:rgba(255,255,255,.3); }
.hs-prev { right:1.5rem; }
.hs-next { left:1.5rem; }

/* ═══════════════════════════════════════════════════
   SIMPLE KEYWORD BOT (no API)
═══════════════════════════════════════════════════ */
#mv-bot-wrap {
  position:fixed; bottom:1.6rem; left:1.6rem;
  z-index:9999; font-family:'Noto Sans Hebrew',sans-serif; direction:rtl;
}
#mv-bot-btn {
  width:58px; height:58px; border-radius:50%;
  background:linear-gradient(135deg,var(--lime),var(--lime-dk));
  border:none; cursor:pointer;
  box-shadow:0 4px 22px rgba(90,145,48,.5);
  display:flex; align-items:center; justify-content:center;
  transition:transform .2s; font-size:1.5rem;
}
#mv-bot-btn:hover { transform:scale(1.08); }
#mv-bot-win {
  position:absolute; bottom:70px; left:0;
  width:310px; max-height:440px;
  background:#fff; border-radius:16px;
  box-shadow:0 12px 48px rgba(0,0,0,.18);
  border:1.5px solid var(--border);
  display:flex; flex-direction:column; overflow:hidden;
  opacity:0; transform:translateY(10px) scale(.96);
  transition:opacity .2s,transform .2s; pointer-events:none;
}
#mv-bot-win.open { opacity:1; transform:none; pointer-events:all; }
.bot-head {
  background:linear-gradient(135deg,var(--lime-dk),#2d4a1e);
  padding:.85rem 1rem; display:flex; align-items:center; gap:.7rem;
}
.bot-head-ico { font-size:1.3rem; }
.bot-head-title { font-size:.88rem; font-weight:800; color:#fff; }
.bot-head-sub   { font-size:.66rem; color:rgba(255,255,255,.7); }
.bot-close { margin-right:auto; background:none; border:none;
  color:rgba(255,255,255,.7); font-size:1.1rem; cursor:pointer; }
.bot-close:hover { color:#fff; }
#bot-msgs {
  flex:1; overflow-y:auto; padding:.75rem;
  display:flex; flex-direction:column; gap:.5rem;
}
.bot-msg { max-width:88%; font-size:.8rem; line-height:1.65;
  padding:.52rem .82rem; border-radius:12px; }
.bot-msg.bot  { background:var(--cream); color:var(--ink);
  align-self:flex-end; border-radius:12px 12px 3px 12px; }
.bot-msg.user { background:var(--lime-dk); color:#fff;
  align-self:flex-start; border-radius:12px 12px 12px 3px; }
.bot-msg a { color:var(--lime-dk); font-weight:700; }
.bot-msg.user a { color:#d4f4b4; }
.bot-chip-row { display:flex; flex-wrap:wrap; gap:.4rem;
  padding:.5rem .75rem; background:var(--cream); border-top:1px solid var(--border); }
.bot-chip {
  font-size:.72rem; font-weight:700; padding:.28rem .75rem;
  border-radius:50px; background:var(--white);
  border:1.5px solid var(--border); color:var(--lime-dk);
  cursor:pointer; transition:all .18s;
}
.bot-chip:hover { background:var(--lime-lt); border-color:var(--lime); }
.bot-form { display:flex; gap:.4rem; padding:.6rem;
  border-top:1px solid var(--border); background:#fafbf8; }
#bot-input {
  flex:1; border:1.5px solid var(--border); border-radius:8px;
  padding:.48rem .8rem; font-family:'Noto Sans Hebrew',sans-serif;
  font-size:.8rem; color:var(--ink); background:#fff; outline:none;
}
#bot-input:focus { border-color:var(--lime); }
#bot-send {
  width:34px; height:34px; border-radius:8px;
  background:var(--lime-dk); border:none; cursor:pointer;
  color:#fff; font-size:1rem; display:flex;
  align-items:center; justify-content:center;
  transition:background .18s;
}
#bot-send:hover { background:var(--ink); }

/* Responsive */
@media(max-width:1024px){
  .hd-nav { display:none; }
  .hd-burger { display:flex; }
  .hd-right .hd-social { display:none; }
  .hd-inner { padding:0 1.2rem; }
  .hd-nav.open {
    display:flex; flex-direction:column; align-items:stretch;
    position:absolute; top:70px; left:0; right:0;
    background:var(--white); border-bottom:1.5px solid var(--border);
    padding:1rem; box-shadow:0 8px 32px rgba(0,0,0,.1); gap:.2rem;
  }
  .hd-dropdown { position:static; opacity:1; transform:none;
    pointer-events:all; box-shadow:none; border:none;
    padding:.3rem 0 .3rem 1rem; display:none; }
  .hd-drop.open .hd-dropdown { display:flex; flex-direction:column; }
}
@media(max-width:600px){
  .hs-title { font-size:2rem; }
  .hs-logo  { width:68px; height:68px; }
  #mv-bot-win { width:calc(100vw - 3.2rem); }
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px){
  .hd-nav { display:none; }
  .hd-burger { display:flex; }
  .hd-right .hd-social { display:none; }
  .hd-inner { padding:0 1.2rem; }
  .hd-nav.open {
    display:flex; flex-direction:column; align-items:stretch;
    position:absolute; top:70px; left:0; right:0;
    background:var(--white); border-bottom:1.5px solid var(--border);
    padding:1rem; box-shadow:0 8px 32px rgba(0,0,0,.1); gap:.2rem;
  }
  .hd-dropdown { position:static; opacity:1; transform:none;
    pointer-events:all; box-shadow:none; border:none;
    padding:.3rem 0 .3rem 1rem; display:none; }
  .hd-drop.open .hd-dropdown { display:flex; flex-direction:column; }
  .hero-slider { height:90vh; min-height:480px; }
  .hs-title { font-size:2rem; }
  .hs-logo  { width:66px; height:66px; }
  .about-inner, .about-story, .mv-section,
  .faq-top, .contact-grid { grid-template-columns:1fr; }
  .programs-grid { grid-template-columns:1fr; }
  .why-cards { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .about-strip, .programs-section, .why-section,
  .faq-section, .contact-section, .cta-band,
  .prog-hero, .prog-body, .related-section,
  .about-story, .mv-section, .values-section,
  .team-section, .partners-section, .about-cta { padding-left:1.2rem; padding-right:1.2rem; }
  .site-footer { padding:2.5rem 1.2rem 1.5rem; }
  .cta-band { grid-template-columns:1fr; }
}
@media(max-width:600px){
  .prog-tabs { gap:.4rem; }
  .prog-tab  { font-size:.75rem; padding:.45rem .85rem; }
  #mv-bot-win { width:calc(100vw - 3.2rem); }
  .hs-actions { flex-direction:column; align-items:center; }
  .footer-grid { grid-template-columns:1fr; }
}


/* Category tab colors from logo palette */
.prog-tab[data-cat="individuals"].active { background: var(--lime-dk); border-color: var(--lime-dk); }
.prog-tab[data-cat="business"].active    { background: var(--mv-teal); border-color: var(--mv-teal); }
.prog-tab[data-cat="employers"].active   { background: var(--mv-blue); border-color: var(--mv-blue); }
.prog-tab[data-cat="personal"].active    { background: var(--mv-olive); border-color: var(--mv-olive); }

/* Section kicker color variety */
.faq-section .sec-kicker    { color: var(--mv-teal); }
.contact-section .sec-kicker{ color: var(--mv-blue); }

/* Footer accent strip - full rainbow */
.site-footer .fb-stripe {
  background: linear-gradient(to left,var(--c1),var(--c2),var(--c3),var(--c4),var(--c5),var(--c6),var(--c7),var(--c8));
  width: 48px; height: 3px;
}


/* Clean scroll reveal – fade + gentle lift */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-clip {
  clip-path: inset(100% 0 0 0);
  transition: clip-path .6s cubic-bezier(.4,0,.2,1);
}
.reveal-clip.visible { clip-path: inset(0% 0 0 0); }
.delay-1 { transition-delay: .07s; }
.delay-2 { transition-delay: .14s; }
.delay-3 { transition-delay: .21s; }
.delay-4 { transition-delay: .28s; }

/* ── Slide per-image captions ── */
.hs-slide-caption {
  position: absolute;
  bottom: 5.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center;
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: .7rem 1.8rem;
  white-space: nowrap;
  opacity: 0; transition: opacity .6s ease .4s;
}
.hs-slide.active .hs-slide-caption { opacity: 1; }
.hs-sc-title {
  font-size: 1.05rem; font-weight: 800; color: #fff;
  letter-spacing: -.01em; margin-bottom: .15rem;
}
.hs-sc-sub {
  font-size: .78rem; color: rgba(255,255,255,.78);
}

/* ── Partner Logos Row ── */
.partners-logo-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  display: block;
  overflow: hidden;
}
.partners-logo-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: space-around;
  gap: .5rem;
  overflow-x: auto;
  width: 100%;
}
.partner-logo-item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: .4rem .6rem;
  width: calc(10% - .5rem);
  min-width: 60px;
}
.partner-logo-item img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: .75;
  transition: all .22s;
  display: block;
}
.partner-logo-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}
