html {
  scroll-behavior: smooth;
}

/* ====== CSS כללי ====== */
body {
  background-color: #ffffff;
  background-image: url("../img/plants.svg");
  background-repeat: repeat-y;
  background-position: right top;
  background-size: 260px auto;
  direction: rtl;
  text-align: right;
  margin: 0;
  font-family: 'Assistant', sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ====== container ====== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* ====== Header ====== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* לוגו + טקסט */
.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.logo-text h1 {
  margin: 0 10px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}

.logo-text p {
  margin: 0 10px 0 0;
  font-size: 16px;
  color: #588157;
}

/* תפריט ניווט */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: 25px;
}

.main-nav a {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #588157;
}

/* ====== Hero ====== */
.hero {
  position: relative;
  text-align: right;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: contrast(1.1) saturate(1.2) brightness(0.95);
  background: linear-gradient(
    135deg,
    rgba(63, 107, 75, 0.8) 0%,
    rgba(95, 169, 120, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 32px;
}

.hero-content p {
  font-size: 24px;
  margin-bottom: 30px;
}

.hero-buttons {
  height: 40px;
  margin-top: 20px;
}

.hero-buttons .btn {
  background: #4a7c56;
  color: white;
  padding: 16px 32px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: all .25s ease;
  margin-left: 16px;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

/* ====== אודות ====== */
.about {
  padding: 100px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 12px;
}

/* ====== תחומי טיפול ====== */
.services {
  border-radius: 8px;
  padding: 100px 20px;
  background: #f7f7f7;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* ====== תהליך טיפול ====== */
.process {
  padding: 100px 20px;
}

.process h2 {
  text-align: center;
  margin-bottom: 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.process-number {
  width: 42px;
  height: 42px;
  background: #588157;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 600;
  font-size: 18px;
}

.process-card h3 {
  margin-bottom: 10px;
}

.process-card p {
  font-size: 15px;
  color: #555;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 700px;
  margin: auto;
  margin-bottom: 15px;
}

.faq details {
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.faq details:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq summary {
  font-weight: 600;
  font-size: 18px;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

/* ===== Contact ===== */
.contact {
  border-radius: 8px;
  padding: 40px 20px;
  background: #f3f7f2;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 30px auto 0 auto;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button.btn {
  background: #7aa77a;
  color: white;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.contact-form button.btn:hover {
  background: #588157;
}

/* ===== מי זה מתאים ===== */
.who {
  padding: 100px 20px;
  background: #fafcf9;
}

.who h2 {
  text-align: center;
  margin-bottom: 50px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.who-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.who-card:hover {
  transform: translateY(-6px);
}

.who-card h3 {
  margin-bottom: 15px;
  color: #588157;
}

.who-card ul {
  padding: 0;
  list-style: none;
}

.who-card li {
  margin-bottom: 10px;
  position: relative;
  padding-right: 18px;
}

.who-card li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #7fb38a;
}

.who-summary {
  margin-top: 50px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  color: #444;
}

/* ===== Footer ===== */
.site-footer {
  background: #f3f7f2;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #588157;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 10px;
  color: #444;
  font-size: 15px;
}

.footer-col a:hover {
  color: #588157;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {

  body {
    background-size: 120px auto;
  }

  .container {
    padding: 15px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    left: 20px;
    top: 20px;
  }

  .main-nav {
    width: 100%;
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    z-index: 999;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 0;
  }

  .main-nav li {
    margin: 12px 0;
    text-align: center;
  }

  .main-nav a {
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0;
  }

  .main-nav a:hover {
    color: #fff;
    background: #588157;
    border-radius: 8px;
  }

  .hero {
    height: auto;
    padding: 10px;
    justify-content: flex-start;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons .btn {
    display: block;
    margin-bottom: 10px;
    text-align: center;
  }

  .who-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about,
  .services,
  .process {
    padding: 60px 20px;
  }
}

/* ===== WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
