/* ===========================
   EXACTO בנייה — Stylesheet
   צבעים: כהה שחרחר + כתום בנייה
   =========================== */

/* --- Variables --- */
:root {
  --dark:         #252525;
  --dark-alt:     #3d3d3d;
  --dark-light:   #555555;
  --orange:       #e06820;
  --orange-hover: #c85618;
  --orange-light: rgba(224,104,32,0.1);
  --white:        #ffffff;
  --light:        #f6f6f4;
  --gray:         #e2e2e0;
  --text:         #2a2a2a;
  --text-muted:   #717171;
  --shadow:       0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.13);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   0.3s ease;
  --max-width:    1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: 'Heebo', sans-serif; }

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.text-center { text-align: center; }
.orange { color: var(--orange); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-orange,
.btn-gold {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover,
.btn-gold:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,104,32,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Section Header --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
  /* transparent over hero */
}
.header.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Logo image --- */
.logo-link {
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
}

/*
  פתרון לוגו JPEG עם רקע אפור:
  ─────────────────────────────
  על Hero כהה (unscrolled):
    invert(1)         → רקע אפור (#f0f0f0) הופך לכהה (#0f0f0f) — מתמזג עם Hero
    hue-rotate(180°)  → מחזיר את הכתום לכתום (הכיוון ההפוך מבטל את עצמו)
    brightness(1.08)  → מבהיר מעט את תוכן הלוגו לנראות מיטבית

  על Header לבן (scrolled):
    contrast(1.5)     → דוחף אפור בהיר (#f0f0f0) → לבן מוחלט (#fff)
                        מכהה טקסט → שחור, מרחיב כתום → עשיר יותר
*/

/* === Hero כהה: רקע נעלם, לוגו נראה כגרסה בהירה ===  */
.header:not(.scrolled) .logo-img {
  height: 68px;
  width: auto;
  filter: invert(1) hue-rotate(180deg) brightness(1.08);
  transition: height var(--transition);
}

/* === Header לבן: רקע אפור → לבן מוחלט, צבעים עשירים === */
.logo-img {
  height: 60px;
  width: auto;
  filter: contrast(1.5);
  transition: height var(--transition), filter var(--transition);
  /* מסיכת קצוות עדינה על Header לבן בלבד */
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
  mask-image:
    linear-gradient(to right,  transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}

/* Header unscrolled overrides — ביטול המסיכה (לא דרושה) */
.header:not(.scrolled) .logo-img {
  -webkit-mask-image: none;
  mask-image: none;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* When scrolled — nav links become dark */
.header.scrolled .nav-link {
  color: var(--text-muted);
}
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active { color: var(--dark); }

.nav-btn {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.nav-btn::after { display: none; }
.nav-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
/* When scrolled — dark hamburger lines */
.header.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: #0f0f0f; /* fallback כשהוידיאו לא נטען */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ===== Video Background ===== */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  /* כיהוי + הסרת רוויה → הוידיאו ישתלב בפלטת הכהה-כתום */
  filter: brightness(0.72) saturate(0.82);
  /* Fade-in חלק בטעינה */
  animation: videoFadeIn 2.5s ease forwards;
}

/* אפקט כתום עדין בצד הטקסט */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 22% 58%, rgba(224,104,32,0.09) 0%, transparent 50%);
  pointer-events: none;
}
/* עיטור גיאומטרי */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(224,104,32,0.04);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* ===== שכבת חשכה — משפרת קריאות הטקסט ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    /* כהה יותר בצד הטקסט (ימין ב-RTL) */
    linear-gradient(to left,   rgba(10,10,10,0.08) 0%, rgba(10,10,10,0.75) 65%),
    /* כהה יותר בתחתית */
    linear-gradient(to bottom, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 90px;
  max-width: 680px;
}
.hero-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.2s;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.4s;
}
.hero-title .orange { color: var(--orange); }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.6s;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.8s;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

/* ===========================
   STATS
   =========================== */
.stats {
  background: var(--dark);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-plus {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}
/* טקסט במקום מספר — אותו גודל ויזואלי */
.stat-text {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.25;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* ===========================
   SERVICES
   =========================== */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--orange);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); }
.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
  transition: color var(--transition);
}
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.68;
}

/* ===========================
   ABOUT
   =========================== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-img {
  position: relative;
  padding-bottom: 30px;
}
.about-img-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background-color: #1e1e1e;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* שכבת עמעום + כיתוב */
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.18) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px 24px;
}
.about-img-caption {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  border-right: 3px solid var(--orange);
  padding-right: 12px;
  line-height: 1.4;
}
.about-badge {
  position: absolute;
  bottom: 0;
  left: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(224,104,32,0.35);
}
.badge-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}
.badge-text {
  font-size: 0.82rem;
  opacity: 0.92;
  white-space: nowrap;
}
.about-content .section-tag { text-align: right; }
.about-content .section-title { text-align: right; }
.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-list {
  margin: 26px 0 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.97rem;
}
.about-list li svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ===========================
   PROJECTS PREVIEW
   =========================== */
.projects-preview { background: var(--light); }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.preview-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  cursor: pointer;
}
.preview-card:hover {
  transform: scale(1.025);
  box-shadow: var(--shadow-lg);
}
.preview-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
/* Placeholder gradients — dark charcoal / orange */
.preview-img-1 { background: linear-gradient(135deg, #1e1e1e, #3d3d3d); }
.preview-img-2 { background: linear-gradient(135deg, #2d2d2d, #1e1e1e); }
.preview-img-3 { background: linear-gradient(135deg, #e06820, #c85618); }

.preview-info {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.84), transparent);
  padding: 28px 20px 18px;
  color: var(--white);
}
.preview-cat {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.preview-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 5px;
}

/* ===========================
   WHY US
   =========================== */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.why-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(224,104,32,0.14);
  line-height: 1;
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(135deg, #111111 0%, var(--dark) 50%, var(--dark-alt) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 50px solid rgba(224,104,32,0.07);
}
.cta-section::before { top: -100px; right: -100px; width: 350px; height: 350px; }
.cta-section::after  { bottom: -100px; left: -100px; width: 350px; height: 350px; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,0.70);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #111111;
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 52px;
}
.footer-brand p {
  color: rgba(255,255,255,0.48);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.75;
  max-width: 300px;
}
/* Footer logo — רקע אפור הופך לכהה (מתמזג עם footer),
   טקסט הופך לבהיר, כתום → זהב-כתום. ללא מסיכה. */
.footer .logo-link,
.footer-brand .logo-link { padding: 0; background: transparent; border: none; }
.footer .logo-img,
.footer-brand .logo-img {
  filter: invert(1) hue-rotate(180deg) brightness(1.15);
  height: 56px;
  -webkit-mask-image: none;
  mask-image: none;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; }

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; }
.footer-links a {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  padding: 6px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; }
.footer-contact a,
.footer-contact p {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  padding: 6px 0;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ===========================
   PROJECTS PAGE
   =========================== */
.page-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  text-align: center;
}
.page-hero .section-tag { margin-bottom: 12px; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 30px;
  border-radius: 50px;
  border: 2px solid var(--gray);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--dark); color: var(--dark); }
.filter-tab.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.project-item-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  background-color: var(--dark);
}
.project-item:hover .project-item-img { transform: scale(1.06); }
.project-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.88), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-item:hover .project-item-overlay { opacity: 1; }
.project-item-info .cat {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.project-item-info h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 5px;
}
.project-item.hidden { display: none; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section { padding: 80px 0 100px; background: var(--light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
}
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; color: var(--orange); }
.contact-item-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item-text a,
.contact-item-text p {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.97rem;
  display: block;
  line-height: 1.6;
}
.contact-item-text a:hover { color: var(--orange); }

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 42px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  font-family: 'Heebo', sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,104,32,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; margin-top: 6px; }
.form-success {
  display: none;
  background: #fef3ea;
  color: #7a3a0a;
  border: 1px solid rgba(224,104,32,0.3);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* וידיאו עולה בהדרגה — מאפור מוחלט לצבע המלא עם הכיהוי */
@keyframes videoFadeIn {
  0%   { opacity: 0;   filter: brightness(0) saturate(0); }
  40%  { opacity: 0.7; filter: brightness(0.4) saturate(0.4); }
  100% { opacity: 1;   filter: brightness(0.72) saturate(0.82); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .stats-grid     { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .about-grid     { grid-template-columns: 1fr; gap: 50px; }
  .about-img      { max-width: 480px; margin: 0 auto; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
  .contact-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 72%;
    max-width: 320px;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 6px;
    transition: right var(--transition);
    box-shadow: -4px 0 32px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav.open { right: 0; }
  /* Inside mobile nav — links always white */
  .header.scrolled .nav-link { color: rgba(255,255,255,0.85); }
  .header.scrolled .nav-link:hover { color: var(--white); }
  .nav-link { font-size: 1.1rem; padding: 10px 0; width: 100%; }
  .nav-btn { margin-top: 16px; width: 100%; }
  .hamburger { display: flex; z-index: 1000; }
  .header.scrolled .hamburger span { background: var(--dark); }

  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; max-width: 260px; }
  .services-grid  { grid-template-columns: 1fr; }
  .preview-grid   { grid-template-columns: 1fr 1fr; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
  .projects-grid  { grid-template-columns: 1fr 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 30px; }
  .cta-btns       { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid    { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num      { font-size: 2.4rem; }
  .preview-grid  { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .about-badge   { left: 8px; }
  .contact-form-wrapper { padding: 32px 22px; }
  .whatsapp-float { bottom: 20px; left: 20px; width: 52px; height: 52px; }
}

/* ============================================================
   DARK INDUSTRIAL PREMIUM — אפקטים מיוחדים
   ============================================================ */

/* --- 1. ORANGE GLOW — זוהר כתום על אלמנטים מרכזיים --- */
.btn-gold:hover,
.btn-orange:hover {
  box-shadow:
    0 0 0 1px rgba(224,104,32,0.4),
    0 0 20px rgba(224,104,32,0.45),
    0 0 60px rgba(224,104,32,0.2),
    0 8px 24px rgba(224,104,32,0.3);
}
.nav-btn:hover {
  box-shadow: 0 0 18px rgba(224,104,32,0.55), 0 0 40px rgba(224,104,32,0.2);
}
.stat-num, .stat-plus {
  animation: statGlow 3.5s ease-in-out infinite;
}
.stat-text {
  animation: statGlow 3.5s ease-in-out infinite 0.8s;
}
.section-tag {
  text-shadow: 0 0 16px rgba(224,104,32,0.45);
  letter-spacing: 3.5px;
}
.about-badge {
  box-shadow: 0 0 30px rgba(224,104,32,0.45), 0 10px 30px rgba(224,104,32,0.3);
}
.about-img-overlay .about-img-caption {
  text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

@keyframes statGlow {
  0%, 100% { text-shadow: 0 0 25px rgba(224,104,32,0.45); }
  50%       { text-shadow: 0 0 50px rgba(224,104,32,0.85), 0 0 90px rgba(224,104,32,0.3); }
}

/* --- 2. DIAGONAL SECTION DIVIDERS --- */
/* stats → כלפי מטה אלכסוני */
.stats {
  position: relative;
  z-index: 3;
  padding-bottom: 82px;
}
.stats::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 66px;
  background: #111111;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 4;
}

/* services — dark, עם אלכסון בתחתית */
.services {
  background: #111111;
  position: relative;
  z-index: 2;
  padding-bottom: 82px;
  overflow: visible;
}
.services::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 66px;
  background: var(--white);
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  z-index: 4;
}

/* cta-section — אלכסון בראש ובסוף */
.cta-section {
  position: relative;
  z-index: 2;
  padding: 130px 0;
  overflow: visible;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 66px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 4;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 66px;
  background: #111111;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 4;
}

/* footer — אלכסון בראש */
.footer {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 66px;
  background: #111111;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 4;
}

/* --- 3. GLASSMORPHISM SERVICE CARDS --- */
.service-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: 2px solid rgba(224,104,32,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-bottom-color: var(--orange);
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(224,104,32,0.2),
    0 8px 40px rgba(0,0,0,0.4),
    0 0 30px rgba(224,104,32,0.1),
    inset 0 0 30px rgba(224,104,32,0.03);
}
.service-card h3 { color: var(--white); }
.service-card p  { color: rgba(255,255,255,0.58); }
.service-icon    { background: rgba(224,104,32,0.1); border: 1px solid rgba(224,104,32,0.15); }
.service-card:hover .service-icon { background: rgba(224,104,32,0.85); box-shadow: 0 0 20px rgba(224,104,32,0.4); }

/* --- 4. GIANT WATERMARK TEXT --- */
.services .section-header,
.services .services-grid { position: relative; z-index: 1; }
.services .container::before {
  content: 'BUILD';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 22vw, 260px);
  font-weight: 900;
  color: rgba(255,255,255,0.018);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 0;
  user-select: none;
}
.services .container { position: relative; overflow: hidden; }

.why .container { position: relative; }
.why .container::before {
  content: 'QUALITY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(60px, 16vw, 200px);
  font-weight: 900;
  color: rgba(37,37,37,0.045);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  line-height: 1;
  z-index: 0;
  user-select: none;
}
.why-grid { position: relative; z-index: 1; }
.why .section-header { position: relative; z-index: 1; }

/* Section title — glow underline */
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--orange);
  margin: 14px auto 0;
  box-shadow: 0 0 14px rgba(224,104,32,0.65), 0 0 30px rgba(224,104,32,0.3);
  border-radius: 2px;
}
.about-content .section-title::after { margin: 14px 0 0; }

/* --- 5. PARALLAX — will-change optimization --- */
.hero-video {
  will-change: transform;
  transform-origin: center center;
}

/* --- 6. MAGNETIC — smooth spring transition --- */
.btn {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              background var(--transition),
              box-shadow var(--transition),
              border-color var(--transition);
}

/* --- 7. WHY CARDS — dark glow enhancement --- */
.why-card:hover {
  box-shadow:
    0 0 0 1px rgba(224,104,32,0.15),
    0 8px 40px rgba(0,0,0,0.08),
    0 0 30px rgba(224,104,32,0.06);
}
.why-num {
  color: rgba(224,104,32,0.15);
  text-shadow: 0 0 40px rgba(224,104,32,0.1);
}

/* --- 8. HERO TAG — glowing badge --- */
.hero-tag {
  border: 1px solid rgba(224,104,32,0.4);
  border-radius: 50px;
  padding: 6px 18px;
  background: rgba(224,104,32,0.08);
  box-shadow: 0 0 20px rgba(224,104,32,0.2);
  letter-spacing: 3px;
}

/* --- 9. PAGE HERO enhancements --- */
.page-hero {
  background: linear-gradient(160deg, #050505 0%, #1a1a1a 55%, #111111 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--light);
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}

/* --- 10. PROJECT FILTER TABS active glow --- */
.filter-tab.active {
  box-shadow: 0 0 16px rgba(37,37,37,0.3);
}

/* --- RESPONSIVE adjustments --- */
@media (max-width: 768px) {
  .stats::after,
  .services::after,
  .cta-section::before,
  .cta-section::after,
  .footer::before { height: 40px; }
  .cta-section { padding: 100px 0; }
}
