/* הכי למעלה בקובץ */
*{
box-sizing:border-box;
}

body{
font-family:'Rubik', sans-serif;
margin:0;
background:#f4f6f8;
direction:rtl;
text-align:center;
overflow-x:hidden;
}

/* NAV */
.nav{
background:rgba(255,255,255,0.9);
backdrop-filter:blur(10px);
display:flex;
justify-content:center;
align-items:center;
gap:40px;
padding:18px 0;
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.05);
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.nav::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:1px;
background:linear-gradient(90deg, transparent, #3b82f6, transparent);
opacity:0.6;
}

.nav a{
text-decoration:none;
color:#0f172a;
font-weight:500;
font-size:16px;
position:relative;
padding:5px 10px;
transition:0.3s;
letter-spacing: 0.5px;
}

.nav a::after{
content:"";
position:absolute;
bottom:-3px;
right:0;
width:0;
height:2px;
background:linear-gradient(90deg,#3b82f6,#60a5fa);
transition:0.3s;
border-radius:10px;
}

.nav a:hover{
color:#2563eb;
}

.nav a:hover::after{
width:100%;
}

/* 🔥 לוגו מתוקן */
.logo-img{
height:40px;
width:auto;
position:absolute;
right:20px;
top:10px;
}

.hero-logo{
width:200px;
max-width:70%;
display:block;
  margin-bottom: 5px;
mix-blend-mode:screen;
filter:drop-shadow(0 15px 40px rgba(59,130,246,0.6));
 animation: float 4s ease-in-out infinite;
}

/* HEADER */
header {
  background: radial-gradient(circle at center, #0f172a, #020617);
  min-height: 420px;
  padding: 70px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;

  gap: 10px;
}

header h1 {
  font-size: 42px;
  font-weight: 600;
 margin: 0;
}

header p{
font-size: 18px;
opacity: 0.85;
margin-bottom: 20px;
}


.trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;

}

.trust span {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 12px;

  font-size: 13px;
  color: #e2e8f0;

  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.trust span:hover {
  border-color: #3b82f6;
}


.before-after::after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 50%;
  width: 1px;
  background: #d1d5db;
  transform: translateX(-50%);
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}


/* SECTION */
.section{
padding:80px 20px;
scroll-margin-top: 80px;
  text-align: center;
}



/* למה לבחור בנו?*/
.benefits{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
max-width:800px;
margin:60px auto;
margin-top:20px !important;
}

/* כרטיס */
.benefits div{
background:white;
padding:20px 25px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:right;
font-size:18px;
font-weight:500;
position:relative;
transition:0.3s;
padding-right:35px;

}

/* פס כחול קטן (פרימיום אמיתי) */
.benefits div::before{
content:"";
position:absolute;
right:15px;
top:50%;
transform:translateY(-50%);
width:6px;
height:40%;
background:linear-gradient(180deg,#3b82f6,#60a5fa);
border-radius:10px;
}

/* hover */
.benefits div:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* SERVICES */
.services{
display: grid;
  gap: 80px;
justify-items: center;

max-width: 1000px;
  margin: auto;
}

/* מובייל */
@media (max-width: 600px) {
 .services {
    grid-template-columns: 1fr;
  }

  .card {
    max-width: 100%;
    padding: 25px 20px;
  }

  .card h3 {
  font-size: 18px;
}

.card p {
  font-size: 15px;
}
  
}

/* טאבלט */
@media (min-width: 601px) and (max-width: 900px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* מחשב */
@media (min-width: 901px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
}


.card{
  background:linear-gradient(145deg,#ffffff,#f1f5f9);
  padding:30px;
  border-radius:20px;
  width:75%;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:0.3s;
  border:1px solid rgba(0,0,0,0.05);
  position:relative;
  overflow:hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* 👈 זה החסר */
  cursor: pointer;

  
}

.card p {
  min-height: 48px;
}


.card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* הקו הכחול */
.card::before{
content:"";
position:absolute;
top:0;
right:0;
width:100%;
height:4px;
background:linear-gradient(90deg,#3b82f6,#60a5fa);
}

/* ICON */
.icon-box{
width:70px;
height:70px;
margin:0 auto 15px;
border-radius:50%;
background:linear-gradient(135deg,#2563eb,#3b82f6);
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:28px;
}

/* ===== קרוסלה פרימיום ===== */
/* ===== קרוסלה פרימיום ללא טקסט ===== */

.tips-slider{
position:relative;
max-width:420px;
margin:50px auto;
overflow:hidden;
border-radius:25px;
box-shadow:0 25px 60px rgba(0,0,0,0.3);
margin-top:20px !important;
}

.tip{
display:none;
width:100%;
border-radius:25px;
transition:0.4s;
object-fit:cover;
}

.tip.active{
display:block;
}

/* שכבת כהות עדינה */
.tips-slider::after{
content:"";
position:absolute;
top:0;
right:0;
width:100%;
height:100%;
background:linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.4));
border-radius:25px;
}

/* כפתורים פרימיום */
.prev, .next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(255,255,255,0.15);
backdrop-filter:blur(12px);
color:white;
border:none;
font-size:18px;
width:45px;
height:45px;
cursor:pointer;
border-radius:50%;
transition:0.3s;
z-index:3;
}

.prev{ right:15px; }
.next{ left:15px; }

.prev:hover, .next:hover{
background:#3b82f6;
transform:translateY(-50%) scale(1.1);
}

/* MAP */
.map{
width:90%;
margin:auto;
border-radius:15px;
overflow:hidden;
margin-top:20px !important;
}

/* CONTACT */
.contact{
background:#e2e8f0;
padding:50px 20px 100px;
}

.social{
display:flex;
justify-content:center;
gap:20px;
margin-top:20px;
}

.social a{
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:white;
text-decoration:none;

transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow:0 10px 25px rgba(0,0,0,0.25);
opacity:1;
filter:none;
cursor:pointer;
}

/* צבעים לפי מותג */
.social a.fb{ background:#0d6efd; }
.social a.ig{ 
background:linear-gradient(45deg,#d62976,#962fbf,#4f5bd5);
}
.social a.wa{ background:#20c05c; }
.social a.mail{  background:#1d4ed8; }

/* hover */
.social a:hover{
transform:translateY(-5px) scale(1.1);
box-shadow:0 15px 40px rgba(0,0,0,0.3);
filter:brightness(1.1);
}


/* FLOAT */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25d366;
  color: white;
  font-size: 22px;

  text-decoration: none;
  z-index: 9999;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* מובייל בלבד */
@media(max-width:600px){
.benefits{
grid-template-columns:1fr;
}
}

/* כפתור חזרה למעלה */
.scroll-top {
  position: fixed;
  bottom: 95px;
  right: 25px;

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  /* ✨ אפקט זכוכית */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  color: white;
  font-size: 20px;

  text-decoration: none;
  z-index: 9999;

  /* ✨ glow עדין */
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);

  transition: all 0.3s ease;

  opacity: 0;
  pointer-events: none;
}

/* כשהכפתור מופיע */
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* hover */
.scroll-top:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 15px 40px rgba(59,130,246,0.4);
}

/* תנועה קטנה לאייקון */
.scroll-top i {
  transition: 0.3s;
}

.scroll-top:hover i {
  transform: translateY(-3px);
}

.scroll-top i {
  font-size: 22px; /* קצת יותר גדול */
}

.scroll-top:hover i {
  transform: translateY(-5px);
}

/* אנימציה */
@keyframes float{
0%{ transform:translateY(0);}
50%{ transform:translateY(-6px);}
100%{ transform:translateY(0);}
}

.before-after {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
position: relative;
max-width: 900px;
margin: 0 auto;
}

.ba-card {
flex: 1;
  min-width: 280px;
  max-width: 420px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.ba-card img {
width: 100%;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
transition: 0.3s;
}

.ba-card img:hover {
transform: scale(1.05);
}

.ba-card video {
 width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transition: 0.3s;
}


.ba-card video:hover {
transform: scale(1.02);
box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.ba-card h3 {
letter-spacing: 1px;
margin-bottom: 12px;
font-size: 16px;
color: #64748b;
font-weight: 500;
}

.ba-card p {
  margin-top: 8px;
}


video {
cursor: pointer;
}


@media (max-width: 768px) {
  .before-after::after {
    display: none;
  }
}

.reviews-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
   justify-content: center;
  text-align: center;
  direction: ltr;
}

.review-btn {
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
 
}

.reviews-buttons a {
  min-width: 180px;
  text-align: center;
}

.all-reviews-btn {
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* אודות*/
.about {
  max-width: 700px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.about-title {
  font-size: 28px;
  margin: 10px 0;
  position: relative;
  display: block;
  text-align: center;
  color: #0f172a;
}

.title-text {
  position: relative;
  display: inline-block;
}

.title-text::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 8px auto 0;
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  border-radius: 10px;
}

.wave {
   margin-right: 6px; /* בעברית זה שמאלה */
  font-size: 26px;
  margin-inline-end: 6px;
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}


.about-intro {
  background: none;
  color: #333;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-box {
  background:linear-gradient(180deg, #ffffff, #fafafa);
  color: #111;
  padding: 35px;
  border-radius: 20px;
  line-height: 1.8;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.3s;
  border-right: 4px solid #3b82f6;
}

.about-box:hover {
  transform: translateY(-4px);
}

.about-box p {
  margin-bottom: 14px;
}

.about-highlight {
  margin-top: 10px;
  font-weight: bold;
  color: #3b82f6;
}

.about-img {
  width: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px auto 5px;
  margin-bottom: 5px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.about-img:hover {
  transform: scale(1.05);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.nav a.active {
  color: #3b82f6;
  font-weight: 600;
}

.nav a.active::after {
  width: 100%;
}

.nav.scrolled {
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  padding: 12px 0;
}


.services-btn {
  margin-bottom: 40px;
  display: inline-block;
}

.services a {
  text-decoration: none;
  color: inherit;
}

.services .card {
  text-decoration: none;
  color: inherit;
}

/* אפקט יוקרתי ועדין */
.card:hover .icon-box {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(59,130,246,0.25);
}

/* תנועה עדינה לאייקון */
.icon-box i {
  transition: transform 0.3s ease;
}

.card:hover .icon-box i {
  transform: scale(1.08);
}

/* תחושת לחיצה */
.card {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


/* כפתורים מקצועיים */
.cta-btn {
  display: inline-flex;
   padding: 10px 20px;
font-size: 14px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
margin: 0;
  font-weight: 500;
  border-radius: 30px;

  text-decoration: none;
  transition: all 0.3s ease;
align-items: center; /* 👈 מרכז אייקון וטקסט */
justify-content: center;

  box-shadow: 0 10px 25px rgba(59,130,246,0.25);
}

/* hover */
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(59,130,246,0.35);
  background:#16a34a;
}

/* לחיצה */
.cta-btn:active {
  transform: scale(0.97);
}

.cta-whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  box-shadow: 0 10px 25px rgba(37,211,102,0.25);
  animation: pulse 2s infinite;
  font-size: 15px;
  padding: 10px 20px;
  
}
.cta-whatsapp:hover {
  background: linear-gradient(135deg, #25D366, #16a34a);
  box-shadow: 0 10px 25px rgba(37,211,102,0.35);
  transform: translateY(-2px);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* 👈 חשוב */
}

.card .cta-btn {
  width: fit-content; /* 👈 שלא יתפוס את כל הרוחב */
  margin-top: 15px;
 display: inline-flex;
 align-self: center; /* 👈 ממרכז אותו */
  gap: 6px;
  padding: 8px 18px; /* 👈 מקטין אותו */
 font-size: 13px;
 background: rgba(59,130,246,0.12);
  color: #2563eb;
  border-radius: 20px;
  transition: 0.3s;
}

.card-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #3b82f6;
  text-decoration: none;
}

.card .cta-btn:hover {
  background: #3b82f6;
  color: #fff;
}

/* אנימציה לחץ */
.card .cta-btn::after {
  content: "→";
  transition: transform 0.3s ease;
}

.card:hover .cta-btn::after {
  transform: translateX(-5px);
}

/* כפתור טלפון עדין */

 .cta-phone {
  background: transparent;
  color: #2563eb;
  border: 1px solid #3b82f6;
  box-shadow: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* hover */
.cta-phone:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-2px);
}

.cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%; /* 👈 חשוב */
  margin-top: 20px;
direction: rtl;
}

.cta-phone i {
  transition: 0.3s;
}

.cta-phone:hover i {
  transform: scale(1.1);
}

.trust span {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 12px;
  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 13px;
  color: #e2e8f0;

  transition: 0.3s;
}

.trust span:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
}

#contact {
  scroll-margin-top: 100px;
}

html {
  scroll-behavior: smooth;
}

.cleaning-info {
  margin-top: 200px;
}

.seo-section {
  width: 100%;
  padding: 60px 20px;
 background: rgba(11, 26, 43, 0.7);
 border: 1px solid rgba(255,255,255,0.05);
}

.seo-section .content {
  max-width: 800px;
  margin: auto;
}

.seo-section h2 {
  color: #fff;
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 24px;
}

.seo-section::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 20px;
}

.seo-section p {
   max-width: 100%;
  margin-bottom: 12px;
  color: #ccc;
}

footer {
  margin-top: 10px;
}

@media (max-width: 600px) {

  .seo-section {
    padding: 40px 15px;
  }

  .seo-section h2 {
    font-size: 20px;
  }

  .seo-section p {
    font-size: 14px;
    line-height: 1.6;
  }

}

