/* ===========================
   ROOT COLORS – אפשרות 2
   =========================== */
:root {
  --green: #3e5f49;
  --green-light: #5f8069;
  --brown: #8b5a2b;
  --gray-dark: #333;
  --gray-light: #f2f2f2;
  --white: #ffffff;
  --radius: 0.8rem;
  --shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.08);
  --font: "Arial", sans-serif;

  --section-space: 6vh;
}

/* ===========================
   RESET בסיס הדף
   =========================== */
html,
body {
  margin: 0;
  padding: 0;
  direction: rtl;
  font-family: var(--font);
  background: var(--gray-light);
  color: var(--gray-dark);
  line-height: 1.6;
}

/* יישור רוחב מרכזי */
main,
header {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================
   HERO
   =========================== */
header {
  margin-top: 3vh;
}

.hero {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  min-height: 60vh;
  column-gap: 3vw;
  row-gap: 4vh;
}
.hero-left,
.hero-right {
  flex: 1;
}

.hero-left .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  color: var(--green);
  font-weight: 800;
}

.subtitle {
  font-size: 1rem;
}

/* ===========================
   CONTACT CARD
   =========================== */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2vh 2vw;
  box-shadow: var(--shadow);
  width: 100%;
  margin-top: max(5vh, 10vh);
}

.contact-title {
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 1rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: none;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 1rem;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--green-light);
}

/* כפתור סטיקי בתחתית */
.contact-links {
  position: sticky;
  bottom: 2vh;
  display: flex;
  justify-content: center;
  gap: 2vw;
  margin-top: 3vh;
}

.contact-links a {
  background: var(--green);
  color: white;
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* ===========================
   TITLES (כותרות)
   =========================== */
section h2 {
  margin-top: var(--section-space);
  margin-bottom: 2vh;
  padding-bottom: 1vh;
  border-bottom: 2px solid var(--green-light);
  color: var(--green);
  font-size: 1.7rem;
}

/* ===========================
   SERVICES
   =========================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2vw;
  margin-top: 2vh;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-0.4rem);
}

.card img {
  width: 100%;
  height: 22vh;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 3vw;
  margin: 2vh 0 4vh;
}

.gallery img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.4s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ===========================
   WHY CHOOSE – שתי עמודות
   =========================== */
.why {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4vw;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why .col {
  flex: 1;
}

.bullets li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed #ddd;
}

/* ===========================
   REVIEWS + CONTACT ON SAME ROW
   =========================== */
.reviewLastFormCont {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  justify-content: space-between;
}
.review-carousel {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  direction: rtl;
  text-align: right;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.review {
  display: none;
  font-size: 16px;
  line-height: 1.6;
  animation: fade 0.7s ease;
}

.review.active {
  display: block;
}

.review span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  opacity: 0.8;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lastForm {
  margin-top: var(--section-space);
}

/* טופס יצירת קשר בתא אחד */
.bottom-contact {
  flex: 1;
}


/* ===========================
   FOOTER
   =========================== */
footer {
  text-align: center;
  color: #777;
  margin: 6vh 0 3vh;
  font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero {
    display: inline-block;
  }
  .hero-left,
  .hero-right {
    margin: 2rem 0;
  }

  .reviewLastFormCont {
    display: block;
  }

  .review-section-wrapper {
    flex-direction: column;
  }

  .why {
    flex-direction: column;
  }
}
