/* good-map-889.css — גוף ורוח | Main Stylesheet */

:root {
  --bg-dark: #111111;
  --bg-darker: #0a0a0a;
  --bg-card: #1c1c1c;
  --bg-card-light: #f5f1eb;
  --gold: #c9a35a;
  --gold-dark: #9e7a30;
  --gold-light: #e0c07a;
  --text-light: #eeeeee;
  --text-muted: #999999;
  --white: #ffffff;
  --border: rgba(201,163,90,.18);
  --radius: 4px;
  --transition: all .3s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  direction: rtl;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.25;
  margin-block-start: 0;
  margin-block-end: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-block-start: 0; margin-block-end: .9rem; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-block-end: .75rem;
}

.section-label {
  text-align: center;
  padding: 22px 20px;
  background: var(--bg-darker);
}
.section-label .eyebrow { margin: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #111;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #111;
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(8px);
  border-block-end: 1px solid var(--border);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1240px;
  margin-inline: auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo svg { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-size: .65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: .08em;
}

#site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#site-nav ul a {
  color: var(--text-light);
  font-size: .92rem;
  font-weight: 500;
  transition: var(--transition);
}
#site-nav ul a:hover,
#site-nav ul a.active { color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  color: var(--text-muted);
  font-size: .85rem;
  direction: ltr;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-phone i { color: var(--gold); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  overflow: hidden;
  margin-block-start: 73px;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 35%, rgba(0,0,0,.15) 100%);
}
.hero-content {
  position: absolute;
  bottom: 52px;
  inset-inline-start: 52px;
  max-width: 560px;
}
.hero-content .eyebrow { font-size: .75rem; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-block-end: 1rem;
  font-style: italic;
}
.hero-title span { color: var(--white); font-style: normal; }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-block-end: 1.5rem;
  max-width: 400px;
}

/* ===== SERVICE TILES ===== */
.tiles-section { padding: 64px 20px; background: var(--bg-dark); }
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin-inline: auto;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1 / 1.05;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.tile:hover img { transform: scale(1.07); }
.tile-label {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  text-align: center;
}
.tile-label .tile-icon {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  margin-block-end: 4px;
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--gold);
  padding: 44px 20px;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin-inline: auto;
  text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #111;
  line-height: 1;
}
.stat-label { font-size: .88rem; font-weight: 600; color: #2a2a2a; margin-block-start: 4px; }

/* ===== TRUST ICONS ===== */
.trust-section { padding: 64px 20px; background: var(--bg-darker); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin-inline: auto;
  text-align: center;
}
.trust-item {}
.trust-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-block-end: 14px;
  color: var(--gold);
  font-size: 1.75rem;
}
.trust-title { font-weight: 700; font-size: 1rem; color: var(--text-light); margin: 0; }
.trust-sub { font-size: .82rem; color: var(--text-muted); margin-block-start: 4px; }

/* ===== ABOUT ===== */
.about-section { padding: 80px 20px; background: var(--bg-dark); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
}
.about-text h2 { color: var(--gold); margin-block-end: 1.2rem; }
.about-text p { color: rgba(238,238,238,.82); line-height: 1.8; }
.about-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }

/* ===== WHY US ===== */
.why-section { padding: 80px 20px; background: var(--bg-darker); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
}
.why-card {
  background: var(--bg-card-light);
  border-radius: 8px;
  padding: 44px 40px;
  color: #222;
}
.why-card h2 { color: #111; }
.why-card h3 { font-size: 1rem; color: var(--gold-dark); margin-block-end: .4rem; }
.why-card p { color: #444; font-size: .95rem; line-height: 1.7; }
.why-card .why-item { margin-block-end: 20px; }
.why-img-wrap { border-radius: 6px; overflow: hidden; }
.why-img-wrap img { width: 100%; height: 460px; object-fit: cover; }

/* ===== FLIP CARDS ===== */
.flip-section { padding: 64px 20px; background: var(--bg-dark); }
.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin-inline: auto;
}
.flip-card { perspective: 1000px; height: 240px; cursor: pointer; }
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .55s ease;
}
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.flip-front {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.flip-front i { font-size: 2.2rem; color: var(--gold); margin-block-end: 14px; }
.flip-front h4 { color: var(--text-light); font-size: 1rem; margin: 0; }
.flip-back {
  background: var(--gold);
  transform: rotateY(180deg);
}
.flip-back h4 { color: #111; font-size: 1rem; margin-block-end: 10px; }
.flip-back p { color: #2a2a2a; font-size: .85rem; margin: 0; line-height: 1.6; }

/* ===== PRICING ===== */
.pricing-section { padding: 80px 20px; background: var(--bg-darker); }
.pricing-section .section-head { text-align: center; margin-block-end: 48px; }
.pricing-section .section-head h2 { color: var(--gold); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin-inline: auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.price-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, #1e1a12, #1c1c1c);
}
.price-badge {
  position: absolute;
  top: -12px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  background: var(--gold);
  color: #111;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-card h3 { color: var(--gold); font-size: 1.1rem; margin-block-end: 8px; }
.price-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-block-end: 4px;
}
.price-amount sup { font-size: 1.2rem; vertical-align: top; margin-block-start: 8px; font-weight: 400; }
.price-period { font-size: .8rem; color: var(--text-muted); margin-block-end: 24px; }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; text-align: right; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-block-end: 1px solid var(--border);
  font-size: .9rem;
  color: rgba(238,238,238,.8);
}
.price-features li i { color: var(--gold); font-size: .85rem; flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-section { padding: 80px 20px; background: var(--bg-dark); }
.faq-intro { text-align: center; max-width: 640px; margin-inline: auto; margin-block-end: 48px; }
.faq-intro h2 { color: var(--gold); }
.faq-intro p { color: var(--text-muted); }
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item {
  border-block-end: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 12px;
}
.faq-q span {
  font-weight: 600;
  color: var(--text-light);
  font-size: .97rem;
}
.faq-q i {
  color: var(--gold);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  color: rgba(238,238,238,.75);
  font-size: .92rem;
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ===== MAP CONTACT ===== */
.map-section { padding: 0; background: var(--bg-darker); }
.map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.map-iframe { height: 420px; }
.map-iframe iframe { width: 100%; height: 100%; border: none; display: block; }
.map-details {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-card);
}
.map-details h2 { color: var(--gold); margin-block-end: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-block-end: 20px;
}
.contact-item i { color: var(--gold); font-size: 1.1rem; margin-block-start: 3px; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--text-light); font-size: .9rem; }
.contact-item span { font-size: .88rem; color: var(--text-muted); direction: ltr; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 20px; background: var(--bg-dark); }
.testimonials-section .section-head { text-align: center; margin-block-end: 48px; }
.testimonials-section .section-head h2 { color: var(--gold); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin-inline: auto;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.testimonial-stars { color: var(--gold); font-size: .9rem; margin-block-end: 12px; }
.testimonial-text { font-size: .92rem; color: rgba(238,238,238,.8); line-height: 1.7; margin-block-end: 16px; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: .88rem; color: var(--text-light); }
.testimonial-role { font-size: .8rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--bg-darker);
  border-block-start: 1px solid var(--border);
  padding-block-start: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
.footer-brand .site-logo { margin-block-end: 16px; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-block-start: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 { color: var(--gold); font-size: .95rem; margin-block-end: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-block-end: 9px; }
.footer-col ul a { color: var(--text-muted); font-size: .88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-block-end: 10px; }
.footer-contact-item i { color: var(--gold); font-size: .85rem; margin-block-start: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: .85rem; color: var(--text-muted); direction: ltr; }
.footer-contact-item span.he { direction: rtl; }

.footer-bottom {
  border-block-start: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  margin-block-start: 40px;
}
.footer-bottom p { font-size: .82rem; color: var(--text-muted); margin: 0; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== COOKIES GDPR ===== */
#cookie-bar {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 9999;
  background: #1a1a1a;
  border-block-start: 1px solid var(--border);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-bar.visible { transform: translateY(0); }
#cookie-bar p { font-size: .88rem; color: var(--text-muted); margin: 0; max-width: 700px; }
#cookie-bar p a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== CONTACT FORM ===== */
.form-section { padding: 80px 20px; background: var(--bg-dark); }
.form-wrap {
  max-width: 660px;
  margin-inline: auto;
}
.form-wrap h2 { color: var(--gold); text-align: center; margin-block-end: 8px; }
.form-wrap .form-sub { text-align: center; color: var(--text-muted); font-size: .9rem; margin-block-end: 36px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .85rem; color: var(--text-muted); }
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  padding: .65rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  transition: var(--transition);
  width: 100%;
  direction: rtl;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit { text-align: center; margin-block-start: 24px; }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-darker) 0%, #1a1500 100%);
  padding: 100px 20px 60px;
  text-align: center;
  margin-block-start: 73px;
  border-block-end: 1px solid var(--border);
}
.page-hero h1 { color: var(--gold); margin-block-end: .5rem; }
.page-hero p { color: var(--text-muted); max-width: 500px; margin-inline: auto; }
.breadcrumb { font-size: .82rem; color: var(--text-muted); margin-block-end: 16px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ===== CONTENT SECTION ===== */
.content-section { padding: 72px 20px; }
.content-inner { max-width: 860px; margin-inline: auto; }
.content-inner h2 { color: var(--gold); }
.content-inner h3 { color: var(--gold-light); font-size: 1.1rem; }
.content-inner p { color: rgba(238,238,238,.8); line-height: 1.85; }
.content-inner ul { color: rgba(238,238,238,.8); line-height: 1.85; padding-inline-start: 20px; }
.content-inner ul li { margin-block-end: 6px; }

/* ===== SUCCESS MESSAGE ===== */
.success-box {
  background: rgba(201,163,90,.1);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  margin-block-start: 24px;
}
.success-box i { font-size: 2.5rem; color: var(--gold); display: block; margin-block-end: 12px; }
.success-box h3 { color: var(--gold); }
.success-box p { color: rgba(238,238,238,.75); }

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .flip-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .map-inner { grid-template-columns: 1fr; }
  .map-iframe { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  #site-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }

  #site-nav.open {
    display: block;
    position: fixed;
    top: 73px;
    inset-inline: 0;
    bottom: 0;
    background: var(--bg-darker);
    padding: 24px;
    z-index: 999;
    overflow-y: auto;
  }
  #site-nav.open ul { flex-direction: column; gap: 0; }
  #site-nav.open ul li { border-block-end: 1px solid var(--border); }
  #site-nav.open ul a { display: block; padding: 14px 0; font-size: 1rem; }

  .hero-content { inset-inline-start: 24px; bottom: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-badge { transform: translateX(50%); }
  .about-img-wrap img { height: 300px; }
}

@media (max-width: 479px) {
  .tiles-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .flip-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
