@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --yellow:   #f7cf12;
  --green:    #8cbf2b;
  --green-d:  #5f8a1c;
  --black:    #1a1a1a;
  --gray:     #5b5b5b;
  --light:    #f7f9f2;
  --border:   #e8ebe2;
  --nav-h:    54px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', Arial, sans-serif;
  background: #fff;
  color: var(--black);
  line-height: 1.75;
  direction: rtl;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  min-height: 68px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 8px 32px;
  gap: 24px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}
.navbar .nav-logo img {
  height: 48px;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--light);
  color: var(--green-d);
}
.nav-cta {
  background: var(--black) !important;
  color: var(--yellow) !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--yellow) !important;
  color: var(--black) !important;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--light);
  color: var(--black);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-social a:hover { background: var(--yellow); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-right: auto;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== DIVIDER ===== */
.divider {
  height: 5px;
  background: linear-gradient(to left, var(--yellow), var(--green));
}

/* ===== כפתור וואטסאפ צף ===== */
.wa{position:fixed;bottom:24px;left:24px;width:58px;height:58px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(37,211,102,.5);z-index:200;animation:waPulse 2.5s infinite}
.wa svg{width:30px;height:30px;fill:#fff}
@keyframes waPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.08)}}

/* ===== MODERN NAV (מאוחד עם דף הבית) ===== */
.brand-bar{height:6px;background:linear-gradient(90deg,var(--green),var(--yellow))}
.topbar{background:var(--black);color:#fff;font-size:.82rem}
.topbar .wrap{max-width:1240px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between;height:38px;flex-wrap:wrap;gap:6px}
.topbar a{color:#fff;opacity:.85;text-decoration:none}
.topbar a:hover{opacity:1}
.topbar .social{display:flex;gap:14px;align-items:center}
.topbar .social b{color:var(--yellow)}
nav.main{position:sticky;top:0;z-index:1000;background:#fff;border-bottom:1px solid var(--border);box-shadow:0 2px 14px rgba(0,0,0,.05)}
nav.main .wrap{max-width:1240px;margin:0 auto;padding:8px 24px;display:flex;align-items:center;gap:20px;min-height:72px}
nav.main .logo img{height:50px;display:block}
nav.main ul{display:flex;gap:6px;list-style:none;flex:1;justify-content:center;margin:0;padding:0}
nav.main ul a{font-weight:600;font-size:.94rem;padding:8px 14px;border-radius:8px;transition:background .2s,color .2s;text-decoration:none;color:var(--black);display:block}
nav.main ul a:hover{background:var(--light);color:var(--green-d)}
nav.main .nav-quote{background:var(--green);color:#fff;font-weight:700;border-radius:10px;padding:11px 22px;font-size:.95rem;text-decoration:none;white-space:nowrap;box-shadow:0 6px 18px rgba(140,191,43,.4);transition:transform .15s}
nav.main .nav-quote:hover{transform:translateY(-2px)}
nav.main .nav-burger{display:none;background:none;border:none;font-size:1.7rem;cursor:pointer;color:var(--black);line-height:1;padding:4px 8px}
@media(max-width:900px){
  nav.main .nav-burger{display:block;margin-inline-start:auto}
  nav.main ul{display:none;flex-basis:100%;flex-direction:column;order:5;padding-top:6px}
  nav.main.navopen ul{display:flex}
}

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1480px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTIONS ===== */
section { padding: 64px 0; }
section.bg-light { background: var(--light); }
section.bg-dark { background: var(--black); color: #fff; }

.section-label {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-d);
  margin-bottom: 10px;
}
h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
  line-height: 1.3;
}
.bg-dark h2 { color: #fff; }
p { color: var(--gray); margin-bottom: 14px; font-size: 1rem; }
p:last-child { margin-bottom: 0; }
.bg-dark p { color: rgba(255,255,255,0.75); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--black);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('bg-template.png') center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.page-hero .sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto;
}
.page-hero .badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 16px;
}
/* כתם אור בגווני הפרח שבלוגו (ירוק→צהוב) */
.page-hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,191,43,0.7), rgba(95,138,28,0.35) 50%, transparent 72%);
  top: -80px; right: 5%;
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
  animation: floatBlob 9s ease-in-out infinite;
}

/* ===== כתמי אור נקיים בסקשנים בהירים ===== */
section.bg-light { position: relative; overflow: hidden; }
section.bg-light > .container { position: relative; z-index: 1; }
section.bg-light::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,207,18,0.16), transparent 70%);
  top: -120px; left: -70px;
  pointer-events: none; z-index: 0;
  animation: floatBlob 11s ease-in-out infinite;
}
section.bg-light::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,191,43,0.12), transparent 70%);
  bottom: -110px; right: -60px;
  pointer-events: none; z-index: 0;
  animation: floatBlob 13s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(18px, 22px); }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero::after, section.bg-light::before, section.bg-light::after { animation: none; }
}

/* ===== TAGS ===== */
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag {
  background: #fff;
  color: var(--green-d);
  padding: 8px 18px;
  border-radius: 22px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid var(--green);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ===== CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 28px; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 5px;
}
.card:nth-child(odd)::before { background: var(--green); }
.card:nth-child(even)::before { background: var(--yellow); }
.card:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  transform: translateY(-6px);
  border-color: var(--green);
}
.card .icon {
  font-size: 1.7rem; margin-bottom: 14px;
  display: inline-flex; width: 56px; height: 56px;
  align-items: center; justify-content: center;
  background: rgba(140,191,43,0.12); border-radius: 15px;
}
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.card p { font-size: 0.9rem; margin: 0; }

/* ===== IMAGE GRIDS ===== */
.img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.img-grid .img-wrap { overflow: hidden; border-radius: 12px; }
.img-grid .img-wrap img {
  width: 100%; height: 220px; object-fit: cover;
  display: block; border-radius: 12px;
  transition: transform 0.4s ease;
}
.img-grid .img-wrap:hover img { transform: scale(1.06); }

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 220px; object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 10px;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  color: #fff;
  font-size: 2rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; left: 20px;
  color: #fff; font-size: 2rem;
  cursor: pointer;
  background: none; border: none;
  line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  padding: 12px 18px;
  border-radius: 50%;
  transition: background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { right: 24px; }
.lightbox-next { left: 24px; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--black);
  color: #fff;
  border-radius: 16px;
  padding: 44px 40px;
  text-align: center;
  border-top: 5px solid var(--yellow);
}
.highlight-box .big {
  font-size: 1.4rem; font-weight: 900;
  color: var(--yellow); letter-spacing: 2px; margin-bottom: 12px;
}
.highlight-box h2 { color: #fff; }
.highlight-box p { color: rgba(255,255,255,0.8); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(120deg, var(--green), var(--yellow));
  text-align: center;
  padding: 70px 24px;
}
.cta-section h2 { color: var(--black); margin-bottom: 12px; font-size: 2.2rem; }
.cta-section p { color: #1f1f1f; max-width: 520px; margin: 0 auto 24px; font-size: 1.1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-dark { background: var(--black); color: var(--yellow); }
.btn-dark:hover { background: #333; }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: #e6b800; }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--yellow); }

/* ===== FORMS ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Heebo', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { text-align: center; margin-top: 10px; }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: #fff;
  padding: 56px 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto 40px;
}
.footer-brand img { height: 48px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: #fff; }
footer h4 { font-size: 0.85rem; font-weight: 700; color: var(--yellow); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
footer ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
footer ul li a { text-decoration: none; color: #fff; font-size: 0.9rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; text-decoration: none;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 18px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
}
.stat-item {
  background: #fff;
  text-align: center;
  padding: 28px 16px;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num span { color: var(--yellow); }
.stat-label { font-size: 0.82rem; color: var(--gray); font-weight: 500; }

/* ===== ARTICLE CARDS ===== */
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 32px; }
.article-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.article-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.article-card .art-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.article-card .art-body { padding: 20px; }
.article-card .art-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.article-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 8px; line-height: 1.4; }
.article-card p { font-size: 0.88rem; color: var(--gray); margin: 0; }
.article-card .art-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: #aaa;
  display: flex;
  justify-content: space-between;
}

/* ===== TWO COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.wa-float .wa-bubble {
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover .wa-bubble {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.55);
}
.wa-float .wa-bubble svg { width: 28px; height: 28px; fill: #fff; }
.wa-float .wa-label {
  background: #fff;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SKIP LINK (accessibility) ===== */
.skip-link {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ===== DROPDOWN NAV ===== */
.nav-links li { position: relative; }
.nav-links li .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  min-width: 180px;
  z-index: 200;
  padding: 6px 0;
  list-style: none;
}
.nav-links li:hover .dropdown { display: block; }
.nav-links li .dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  border-radius: 0;
  white-space: nowrap;
}
.nav-links li .dropdown li a:hover { background: #fffbe6; color: var(--black); }
.nav-links > li > a.has-dropdown::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.6;
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 20px;
  text-align: right;
  font-family: 'Heebo', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover { background: #fffbe6; }
.faq-question .faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--yellow);
  flex-shrink: 0;
  margin-right: 12px;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 18px;
}

/* ===== CLIENT LOGOS ===== */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.logo-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.logo-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: var(--yellow); }
.logo-card img { max-height: 56px; max-width: 100%; object-fit: contain; filter: grayscale(100%); transition: filter 0.2s; }
.logo-card:hover img { filter: grayscale(0%); }
.logo-card .logo-placeholder {
  font-size: 0.78rem;
  color: #bbb;
  text-align: center;
  font-weight: 500;
}

/* ===== VIDEO GRID ===== */
.video-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 28px; }
.video-card { background: #fff; border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; }
.video-card .video-wrap { position: relative; padding-bottom: 56.25%; height: 0; }
.video-card .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-card .video-wrap .video-placeholder {
  position: absolute; inset: 0;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  gap: 8px;
}
.video-card .video-wrap .video-placeholder .play { font-size: 3rem; color: var(--yellow); }
.video-card .video-body { padding: 16px 18px; }
.video-card .video-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.video-card .video-body p { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* ===== PROJECT CASE STUDY ===== */
.project-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 32px; }
.project-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
  background: #fff;
}
.project-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.project-card .proj-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.project-card .proj-body { padding: 22px 20px; }
.project-card .proj-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 10px;
}
.project-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; color: var(--black); }
.project-card p { font-size: 0.88rem; color: var(--gray); margin: 0; }
.project-card .proj-meta {
  display: flex; gap: 16px; margin-top: 14px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.project-card .proj-meta span { font-size: 0.78rem; color: #aaa; }
.project-card .proj-meta strong { display: block; font-size: 0.85rem; color: var(--black); margin-top: 2px; }

@media (max-width: 768px) {
  .logo-grid { grid-template-columns: repeat(3,1fr); }
  .video-grid, .project-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .logo-grid { grid-template-columns: repeat(2,1fr); }
  .wa-float { bottom: 18px; left: 18px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-social { display: none; }
  .nav-toggle { display: flex; }
  .navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    right: 0; left: 0;
    background: #fff;
    padding: 16px 24px 24px;
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
    z-index: 999;
  }
  .navbar.open .nav-social {
    display: flex;
    position: absolute;
    top: calc(var(--nav-h) + 280px);
    right: 0; left: 0;
    background: #fff;
    padding: 16px 24px;
    justify-content: center;
    gap: 16px;
    z-index: 999;
  }
  .card-grid, .article-grid, .gallery-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .img-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ===== ACCESSIBILITY WIDGET ===== */
#a11y-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  top: auto;
  left: auto;
  transform: none;
  z-index: 9999;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}
#a11y-btn:hover { transform: scale(1.08); }
#a11y-btn:focus { outline: 3px solid #000; }

#a11y-panel {
  position: fixed;
  right: 20px;
  bottom: 84px;
  top: auto;
  left: auto;
  z-index: 9998;
  background: #fff;
  border: 2px solid var(--yellow);
  border-radius: 16px;
  padding: 20px 16px;
  width: 220px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
#a11y-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#a11y-panel h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 500;
}
.a11y-row span { flex: 1; }
.a11y-controls { display: flex; gap: 6px; }
.a11y-controls button {
  width: 30px; height: 30px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--light);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.15s;
}
.a11y-controls button:hover { background: var(--yellow); border-color: var(--yellow); }
.a11y-toggle {
  width: 100%;
  padding: 8px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--light);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: background 0.15s;
  text-align: center;
  font-family: inherit;
}
.a11y-toggle:hover, .a11y-toggle.active { background: var(--yellow); border-color: var(--yellow); }
.a11y-reset {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 6px;
  background: var(--black);
  color: #fff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 4px;
  font-family: inherit;
}
/* High contrast mode */
/* ניגודיות: בלי filter על body (שובר position:fixed) — חיזוק קישורים וטקסט בלבד */
body.a11y-contrast { font-weight: 500; }
body.a11y-contrast a { text-decoration: underline !important; }
/* Large cursor */
body.a11y-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M8 2 L8 26 L14 20 L18 30 L22 28 L18 18 L26 18 Z' fill='black' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E") 0 0, auto !important; }
