: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;
}

.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;
}

.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;
}

.hero-image img{
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

/* 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: 30px;
  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{
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

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

@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);
}
.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);
}
/* בועית נגישות */
.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;
}

/* ===== Mobile fix: Services icons/cards ===== */
* { box-sizing: border-box; }

.services { overflow-x: hidden; }

.services-grid {
  display: grid;
  gap: 16px;
}

/* Desktop default (אם כבר מוגדר אצלך אפשר להשאיר, זה רק ליתר ביטחון) */
@media (min-width: 901px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Tablet */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .service-card {
    width: 100%;
    min-width: 0;
    padding: 14px 10px;
    border-radius: 18px;
    text-align: center;
  }

  .service-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 10px;
    border-radius: 999px;
    display: grid;
    place-items: center;
  }

  .service-icon i {
    font-size: 28px;
    line-height: 1;
  }

  .service-card h3 {
    font-size: 0.95rem;
    line-height: 1.25;
    margin: 0;
    /* שומר על גובה אחיד גם כשיש טקסט ארוך */
    min-height: 2.6em;
  }
}
