/* RESET */

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

html, body {
  direction: rtl;
}

body {
  font-family: 'Heebo', sans-serif;
  line-height: 1.7;
}

/* CONTAINER */

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* SECTIONS */

.section {
  padding: 90px 20px;
}

.section h2 {
  font-size: 2.2em;
  margin-bottom: 30px;
  font-weight: 600;
}

.section p {
  font-size: 1.7em;
  max-width: 700px;
  margin: auto;
}

/* LIST */

.list {
  list-style: none;
  max-width: 700px;
  margin: auto;
  text-align: right;
  column-count: 2;       /* שתי עמודות */
  column-gap: 30px;      /* רווח בין העמודות */
  padding-left: 20px;    /* מרחק מהקצה */
}

.list li {
  margin-bottom: 14px;
  font-size: 1.7em;
  padding-right: 26px;
  position: relative;
}

/* BUTTON BASE */

.btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.btn.big {
  font-size: 20px;
  padding: 18px 44px;
}

/* HERO */

.hero {
  padding: 130px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
}

.hero p {
  font-size: 22px;
  margin-bottom: 40px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* CTA */

.cta {
  padding: 90px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 38px;
  margin-bottom: 30px;
}

/* FOOTER */

footer {
  padding: 22px;
  font-size: 14px;
  text-align: center;
}




/* FLOATING WHATSAPP BUTTON */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px; /* בצד שמאל בגלל RTL */
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: white;
}


/* WA WIDGET CONTAINER */

.wa-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

/* FLOAT BUTTON */

.whatsapp-float {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
  animation: pulse 2.2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* PULSE ANIMATION */

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.3); }
  70% { box-shadow: 0 0 0 14px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* MESSAGE BUBBLE */

.wa-message {
  background: white;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;

  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  pointer-events: none;
  
  max-width: 220px;
  text-align: right;
}

.wa-message.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-message button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.wa-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;

  display: flex;
  flex-direction: row-reverse; /* 🔥 זה הקסם */
  align-items: flex-end;
  gap: 12px;
}




/* POPUP MODAL BASE */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
  text-align: right;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.modal-content input,
.modal-content textarea,
.modal-content button {
  width: 100%;
  padding: 8px;
  margin: 5px 0 15px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.modal-content button {
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}


.card.highlight {
    background-color: #ffeeba; /* צהוב קליל לעין */
    animation: pulseHighlight 1.5s infinite alternate;
}

@keyframes pulseHighlight {
    0% { box-shadow: 0 0 8px #ffc107; }
    100% { box-shadow: 0 0 20px #ffc107; }
}





/* HEADER עליון */
.top-header {
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-container .logo {
    height: 50px;
}

.header-container .therapist-name {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #333;
}

/* SLIDER */
.services-slider {
  position: relative;
  width: 100%;
  height: 600px; /* הקטן מ-400px שהיה קודם */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* תמלא את הקונטיינר */
  object-position: center; /* מרכז את התמונה */
}

.slide-text {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 22px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
}


/* MOBILE */

@media (max-width: 768px) {

  .hero h1 { font-size: 50px; }
  .hero p { font-size: 27px; }
  .section h2 { font-size: 39px; }
  .section p { font-size: 30px; }
  p { font-size: 30px; }

}



.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.service-card p {
  font-size: 0.95em;
  color: #555;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}



/*client*/
.timeline {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.timeline-item {
  display: flex;
  gap: 15px;
  background: #f9fbf9;
  padding: 15px;
  border-radius: 10px;
  border-right: 4px solid #6f8f76;
}

.timeline-item .date {
  font-weight: bold;
  min-width: 100px;
}

.timeline-item .content {
  flex: 1;
}
/***/

.features {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: right;
}

.features li {
  font-size: 0.9em;
  margin-bottom: 5px;
  color: #444;
}


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 0.95em;
}

.review-card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #6f8f76;
}


.map-container {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 12px;
}



.benefits-title {
  font-weight: bold;
  margin-top: 10px;
  font-size: 0.95em;
  color: #6f8f76;
  text-align: right;
}

.more-text {
  display: none;
  font-size: 0.9em;
  margin-top: 10px;
  color: #555;
}

.service-card.open .more-text {
  display: block;
}

.read-more-btn {
  margin-top: auto;
  background: none;
  border: none;
  color: #6f8f76;
  font-weight: bold;
  cursor: pointer;
}




/* CLIENT */

.future-treatment-box {
    background: #e8f0e9;
    border: 1px solid #cbdccc;
    border-right: 5px solid #6f8f76;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(70, 100, 75, 0.08);
}

.future-treatment-title {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #4f6f56;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.future-treatment-icon {
    font-size: 21px;
    color: #63866b;
}

.future-treatment-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 10px 0;
}

.future-treatment-item + .future-treatment-item {
    border-top: 1px solid #d4e1d6;
}

.future-treatment-date {
    color: #3f5f47;
    font-size: 16px;
    font-weight: 600;
    min-width: 125px;
}

.future-treatment-time {
    margin-right: 8px;
    font-weight: 500;
    color: #63866b;
}

.future-treatment-details {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4f4f4f;
}

.future-treatment-duration {
    font-size: 13px;
    color: #66776a;
    background: #dce8de;
    padding: 3px 9px;
    border-radius: 12px;
}