:root {
  --primary: #236478;
  --primary-dark: #17454f;
  --dark-section: #3b1d14;
  --dark-section-2: #4a241a;
  --accent: #c9793e;
  --bg: #ffffff;
  --surface: #f4f8f9;
  --text: #2b3a3f;
  --text-light: #5c6e73;
  --border: #dce6e8;
  --radius: 14px;
  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

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

a { color: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Skip link */
.skip-link {
  position: absolute;
  right: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 2147483002;
  font-weight: 700;
  border-radius: 0 0 0 8px;
}
.skip-link:focus { right: 0; top: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.site-header .logo { font-size: 1.4rem; font-weight: 800; color: var(--primary-dark); text-decoration: none; }
.site-header .logo small { display: block; font-size: 0.65rem; font-weight: 400; color: var(--text-light); }
.header-phone {
  background: var(--primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.15s ease;
}
.header-phone:hover { background: var(--primary-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(23,69,79,.55), rgba(59,29,20,.65)), var(--surface);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; padding: 80px 24px; width: 100%; }
.hero h2.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero .hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* Section base */
section { padding: 72px 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--dark-section); color: #f3ece7; }
.section-dark h2 { color: #fff; }
.section-dark a { color: #f0c9a0; }

h2.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 28px;
  text-align: center;
}
.section-dark h2.section-title { color: #fff; }

.lede {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
}
.section-dark .lede { color: #e8dcd4; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.two-col p + p { margin-top: 14px; }

/* Video embed */
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Photo */
.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

/* Issues grid (מה נטפל) */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.issue-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Subheading inside sections */
h3.sub-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 28px 0 10px;
}
.section-dark h3.sub-heading { color: #f0c9a0; }

/* Contact / locations */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 800px) { .locations-grid { grid-template-columns: 1fr; } }
.location-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.location-card h3 {
  padding: 18px 20px 0;
  font-size: 1.1rem;
  color: var(--primary-dark);
}
.location-card .map-embed {
  width: 100%;
  height: 240px;
  border: 0;
  margin-top: 12px;
}

/* Contact form */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-card .cta-phone {
  display: inline-block;
  margin-top: 14px;
  background: var(--accent);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}
.contact-card .cta-phone:hover { background: #b56830; }
.contact-links { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.contact-links a { text-decoration: underline; }

form#contact-form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
form#contact-form label { font-weight: 600; font-size: 0.92rem; display: block; margin-bottom: 6px; }
form#contact-form input,
form#contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}
form#contact-form input:focus,
form#contact-form textarea:focus { border-color: var(--primary); }
form#contact-form textarea { min-height: 120px; resize: vertical; }
form#contact-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
form#contact-form button:hover { background: var(--primary-dark); }
form#contact-form button:disabled { opacity: 0.7; cursor: default; }

/* Footer */
footer.site-footer {
  background: var(--primary-dark);
  color: #dcebee;
  padding: 40px 0 100px;
  text-align: center;
  font-size: 0.92rem;
}
footer.site-footer a { text-decoration: underline; }
footer.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* FAB — WhatsApp + Call, bottom-left */
.fab-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.fab {
  pointer-events: auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.fab:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.fab.wa { background: #25D366; }
.fab.call { background: var(--primary); }
.fab svg { width: 28px; height: 28px; fill: white; }
@media (max-width: 480px) {
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 24px; height: 24px; }
}
@media print { .fab-container { display: none; } }

/* Thanks page */
.thanks-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thanks-wrap .icon-check {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  color: var(--primary);
}
.thanks-wrap h1 { font-size: 2rem; color: var(--primary-dark); margin-bottom: 14px; }
.thanks-wrap p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 26px; }
.thanks-wrap .btn-home {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.thanks-wrap .btn-home:hover { background: var(--primary-dark); }
