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

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

:root {
  --blue:    #0077b6;
  --dark:    #023047;
  --light:   #00b4d8;
  --green:   #25d366;
  --bg:      #f4f8fb;
  --white:   #ffffff;
  --gray:    #f0f4f8;
  --text:    #1a1a2e;
  --muted:   #6b7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
}

/* ─── URGENCY BANNER ─── */
.urgency-banner {
  background: linear-gradient(90deg, #fff3cd, #ffe69c);
  border-top: 3px solid #f4a800;
  border-bottom: 3px solid #f4a800;
  padding: 14px 20px;
  text-align: center;
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .98rem;
  color: #7a4f00;
}
.urgency-dot {
  width: 10px; height: 10px;
  background: #e63946;
  border-radius: 50%;
  animation: blink 1s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}
.urgency-inner a {
  background: #e63946;
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  transition: transform .2s;
}
.urgency-inner a:hover { transform: scale(1.05); }

/* ─── EXIT POPUP ─── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.popup-overlay.show { display: flex; }
.popup-box {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: popIn .3s ease;
}
@keyframes popIn {
  from { transform: scale(.8); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.popup-close {
  position: absolute;
  top: 14px; left: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
}
.popup-close:hover { color: #333; }
.popup-icon { font-size: 3rem; margin-bottom: 12px; }
.popup-box h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 10px; }
.popup-box p { color: var(--muted); margin-bottom: 24px; font-size: 1rem; line-height: 1.6; }
.popup-skip {
  margin-top: 16px;
  font-size: .82rem;
  color: #aaa;
  cursor: pointer;
  text-decoration: underline;
}
.popup-skip:hover { color: #666; }

/* ─── PROMO BAR ─── */
.promo-bar {
  background: linear-gradient(90deg, #e63946, #c1121f);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 201;
}
.promo-fire { font-size: 1.1rem; }
.promo-btn {
  background: white;
  color: #c1121f;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: .88rem;
  transition: transform .2s;
}
.promo-btn:hover { transform: scale(1.05); }

/* ─── HERO PROMO ─── */
.hero-promo {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 28px;
  margin-bottom: 32px;
  display: inline-block;
}
.hero-promo-text {
  color: #ffd166;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cd-box {
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 60px;
  text-align: center;
}
.cd-box span {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.cd-box small {
  font-size: .7rem;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
  display: block;
}
.cd-sep {
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(2,48,71,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  width: 46px; height: 46px;
  object-fit: contain;
  border-radius: 10px;
}
.logo-text { color: white; font-size: 1.4rem; font-weight: 900; letter-spacing: 1px; }
.logo-text span { color: var(--light); }
.nav-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  margin-right: 32px;
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--light); }
.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(37,211,102,.5) !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 20px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(2,48,71,0.82) 0%, rgba(0,119,182,0.75) 100%),
    url('ניקוי-מזגנים.jpg') center/cover no-repeat;
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,180,216,.15) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,.18);
  border: 1px solid rgba(0,180,216,.5);
  color: #7dd3fc;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 .brand { color: var(--light); }
.hero h1 .highlight {
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: var(--light);
  border-radius: 2px;
  opacity: .6;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.btn-primary svg { width: 22px; height: 22px; fill: white; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.5);
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,.1); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '↓';
  font-size: 1.2rem;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── STATS ─── */
.stats-bar {
  background: var(--dark);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 32px 20px;
  border-left: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stat:last-child { border-left: none; }
.stat .num {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--light), #90e0ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat .lbl { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 4px; }

/* ─── SECTIONS ─── */
.section { padding: 80px 20px; max-width: 1100px; margin: auto; }
.sec-label {
  display: inline-block;
  color: var(--light);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}
.sec-sub { color: var(--muted); font-size: 1rem; margin-bottom: 48px; max-width: 520px; }
.center { text-align: center; }
.center .sec-sub { margin-left: auto; margin-right: auto; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--light));
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,119,182,.15); }
.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #e0f4fb, #b8e8f5);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.service-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--light));
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
}

/* ─── PROCESS ─── */
.process-wrap { background: var(--dark); }
.process-wrap .sec-title { color: white; }
.process-wrap .sec-sub { color: rgba(255,255,255,.55); }
.process-wrap .sec-label { color: var(--light); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}
.step-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background .2s;
}
.step-card:hover { background: rgba(0,180,216,.1); }
.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(0,180,216,.4);
}
.step-card h3 { color: white; font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.6; }

/* ─── WHY ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.why-card {
  background: white;
  border-radius: 16px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .2s;
}
.why-card:hover { transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #e0f4fb, #b8e8f5);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.why-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ─── GALLERY ─── */
.gallery-wrap { background: var(--gray); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  transition: transform .3s, box-shadow .3s;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 10px 32px rgba(0,0,0,.18); }
.gallery-grid img:first-child {
  grid-row: span 2;
}

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.review-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  position: relative;
  transition: transform .2s;
}
.review-card:hover { transform: translateY(-4px); }
.quote-icon {
  position: absolute;
  top: 20px; left: 24px;
  font-size: 4rem;
  color: #e0f4fb;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: .95rem; color: #444; line-height: 1.75; margin-bottom: 20px; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f4f8;
  padding-top: 16px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--light));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: var(--dark); font-size: .95rem; }
.reviewer-city { font-size: .8rem; color: var(--muted); }

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
}
.cta-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
}

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}
.faq-q:hover { background: #f0f8ff; }
.faq-arrow { font-size: .75rem; color: var(--blue); transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  transition: max-height .3s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ─── CTA ─── */
.cta-wrap {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 20px;
}
.cta-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,180,216,.1) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-wrap h2 { font-size: 2.6rem; font-weight: 900; color: white; margin-bottom: 14px; position: relative; }
.cta-wrap p { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 36px; position: relative; }
.cta-phone {
  display: block;
  color: var(--light);
  font-size: 1.8rem;
  font-weight: 900;
  text-decoration: none;
  margin-bottom: 28px;
  position: relative;
  letter-spacing: 1px;
}
.cta-phone:hover { color: white; }

/* ─── FOOTER ─── */
footer {
  background: #010f18;
  color: rgba(255,255,255,.45);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .footer-logo { color: white; font-size: 1.1rem; font-weight: 900; }
footer .footer-logo span { color: var(--light); }
footer .footer-links a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  margin-right: 20px;
  font-size: .9rem;
  transition: color .2s;
}
footer .footer-links a:hover { color: var(--light); }
footer .footer-right a { color: var(--green); text-decoration: none; font-weight: 700; }

/* ─── FLOAT WA ─── */
.float-wa {
  position: fixed;
  bottom: 28px; left: 28px;
  background: var(--green);
  border-radius: 50%;
  width: 66px; height: 66px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  z-index: 999;
  transition: transform .2s;
  animation: waPulse 2.5s infinite;
}
.float-wa:hover { transform: scale(1.12); }
.float-wa svg { width: 34px; height: 34px; fill: white; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,.85); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid img:first-child { grid-row: span 1; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { margin-bottom: 8px; }
}
