* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #111;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

:root {
  --blue: #022a4b;
  --blue-dark: #01182c;
  --accent: #f7b733;
  --accent-dark: #e5a021;
  --bg-light: #ffffff;
  --text-muted: #777;
  --radius-lg: 18px;
  --shadow-soft: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* פס עליון */
.top-bar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  gap: 16px;
}

.top-bar-left {
  justify-self: flex-start;
  text-align: right;
  font-size: 15px;
  line-height: 1.3;
}

.top-bar-left a {
  font-weight: 600;
  color: var(--blue);
}

.top-bar-center {
  justify-self: center;
}

.top-bar-center .logo img {
  height: 68px;
}

.top-bar-right {
  justify-self: flex-end;
  text-align: left;
  display: flex;
  align-items: center;
}

.quote-btn {
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  color: #000;
}

.quote-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* ניווט */
.main-nav {
  background: #000;
  color: #fff;
  padding: 10px 26px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.main-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-item {
  position: relative;
  cursor: pointer;
  padding: 6px 0;
}

.nav-item > a {
  color: #fff;
  font-weight: 500;
}

.nav-item:hover > a {
  color: var(--accent);
}

.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #111;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 10px 0;
  display: none;
  z-index: 100;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 8px 16px;
  color: #fff;
  font-size: 14px;
}

.dropdown a:hover {
  background: #222;
  color: var(--accent);
}

/* גיבור */
.hero {
  position: relative;
  min-height: 80vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("p1.jpg") center center / cover no-repeat;
  transform: scale(1);
  filter: brightness(1);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.5));
  z-index: -1;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 26px;
}

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

.btn {
  border-radius: 999px;
  padding: 11px 26px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.btn-wa-main {
  background: #0c8f43;
  color: #fff;
  border: 2px solid #067a33;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
}

.btn-wa-main:hover {
  background: #067a33;
  border-color: #046428;
  transform: translateY(-1px);
}

.btn-wa-main i {
  font-size: 18px;
  color: #fff;
}
.btn-wa{
    background: #067a33;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

/* Outline button for light sections (white background) */
.btn-outline-dark {
  background: transparent;
  border-color: rgba(0,0,0,0.18);
  color: #111;
}

.btn-outline-dark:hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.28);
  transform: translateY(-1px);
}

/* סקשן כללי */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 6px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 34px;
}

/* שירותים */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-content {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-content h3 {
  font-size: 18px;
}

.service-content p {
  font-size: 14px;
  color: var(--text-muted);
}

.service-link {
  margin-top: 8px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
}

.service-link span {
  margin-right: 4px;
}

/* יצירת קשר בית */
.contact-section {
  background: #ffffff;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  padding: 32px;
  align-items: center;
}

.contact-text h2 {
  margin-bottom: 10px;
}

.contact-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
}

.contact-form textarea {
  border-radius: 18px;
  min-height: 70px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
}

/* ביקורות בעמוד הבית */
.reviews-section {
  padding: 60px 0 70px;
  background: linear-gradient(180deg, #eeeeee, #dddddd);
}

.reviews-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.reviews-slider {
  position: relative;
  margin-top: 20px;
}

.review-card {
  background: #111;
  color: #fff;
  border-radius: 26px;
  padding: 28px 30px 26px;
  margin: 0 auto 22px;
  max-width: 900px;
  min-height: 150px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.review-name {
  font-weight: 700;
  margin-bottom: 6px;
}

.review-rating {
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.review-stars {
  color: #ffc107;
  letter-spacing: 2px;
  font-size: 16px;
}

.review-text {
  font-size: 15px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.slider-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s, transform 0.2s;
}

.slider-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* פוטר */
footer {
  background: var(--blue-dark);
  color: #fff;
  padding-top: 35px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 22px;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.2fr;
  gap: 32px;
  align-items: flex-start;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 54px;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 14px;
  color: #d0d7e2;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-contact a {
  color: #fff;
  font-weight: 600;
}

.quick-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* אייקונים בפוטר */
.quick-contact-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  font-size: 20px;
}

.btn-wa {
  background: #25d366;
  color: #fff;
}

.btn-mail {
  background: #f5b400;
  color: #000;
}

.btn-call {
  background: #ffffff;
  color: #000;
}

.quick-contact-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 10px 20px 14px;
  font-size: 13px;
  color: #c3ccda;
}

/* גלריה חדשה */
.gallery-slider {
  max-width: 900px;
  margin: 30px auto;
}

/* תמונה גדולה */
.gallery-main {
  position: relative;
  max-width: 900px;
  margin: 30px auto 10px auto;
  border-radius: 12px;
  background: #f5f5f5; /* רקע בהיר במקום שחור */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-main img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 70vh; /* שלא יתפוצץ לגובה מוגזם במסכים נמוכים */
  object-fit: contain; /* לא חותך שום דבר מהתמונה */
  display: block;
}

/* חצים */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.gallery-arrow.prev {
  right: 10px;
}

.gallery-arrow.next {
  left: 10px;
}

/* פס תמונות קטנות למטה */
.gallery-thumbs {
  margin-top: 12px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.gallery-thumbs .thumb {
  height: 70px;
  width: 90px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.gallery-thumbs .thumb.active {
  opacity: 1;
  border-color: #f4b400; /* כמו הצהוב בכפתור */
}
/* מעטפת האקורדיון */
.accordion details {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #e4e4e4;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* בעת פתיחה */
.accordion details[open] {
  border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

/* כותרת השאלה */
.accordion summary {
  cursor: pointer;
  padding: 16px 52px 16px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
  position: relative;
}

/* מניעת סימון הטקסט בלחיצה */
.accordion summary:active,
.accordion summary:focus {
  outline: none;
}

/* אייקון חץ */
.accordion summary::after {
  content: "›";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 20px;
  color: #444;
  transition: transform 0.25s ease;
}

/* חץ מסתובב כשפתוח */
.accordion details[open] summary::after {
  transform: translateY(-50%) rotate(270deg);
  color: var(--accent);
}

/* תוכן פירוט */
.accordion details ul {
  margin: 0;
  padding: 0 25px 18px 25px;
  color: #444;
  font-size: 0.98rem;
  line-height: 1.7;
}

.accordion details ul li {
  margin-bottom: 6px;
}

/* ריחוף */
.accordion summary:hover {
  background: #fafafa;
}


/* מובייל */
@media (max-width: 600px) {
  .gallery-main {
    height: 320px;
  }

  .gallery-thumbs .thumb {
    height: 60px;
    width: 80px;
  }

  .gallery-arrow {
    font-size: 26px;
    width: 34px;
    height: 34px;
  }
}


/* רספונסיביות 992px */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* לייבא תוכן */
.content-layout {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 28px 26px 30px;
}

.content-block + .content-block {
  margin-top: 24px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.content-block h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--blue);
}

.content-block h3 {
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 6px;
  color: #333;
}

.content-block p {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.content-block ul {
  margin-right: 18px;
  font-size: 14px;
  color: #444;
}

.content-block li {
  margin-bottom: 4px;
}

.content-cta {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

.content-cta p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

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

/* כותרות כלליות */
h2 {
  text-align: center;
}

/* שאלות נפוצות */
.faq-item {
  margin-bottom: 12px;
  border-radius: 8px;
  background: #f7f7f7;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: right;
  padding: 12px 16px;
  border: none;
  background: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  padding-right: 40px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background: #f7f7f7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 12px 16px 16px;
}

/* חץ בשאלות */
.faq-question .arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question .arrow {
  transform: translateY(-50%) rotate(-135deg);
}

/* תמונות שירות */
.service-images {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
  flex-wrap: wrap;
}

.service-images img {
  max-width: 360px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* לוגו בקופסה */
.logo-box {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.logo-box img {
  max-height: 100%;
  max-width: 80%;
  object-fit: contain;
}

/* כפתור תפריט לנייד */
.nav-toggle {
  display: none;
}

/* גלריה כללית */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* טופס יצירת קשר – עמוד ייעודי */
.contact-page-form .container {
  max-width: 760px;
  margin: 0 auto;
}

.contact-page-form .section-subtitle {
  text-align: center;
  margin-top: 6px;
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-page-form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-page-form .form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-page-form .form-field-full {
  grid-column: 1 / -1;
}

.contact-page-form .form-field input,
.contact-page-form .form-field textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.contact-page-form .form-field textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 90px;
}

.contact-page-form .contact-submit {
  align-self: center;
  margin-top: 4px;
}

.contact-page-form .form-field input:focus,
.contact-page-form .form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(247, 183, 51, 0.2);
}

/* פרטי התקשרות ממורכזים */
.contact-details-center .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-details-center h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.contact-details-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-details-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.contact-details-text p {
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-details-text a {
  color: var(--blue);
  font-weight: 600;
}

/* עמוד ביקורות מלא */
.reviews-page .hero-inner {
  background: #f5f5f5;
  padding: 40px 20px 20px;
}

.reviews-page .hero-inner-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.reviews-page .hero-inner h1 {
  font-size: 26px;
  margin-bottom: 6px;
}

.reviews-page .hero-inner p {
  font-size: 14px;
  color: var(--text-muted);
}

.reviews-list-container {
  max-width: 850px;
  margin: 0 auto;
}

.reviews-summary {
  text-align: center;
  margin-bottom: 26px;
}

.reviews-summary-score {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.reviews-summary-score .score-number {
  font-size: 28px;
  font-weight: 700;
}

.reviews-summary-score .score-stars {
  color: #ffc107;
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews-summary-text {
  font-size: 14px;
  color: var(--text-muted);
}

.review-card-full {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 20px 22px 18px;
  margin-bottom: 18px;
}

.review-card-full h2 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--blue);
}

.review-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.review-card-full p {
  font-size: 14px;
  color: #444;
}

.reviews-cta {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #eee;
  text-align: center;
}

.reviews-cta p {
  font-size: 14px;
  margin-bottom: 14px;
  color: #555;
}

.reviews-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.review-score .num {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}

.review-score .stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 1px;
}

/* כפתורי וואטסאפ מודגשים */
.btn-wa {
  background: #25d366 !important;
  color: #fff !important;
  border: 2px solid #1da851 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
}

.btn-wa:hover {
  background: #1da851 !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-wa,
.quick-contact-btn.btn-wa {
  background: #0c8f43 !important;
  color: #fff !important;
  border: 3px solid #067a33 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
  font-size: 22px !important;
}

.btn-wa i,
.quick-contact-btn.btn-wa i {
  color: #fff !important;
}

.btn-wa:hover,
.quick-contact-btn.btn-wa:hover {
  background: #067a33 !important;
  border-color: #046428 !important;
  transform: translateY(-2px) !important;
}

/* כפתור וואטסאפ בולט באזורים עיקריים */
.main-cta .btn-wa,
.reviews-cta .btn-wa,
.service-cta .btn-wa {
  background: #0c8f43 !important;
  border: 2px solid #046a2e !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 12px 26px !important;
  font-size: 16px !important;
  border-radius: 999px !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.main-cta .btn-wa i,
.reviews-cta .btn-wa i,
.service-cta .btn-wa i {
  color: #fff !important;
  font-size: 20px !important;
}

.main-cta .btn-wa:hover,
.reviews-cta .btn-wa:hover,
.service-cta .btn-wa:hover {
  background: #067a33 !important;
  border-color: #055c28 !important;
  transform: translateY(-2px) !important;
}

/* HERO פנימי לעמודי תוכן */
.hero-inner {
  background: #f5f5f5;
  padding: 40px 20px 24px;
}

.hero-inner-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-inner-content h1 {
  font-size: 26px;
  margin-bottom: 8px;
}

.hero-inner-content p {
  font-size: 14px;
  color: var(--text-muted);
}

/* אזורי שירות */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.area-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  box-shadow: var(--shadow-soft);
  transition: 0.2s;
  border: 1px solid #eee;
}

.area-card:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-3px);
  border-color: var(--accent-dark);
}

/* כפתור וואטסאפ צף */
/* כפתור וואטסאפ צף בסגנון כפתור מלא עם טקסט */
/* כפתור וואטסאפ צף – כפתור ירוק עם טקסט */
.whatsapp-float {
  position: fixed !important;
  bottom: 20px;
  right: 20px;
  z-index: 9999;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  background: #0c8f43;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
  font-size: 18px;
  color: #fff;
}

.whatsapp-float span {
  white-space: nowrap;
}

/* הובר קטן */
.whatsapp-float:hover {
  background: #067a33;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

/* במובייל – קצת קטן יותר */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 14px;
    right: 12px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .whatsapp-float i {
    font-size: 16px;
  }
}


/* במובייל נעשה אותו קצת יותר קטן */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 12px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .whatsapp-float i {
    font-size: 16px;
  }
}


/* רספונסיביות 768px */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .top-bar-left {
    display: none;
  }

  .top-bar-center,
  .top-bar-right {
    justify-self: center;
    text-align: center;
  }

  .main-nav-inner {
    justify-content: flex-start;
    gap: 16px;
    font-size: 14px;
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 24px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .content-layout {
    padding: 20px 16px 22px;
  }

  .logo img {
    max-width: 120px;
  }

  .nav-toggle {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-size: 20px;
    text-align: right;
    cursor: pointer;
  }

  .main-nav-inner {
    display: none;
    flex-direction: column;
    background: #000;
    padding: 8px 0;
    gap: 0;
  }

  .main-nav-inner.open {
    display: flex;
  }

  .main-nav-inner .nav-item a {
    display: block;
    padding: 10px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
  }

  .contact-page-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-page-form .contact-submit {
    width: 100%;
  }

  .reviews-page .hero-inner {
    padding: 30px 16px 16px;
  }

  .review-card-full {
    padding: 18px 14px;
  }

  .hero-inner {
    padding: 28px 16px 18px;
  }

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

  .areas-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .area-card {
    padding: 18px;
    font-size: 16px;
  }

  .mobile-menu-icon,
  .hamburger,
  .menu-toggle {
    font-size: 50px;
    color: white;
    padding: 10px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 16px;
    right: 16px;
  }
    /* כפתור וואטסאפ גדול – כמו הכפתור הצהוב */


}
/* Container helper */
.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ---------- Trust / Credibility ---------- */
.trust-section{
  background: transparent;
  padding: 34px 0 10px; /* נותן אוויר ולא מרגיש מודבק */
}

.trust-section .trust-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.trust-card{
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-soft);
}

.trust-name{
  font-size: 20px;
  margin-bottom: 10px;
}

.trust-list,
.trust-steps{
  margin: 0;
  padding: 0 18px 0 0;
}

.trust-list li,
.trust-steps li{
  margin: 8px 0;
  color: #222;
}

.trust-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 12px;
}

.trust-badges span{
  display:inline-block;
  border: 1px solid rgba(0,0,0,0.10);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(255,255,255,0.9);
}

.trust-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

/* הלינקים ייראו כמו כפתורים */
.trust-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid rgba(0,0,0,0.16);
  background: #fff;
  color: #111;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  transition: 0.2s;
}

.trust-links a:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,0.24);
}

.trust-cta{
  display:flex;
  justify-content:flex-start; /* לא יושב באמצע מוזר */
  margin-top: 14px;
}

/* במובייל */
@media (max-width: 860px){
  .trust-grid{ grid-template-columns: 1fr; }
  .trust-cta{ justify-content:center; }
}
/* Trust - polishing */
.trust-section { padding-top: 26px; }

.trust-card { min-height: 100%; }

.trust-name{
  font-size: 20px;
  margin-bottom: 10px;
}

.trust-list li,
.trust-steps li{
  line-height: 1.75;
}

.trust-links{ margin-top: 16px; }

.trust-cta{
  display:flex;
  justify-content:center;
  margin-top: 18px;
}

.trust-cta .btn{
  padding: 12px 28px;
  font-size: 16px;
}
