/* ===== עולם היופי אלה טל — עיצוב פסטל ===== */

:root{
  color-scheme: light;
  --blush: #f7e3e2;
  --blush-deep: #eec9c7;
  --cream: #fdf8f4;
  --cream-deep: #f4ece3;
  --rose: #cf9a94;
  --gold: #bf9a63;
  --ink: #332a26;
  --ink-soft: #6f6259;
  --white: #ffffff;
  --shadow: 0 20px 45px -25px rgba(51, 42, 38, 0.35);
  --radius: 22px;
  --serif: "Cormorant Garamond", "Frank Ruhl Libre", serif;
  --sans: "Heebo", "Segoe UI", sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  direction: rtl;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }

.wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3{
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

h2{ font-size: clamp(28px, 4vw, 42px); }
h3{ font-size: 22px; }

.eyebrow{
  display: inline-block;
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-head{
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

section{ padding: 90px 0; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(191, 154, 99, .65);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(191, 154, 99, .8); }
.btn-ghost{
  background: var(--white);
  border-color: var(--blush-deep);
  color: var(--ink);
}
.btn-ghost:hover{ background: var(--blush); }
.phone-box{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid var(--blush-deep);
  background: var(--white);
}
.phone-box:hover{ background: var(--blush); }

/* ---------- header ---------- */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 244, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-deep);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 24px;
}
.logo-badge{ display: flex; align-items: center; }
.logo-badge img{ height: 58px; width: auto; }
nav.links{ display: flex; gap: 28px; }
nav.links a{ font-weight: 600; font-size: 15px; color: var(--ink-soft); }
nav.links a:hover{ color: var(--rose); }
.nav-cta{ display: flex; align-items: center; }
.menu-toggle{
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--ink);
}
.mobile-panel{
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 18px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
}
.mobile-panel.open{ display: flex; }
.mobile-panel a{
  padding: 12px 6px;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--cream-deep);
}

/* ---------- hero ---------- */
.hero{ padding: 64px 0 40px; overflow: hidden; }
.hero-layout{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy p.lead{
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-stats{ display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats .stat b{
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  color: var(--rose);
  display: block;
}
.hero-stats .stat span{ font-size: 13px; color: var(--ink-soft); }
.hero-stats .stat b .star-icon{
  width: 0.62em;
  height: 0.62em;
  color: var(--gold);
  vertical-align: 0.08em;
  margin-inline-start: 4px;
}

.hero-image{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--blush);
}
.hero-image img{ width: 100%; height: 100%; object-fit: contain; aspect-ratio: 4/5; }
.hero-image::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(51,42,38,.35));
}
.hero-badge{
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
}
.hero-badge .stars{ color: var(--gold); letter-spacing: 2px; }

/* ---------- divider ---------- */
.divider{ height: 1px; background: var(--cream-deep); margin: 0; }

/* ---------- services ---------- */
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ---------- tabs ---------- */
.tabs-nav{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 14px;
  margin-bottom: 22px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar{ display: none; }
.tab-btn{
  flex: 0 0 auto;
  scroll-snap-align: start;
  white-space: nowrap;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--cream-deep);
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.tab-btn:hover{ border-color: var(--rose); }
.tab-btn.active{
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.tab-panel{ display: none; }
.tab-panel.active{ display: block; animation: tabIn .35s ease; }
.tab-panel .service-card{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  max-width: 900px;
}
.tab-panel .service-card{ align-items: start; }
.tab-panel .service-card.no-photo{ grid-template-columns: 1fr; max-width: 640px; }
.tab-panel .service-photo, .tab-panel .service-icon-wrap{ aspect-ratio: unset; height: 320px; }
@keyframes tabIn{ from{ opacity: 0; transform: translateY(8px); } to{ opacity: 1; transform: translateY(0); } }
@media (max-width: 640px){
  .tab-panel .service-card{ grid-template-columns: 1fr; }
  .tab-panel .service-photo, .tab-panel .service-icon-wrap{ height: 220px; }
}
.service-card{
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px -20px rgba(51,42,38,.3);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.service-photo{ aspect-ratio: 4/3; overflow: hidden; background: var(--blush); position: relative; }
@media (min-width: 721px){
  .service-photo{ aspect-ratio: 16/9; }
}
.service-photo img, .service-photo video{ width: 100%; height: 100%; object-fit: contain; }
.video-frame{ background: #000; }
.video-frame .video-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(22px) brightness(.65) saturate(1.15);
  transform: scale(1.2);
}
.video-frame video{ position: relative; z-index: 1; background: transparent; }
.service-icon-wrap{
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blush), var(--cream-deep));
}
.service-icon-wrap svg{ width: 64px; height: 64px; stroke: var(--rose); }
.service-body{ padding: 22px 22px 26px; }
.service-body h3{ margin-bottom: 8px; }
.service-body p{ color: var(--ink-soft); font-size: 15px; margin: 0; }
.service-body p + p{ margin-top: 10px; }

.advanced-tag{
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: var(--cream-deep);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.section-alt{ background: var(--blush); }

/* ---------- testimonials ---------- */
.t-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 30px -20px rgba(51,42,38,.3);
}
.t-card .stars{ color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 12px; }
.t-card p{ color: var(--ink-soft); font-size: 15px; min-height: 90px; }
.t-name{ font-weight: 700; margin-top: 14px; }
.t-name span{ display: block; font-weight: 400; font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.review-cta{ text-align: center; margin-top: 36px; }
.google-link{ font-weight: 700; color: var(--rose); border-bottom: 2px solid var(--blush-deep); padding-bottom: 3px; }
.google-link:hover{ color: var(--gold); }

/* ---------- about ---------- */
.about-inner{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
}
.about-copy p{ color: var(--ink-soft); margin-bottom: 16px; }
.stat-stack{ display: flex; flex-direction: column; gap: 22px; }
.stat-card{
  background: var(--white);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 12px 30px -20px rgba(51,42,38,.3);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.stat-card .num{
  font-family: var(--sans);
  font-size: 36px;
  color: var(--rose);
  font-weight: 700;
}
.stat-card .label{ font-size: 14px; color: var(--ink-soft); }

/* ---------- CTA ---------- */
.cta{
  background: linear-gradient(135deg, var(--blush-deep), var(--blush));
  border-radius: 32px;
  margin: 0 24px;
  padding: 70px 30px;
  text-align: center;
}
.cta .eyebrow{ color: var(--gold); }
.cta p{ max-width: 500px; margin: 0 auto 30px; color: var(--ink-soft); font-size: 17px; }
.cta-actions{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer{ padding: 60px 0 26px; }
.footer-top{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.footer-brand img{ height: 50px; margin-bottom: 12px; }
.footer-brand p{ color: var(--ink-soft); font-size: 14px; max-width: 320px; }
.social-links{ display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.social-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--cream-deep);
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
}
.social-icon svg{ width: 19px; height: 19px; }
.social-icon:hover{ background: var(--rose); border-color: var(--rose); color: #fff; }
.social-follow{ font-size: 13px; color: var(--ink-soft); }
.footer-links h4{ font-size: 15px; margin-bottom: 14px; }
.footer-links li{ margin-bottom: 10px; }
.footer-links a{ color: var(--ink-soft); font-size: 14px; }
.footer-links a:hover{ color: var(--rose); }
.footer-bottom{
  border-top: 1px solid var(--cream-deep);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- floating whatsapp ---------- */
.wa-float{
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.6);
  transition: transform .2s ease;
}
.wa-float:hover{ transform: scale(1.08); }
.wa-float svg{ width: 28px; height: 28px; fill: #fff; }

/* ---------- reveal animation ---------- */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 960px){
  .hero-layout{ grid-template-columns: 1fr; }
  .hero-image{ order: -1; max-width: 420px; margin: 0 auto; }
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .t-grid{ grid-template-columns: 1fr; }
  .about-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  nav.links{ display: none; }
  .menu-toggle{ display: block; }
  .service-grid{ grid-template-columns: 1fr; }
  .footer-top{ flex-direction: column; }
  .cta{ margin: 0 14px; padding: 50px 20px; }
  section{ padding: 60px 0; }
  .hero{ padding: 32px 0 20px; }
  .hero-image{ max-width: 170px; }
  .hero-badge{
    font-size: 10px;
    padding: 7px 8px;
    gap: 5px;
    white-space: nowrap;
    bottom: 10px;
    right: 8px;
    left: 8px;
  }
  .hero-badge .stars{ letter-spacing: 0; }
  .tab-btn{ padding: 8px 14px; font-size: 13px; }
  .tabs-nav{ gap: 6px; }
}
