:root{
  --bg: #fffffff7;
  --text: #0b0b0c;
  --muted: rgba(11,11,12,.72);
  --muted2: rgba(11,11,12,.58);

  --line: rgba(11,11,12,.10);
  --line2: rgba(11,11,12,.14);

  --shadow-sm: 0 10px 30px rgba(0,0,0,.06);
  --shadow-md: 0 20px 60px rgba(0,0,0,.08);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --container: 1000px;

  /* Gold accents (match logo vibe) */
  --gold: #b58a3a;
  --gold2: #d7b15a;
  --gold3: #8e6a2a;
  --gold-soft: rgba(181,138,58,.14);
  --gold-soft2: rgba(181,138,58,.22);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Noto Sans Hebrew", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  letter-spacing: -0.2px;
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   Logo + Phone (used inside hero now)
========================================================= */
.logo{
  height: 200px; 
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.16));
}

.phone-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(181,138,58,.45);
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(8px);
    font-size: 22px;
  white-space: nowrap;
}
.hero-top .phone-pill {
  font-size: clamp(26px, 3.4vw, 38px);
  padding: 16px 30px;
  border-width: 2px;
}

.hero-top .phone-pill .phone-icon svg {
  width: 25px;
  height: 25px;
}

.hero-top .phone-number {
  font-weight: 900;
  letter-spacing: 0.5px;
}


.phone-pill::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: linear-gradient(120deg, transparent 0%, var(--gold-soft) 35%, transparent 70%);
  opacity: .9;
  pointer-events:none;
  transform: translateX(-35%);
  transition: transform .45s ease;
}

.phone-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(181,138,58,.70);
  box-shadow: 0 14px 32px rgba(0,0,0,.08), 0 12px 24px rgba(181,138,58,.10);
}

.phone-pill:hover::before{
  transform: translateX(35%);
}

.phone-icon{
  display: inline-flex;
  align-items: center;
  color: var(--gold);
}


/* =========================
   HERO (Landing)
========================= */
.hero{
  padding: 56px 0 60px;
}

.hero-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 0;
  border-bottom: 0;
}


.hero-top::after{
  content: none;
}

.hero-top .logo{ order: 1; } 
.hero-top .phone-pill{ order: 2; } 

.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-content{ order: 1; }
.hero-image{ order: 2; }

/* Image card */
.hero-image{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  isolation: isolate;
  width: 100%;      
  max-width: none;   
    padding: 16px;
  background: #fff; 
}

.hero-image img{
  width: 100%;  
  height: auto;
  max-height: 560px;
  object-fit: contain;  
  display: block;
  
}


.hero-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 500px at 30% 20%, rgba(255,255,255,.18), transparent 55%),
    radial-gradient(900px 420px at 70% 85%, rgba(181,138,58,.10), transparent 60%);
  pointer-events:none;
}



/* Text */
.hero-title{
  margin: 0;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: var(--text);
}

.hero-title::after{
  content:"";
  display:block;
  width: 170px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold3), var(--gold2));
  opacity: .92;
}

.hero-subtitle{
  margin: 12px 0 0;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.5;
  font-weight: 700;
  color: rgba(181,138,58,.95);
}

.hero-line{
  width: 92px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold3), var(--gold2), rgba(11,11,12,.18));
  margin-top: 18px;
  border-radius: 2px;
}

.hero-text{
  margin-top: 18px;
  font-size: 17.5px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 58ch;
}

.hero-text p{
  margin: 0 0 14px;
  text-align: justify;
  text-align-last: right;  
}


.hero-actions{
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   Buttons (Premium + Gold)
========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 900;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  border: 1px solid rgba(11,11,12,.18);
  background: none;
  cursor: pointer;
  appearance: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  will-change: transform;
}


.btn-primary{
  background: var(--text);
  color: #fff;
  border-color: rgba(11,11,12,.18);
  box-shadow: 0 14px 30px rgba(0,0,0,.14), 0 10px 26px rgba(181,138,58,.10);
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18), 0 14px 34px rgba(181,138,58,.14);
}

.btn-outline{
  background: #fff;
  color: var(--text);
  border-color: rgba(181,138,58,.70);
}

.btn-outline:hover{
  transform: translateY(-1px);
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 16px 34px rgba(181,138,58,.22);
}

.btn-block{
  width: 100%;
  border-radius: var(--radius-md);
}

/* =========================
   Contact (Premium + Gold)
========================= */
.contact{
  padding: 54px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(900px 320px at 85% 10%, rgba(0,0,0,.03), transparent 55%),
    radial-gradient(700px 260px at 15% 70%, rgba(0,0,0,.02), transparent 60%),
    radial-gradient(780px 240px at 70% 60%, rgba(181,138,58,.06), transparent 60%),
    #fff;
}

.contact-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: stretch;
}



.section-title{
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.section-title::after{
  content:"";
  display:block;
  width: 64px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold3), var(--gold2));
  opacity: .95;
}

.contact-item{
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-item a{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(181,138,58,.45);
}
.contact-item a:hover{
  border-bottom-color: rgba(181,138,58,.95);
}

.contact-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-card::before{
  content:"";
  position:absolute;
  top: -60px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(181,138,58,.14), transparent 60%);
  pointer-events:none;
}

.contact-title{
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.1;
}

.contact-title::after{
  content:"";
  display:block;
  width: 64px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold3), var(--gold2));
  opacity: .95;
}

.contact-form{
  margin-top: 20px;
  display: grid;
  gap: 25px;
}

.field span{
  display: block;
  font-size: 12.5px;
  margin-bottom: 8px;
  color: var(--muted2);
  font-weight: 800;
}

.field input,
.field textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(11,11,12,.16);
  border-radius: var(--radius-md);
  font-size: 16px;
  outline: none;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field textarea{
  min-height: 140px;
  resize: vertical;
}
.field input,
.field textarea{
  font-family: inherit;
}
.field input::placeholder,
.field textarea::placeholder{
  font-family: inherit;
}
.field input[type="tel"]{
  direction: rtl;
  text-align: right;
}


.field input:focus,
.field textarea:focus{
  border-color: rgba(181,138,58,.55);
  box-shadow: 0 0 0 4px rgba(181,138,58,.10);
}

.fine-print{
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--muted2);
}

/* =========================
   Footer
========================= */
.footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted2);
}

.footer-links{
  display: flex;
  gap: 14px;
}

.footer a{
  color: var(--muted2);
  text-decoration: none;
  border-bottom: 1px solid rgba(181,138,58,.32);
}
.footer a:hover{
  border-bottom-color: rgba(181,138,58,.75);
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
.hero-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;  
  gap: 56px;
  align-items: center;
}


  .hero-image{ order: 1; }
  .hero-content{ order: 2; }

  .hero-image img{
    max-height: 420px;  
  }
}


@media (max-width: 768px){
  .hero-top{
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
  }

  .logo{ height: 160px; } 
}

@media (max-width: 420px){
  .container{ width: min(var(--container), calc(100% - 28px)); }
  .phone-pill{ padding: 9px 14px; }
  .hero{ padding: 46px 0 52px; }
  .logo{ height: 140px; } 
}

.highlight-box{
  background: rgba(181,138,58,.08);
  border: 1.5px solid rgba(181,138,58,.75);
  padding: 18px 20px;
  border-radius: 16px;
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.about-box{
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  line-height: 1.9;
  font-size: 1.05rem;
}

.about-box p{
  margin-bottom: 14px;
    text-align: justify;
  text-align-last: right;

}

.about-focus{
  background: rgba(181,138,58,.10);
  border: 1.5px solid rgba(181,138,58,.35);
  padding: 14px 16px;
  border-radius: 16px;
  margin-top: 10px;
  line-height: 1.9;
}


/* ---------- SERVICES ---------- */
.services{
  padding: 70px 0 90px;
  background: #fff;
}

.services-title{
  text-align: center;
  margin-bottom: 46px;
}

.services-title::after{
  margin-right: auto;
  margin-left: auto;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 80px;
  justify-items: center;
}

.service-card{
  text-align: center;
  max-width: 230px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .2s ease;
}

.service-card.in-view{
  opacity: 1;
  transform: translateY(0);
}

.service-icon{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.98), #fbf3e4);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-icon i{
  font-size: 34px;
  color: var(--gold3);
}

.service-card h3{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.service-card:hover .service-icon{
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
}

/* כרטיס ביקורות – הכותרת בתוך המסגרת */
.reviews-box{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reviews-box .section-title{
  font-size: 26px;           /* אפשר לשחק עם זה */
  text-align: right;
}

.reviews-widget-wrapper{
  margin-top: 4px; 
}

.contact-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; 
  gap: 42px;
  align-items: stretch;
}

.section-title,
.contact-title{
  font-size: 30px !important;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin: 0;
}

.section-title::after,
.contact-title::after{
  content:"";
  display:block;
  width: 64px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold3), var(--gold2));
  opacity: .95;
}

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  transition: .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
}

/* ===== סקשן "נמכר" ===== */
.sold {
  padding: 70px 0 90px;
  background: #fff;
}

.sold-title {
  margin-bottom: 18px;
}

.sold-subtitle {
  margin: 0 0 26px;
  color: var(--muted2);
  font-size: 0.96rem;
}

.sold-slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sold-track-wrapper {
  flex: 1;
  overflow: hidden;
}

.sold-track {
  display: flex;
  gap: 18px;
  transition: transform .35s ease;
  will-change: transform;
}
.sold-track-wrapper,
.sold-track {
  direction: ltr;
}


.sold-item {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  flex: 0 0 calc(36% - 12px);
  min-width: 0;
}

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

.sold-item figcaption {
  padding: 10px 14px 12px;
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sold-arrow {
  border: none;
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--gold3);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  flex-shrink: 0;
}

.sold-arrow:hover {
  transform: translateY(-1px);
  background: #fdf7ea;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}

/* טבלט */
@media (max-width: 980px) {
  .sold-item {
    flex: 0 0 calc(50% - 10px); /* 2 כרטיסים בשורה */
  }
}

/* מובייל */
@media (max-width: 640px) {
  .sold-slider {
    gap: 10px;
  }

  .sold-item {
    flex: 0 0 100%; /* כרטיס אחד במסך */
  }

  .sold-item img {
    height: 230px;
  }
}
/* ===== שיווק  ===== */
/* ===== סקשן "שיווק ופרסום מקסימלי" ===== */
.exposure {
  padding: 70px 0 80px;
  background: #faf7f1; /* רקע עדין לשיווק ופרסום */
}

.exposure-title {
  margin-bottom: 14px;
}

.exposure-subtitle {
  margin: 0 0 26px;
  color: var(--muted2);
  font-size: 0.96rem;
  max-width: 640px;
}

/* כותרת + טקסט מיושרים יפה באמצע */
.exposure-header {
  text-align: right;
  margin-bottom: 22px;
}

/* מבנה הסליידר – כמו "נמכר" */
.exposure-slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.exposure-track-wrapper {
  flex: 1;
  overflow: hidden;
}

.exposure-track {
  display: flex;
  gap: 18px;
  transition: transform .35s ease;
  will-change: transform;
}

/* חשוב לסליידר – שנשאר LTR כדי שהחישובים יעבדו טוב */
.exposure-track-wrapper,
.exposure-track {
  direction: ltr;
}

.exposure-item {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  flex: 0 0 calc(36% - 12px);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

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

.exposure-item figcaption {
  padding: 10px 14px 12px;
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* חיצים – אותו סטייל כמו "נמכר" */
.exposure-arrow {
  border: none;
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--gold3);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  flex-shrink: 0;
}

.exposure-arrow:hover {
  transform: translateY(-1px);
  background: #fdf7ea;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}

/* טבלט */
@media (max-width: 980px) {
  .exposure-item {
    flex: 0 0 calc(50% - 10px); /* 2 כרטיסים בשורה */
  }

  .exposure-subtitle {
    max-width: 100%;
  }
}

/* מובייל */
@media (max-width: 640px) {
  .exposure-slider {
    gap: 10px;
  }

  .exposure-item {
    flex: 0 0 100%; /* כרטיס אחד במסך */
  }

  .exposure-item img {
    height: 220px;
  }

  .exposure-header {
    text-align: right;
  }
}



/* ===== קטלוג דירות ===== */
.catalog {
  padding: 70px 0 40px;
  background: #ffffff;
}

.catalog-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;

}



.catalog-text {
  max-width: 640px;
  text-align: right;
}

.catalog-subtitle {
  margin: 0 0 18px;
  color: var(--muted2);
  font-size: 0.98rem;
}

.catalog-list {
  margin: 0 0 22px;
  padding-right: 18px;
  list-style: none;
}

.catalog-list li {
  position: relative;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.catalog-list li::before {
  content: "•";
  position: absolute;
  right: -14px;
  top: 0;
  font-size: 1.1rem;
  color: var(--gold);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-whatsapp i {
  font-size: 1.1rem;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
  background: #1ebe5a;
}

.catalog-note {
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--muted2);
}

/* כרטיס צדדי קטן להדגשת מסר */
.catalog-badge {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-md);
  text-align: center;
  flex: 0 0 260px;
  width: 260px;
}


.catalog-badge .badge-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold3);
  margin-bottom: 6px;
}

.catalog-badge .badge-main {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.catalog-badge .badge-desc {
  display: block;
  font-size: 0.86rem;
  color: var(--muted2);
}

/* מובייל */
@media (max-width: 768px) {
  .catalog-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-badge {
    order: -1;
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}
.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.catalog-yad2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.96rem;
}

.catalog-yad2 i {
  font-size: 0.9rem;
}

/* מובייל – הכפתורים כל אחד בשורה מלאה */
@media (max-width: 768px) {
  .catalog-actions .btn-whatsapp,
  .catalog-actions .catalog-yad2 {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* בועית נגישות */
.accessibility-float {
  position: fixed;
  top: 80px;
  right: 0;
  width: 54px;
  height: 54px;
  border-radius: 8px 0 0 8px;
  background: #d7b15a; /* כמו זהב באתר שלך */
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0,0,0,.16);
  border: none;
  cursor: pointer;
  transition: .2s ease;
}

.accessibility-float:hover {
  transform: translateX(-2px);
}

/* פאנל הנגישות */
.accessibility-panel {
  position: fixed;
  top: 80px;
  right: 54px;
  width: 260px;
  max-width: calc(100% - 54px);
  background: #ffffff;
  border-radius: 0 0 0 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  padding: 16px 18px 12px;
  z-index: 999;
  font-size: 14px;
  direction: rtl;
  display: none;
}

.accessibility-panel.open {
  display: block;
}

.accessibility-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 800;
}

.accessibility-panel-header span {
  font-size: 15px;
}

.accessibility-close {
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.accessibility-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.accessibility-list li {
  margin-bottom: 4px;
}

.accessibility-list button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #333;
  text-align: right;
  border-radius: 999px;
  transition: background .15s ease, transform .15s ease;
}

.accessibility-list button i {
  width: 18px;
  text-align: center;
  font-size: 14px;
}

.accessibility-list button:hover {
  background: rgba(0,0,0,.04);
  transform: translateX(-2px);
}

/* מעבר חלק כשמשנים זום / פילטר */
html,
body {
  transition: transform .18s ease, filter .18s ease, background-color .18s ease, color .18s ease;
}

/* הגדלה / הקטנה – זום על כל העמוד */
html.acc-zoom-big body {
  transform: scale(1.15);
  transform-origin: top right;
}

html.acc-zoom-small body {
  transform: scale(0.9);
  transform-origin: top right;
}

/* גווני אפור / ניגודיות */
body.acc-grayscale {
  filter: grayscale(1);
}

body.acc-high-contrast {
  filter: contrast(1.35) brightness(1.05);
}

body.acc-invert {
  filter: invert(1) hue-rotate(180deg);
}

/* רקע בהיר – למקרה שמוסיפים בעתיד רקעים יותר כהים */
body.acc-light-bg {
  background-color: #ffffff !important;
}

/* הדגשת קישורים */
body.acc-highlight-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  outline: 2px solid rgba(0,0,0,.6);
  outline-offset: 2px;
}

/* פונט קריא */
body.acc-readable-font {
  font-family: Arial, Helvetica, sans-serif;
}

.accessibility-page {
  padding: 70px 0 80px;
  background: #fff;
}

.accessibility-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.9;
  font-size: 1.02rem;
}

.accessibility-page h1 {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 900;
}

.accessibility-page h2 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
}

.accessibility-page p,
.accessibility-page ul {
  margin: 0 0 10px;
}

.accessibility-page ul {
  padding-right: 20px;
}
.accessibility-page ul ul {
  margin-top: 4px;
}
.accessibility-updated {
  font-size: 0.9rem;
  color: var(--muted2);
}
/* ===== עמוד תודה על פנייה ===== */

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: var(--bg, #f7f7f8);
}

.thankyou-card {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: var(--radius-lg, 28px);
  box-shadow: var(--shadow-md, 0 20px 60px rgba(0,0,0,.08));
  padding: 36px 32px 32px;
  text-align: center;
}

.thankyou-logo {
  width: 180px;
  max-width: 60%;
  margin-bottom: 18px;
  display: inline-block;
}

.thankyou-title {
  margin: 0 0 12px;
  font-size: 1.8rem;
  font-weight: 700;
}

.thankyou-text {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted, rgba(11,11,12,.72));
}

.thankyou-text.secondary {
  font-size: 0.96rem;
}

.thankyou-phone {
  font-weight: 600;
  color: var(--text, #0b0b0c);
  text-decoration: none;
  border-bottom: 1px solid rgba(11,11,12,.2);
}

.thankyou-phone:hover,
.thankyou-phone:focus {
  border-bottom-color: currentColor;
}

.thankyou-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.thankyou-actions .btn {
  min-width: 170px;
  justify-content: center;
  gap: 6px;
}
/* =========================================
   התאמות כלליות למובייל / טאבלט
========================================= */

/* טאבלט קטן ומטה */
@media (max-width: 900px) {
  /* שלא יהיה SCROLL ימינה */
  body {
    overflow-x: hidden;
  }

  /* HERO – שורה אחת מעל השנייה במקום שתי עמודות */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-text {
    max-width: none;
  }

  /* שירותים – 2 בעמודה בטאבלט */
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  /* טופס + ביקורות – במקום 2 עמודות זה נהיה עמודה אחת */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-inner > * {
    min-width: 0;
  }

  /* כרטיס הביקורות לא יגלוש מחוץ למסך */
  .reviews-box,
  .contact-card {
    width: 100%;
  }

  .reviews-widget-wrapper {
    max-width: 100%;
    overflow: hidden;
  }
  .reviews-widget-wrapper iframe,
  .reviews-widget-wrapper > div {
    max-width: 100% !important;
  }
}

/* מובייל ממש (טלפון) */
@media (max-width: 600px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  /* HERO */
  .hero {
    padding: 40px 0 48px;
  }

  .hero-top {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .logo {
    height: 140px;
  }

  .phone-pill {
    padding: 10px 16px;
    font-size: 20px;
  }

  /* שירותים – כרטיס אחד בכל שורה */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* “נמכר” ו“שיווק ופרסום” כבר הוגדרו – רק עדכון קטן */
  .sold,
  .exposure {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  /* כפתור וואטסאפ שלא יסתיר יותר מדי */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    left: 18px;
  }
}
