/* ==========================================
   Headspa Israel - Main Stylesheet
   ========================================== */

/* CSS Variables — forest #485649 + cream #fefef2 */
:root {
  --forest: #485649;
  --ivory: #fefef2;
  --accent-mist: #b8c9b0;
  --primary: #485649;
  --primary-dark: #3a4538;
  --primary-light: #e8ebe4;
  --dark: #2c3329;
  --dark-secondary: #3d4540;
  --cream: #fefef2;
  --cream-dark: #f2f2e8;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-500: #888;
  --gray-700: #555;
  --text: #333;
  --text-light: #666;
  --gold: #c5a55a;
  --gold-light: #f5ecd7;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.3s ease;
  --font-main: 'Heebo', sans-serif;
  --font-display: 'Playfair Display', serif;
  --max-width: 1200px;
  --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--ivory);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(72, 86, 73, 0.07);
  transition: var(--transition);
  height: var(--header-height);
  box-sizing: border-box;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  height: 65px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: calc(24px + env(safe-area-inset-left, 0px));
  padding-right: calc(24px + env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.site-header.scrolled .logo img {
  height: 38px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-arrow {
  font-size: 0.65rem;
  transition: var(--transition);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.main-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* CTA Button in Nav */
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 18px rgba(72, 86, 73, 0.35);
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(72, 86, 73, 0.42) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(72,86,73,1) 0%, rgba(72,86,73,0.87) 45%, rgba(254,254,242,0.33) 100%);
  z-index: 1;
}

/* דף הבית — דגש ירוק מעל צילום הסטודיו (+חיזוק קריאות טקסט) */
.hero--home .hero-overlay {
  background: linear-gradient(125deg, rgba(72, 86, 73, 1) 0%, rgba(72, 86, 73, 0.83) 38%, rgba(72, 86, 73, 0.57) 65%, rgba(254, 254, 242, 0.27) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-xl);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--accent-mist);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero CTA — gradient + subtle motion + pulsing shadow (דף הבית); hover מוגדר אחרי .btn-primary:hover */
.btn-hero-cta {
  background: linear-gradient(145deg, #5a6e5f 0%, var(--primary) 45%, var(--primary-dark) 100%);
  background-size: 120% 120%;
  animation: hero-cta-shift 8s ease-in-out infinite, hero-cta-pulse-shadow 2.4s ease-in-out infinite;
}

@keyframes hero-cta-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes hero-cta-pulse-shadow {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(72, 86, 73, 0.32), 0 0 0 0 rgba(72, 86, 73, 0.35);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 10px 32px rgba(72, 86, 73, 0.42), 0 0 0 6px rgba(72, 86, 73, 0.08);
    transform: translateY(-3px);
  }
}

/* Page Hero — inner pages (unified with .hero-section) */
.page-hero,
.hero-section {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 48px) 24px 52px;
  overflow: hidden;
  background-color: var(--forest);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero .hero-overlay,
.hero-section .hero-overlay {
  background: linear-gradient(180deg, rgba(72, 86, 73, 1) 0%, rgba(72, 86, 73, 0.97) 100%);
}

.page-hero .container,
.hero-section .container,
.page-hero .hero-content,
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero .hero-content,
.hero-section .hero-content {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1,
.hero-section h1 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
}

.page-hero .hero-subtitle,
.hero-section .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(254, 254, 242, 0.92);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.page-hero p:not(.hero-subtitle) {
  font-size: 1.05rem;
  color: rgba(254, 254, 242, 0.88);
  max-width: 550px;
  margin: 0 auto;
}

.page-hero .hero-buttons,
.hero-section .hero-buttons {
  margin-top: 8px;
}

.hero-branch-logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

/* Inner heroes: breadcrumbs on image */
.page-hero .breadcrumbs,
.page-hero .breadcrumb,
.hero-section .breadcrumbs,
.hero-section .breadcrumb {
  padding: 0 0 20px;
  font-size: 0.86rem;
  color: rgba(254, 254, 242, 0.75);
  text-align: center;
}

.page-hero .breadcrumbs a,
.page-hero .breadcrumb a,
.hero-section .breadcrumbs a,
.hero-section .breadcrumb a {
  color: var(--accent-mist);
}

.page-hero .breadcrumbs a:hover,
.page-hero .breadcrumb a:hover,
.hero-section .breadcrumbs a:hover,
.hero-section .breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb ol,
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li,
.breadcrumbs ol li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}

.breadcrumb li:not(:last-child)::after,
.breadcrumbs ol li:not(:last-child)::after {
  content: '›';
  opacity: 0.5;
  font-size: 0.85rem;
  margin-right: 4px;
}

.breadcrumb li span,
.breadcrumbs ol li span {
  color: rgba(254, 254, 242, 0.95);
}

/* Standalone breadcrumb bar (above solid / article heroes) */
body > .breadcrumbs {
  background: var(--white);
  border-bottom: 1px solid var(--primary-light);
  padding: 14px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

body > .breadcrumbs .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

body > .breadcrumbs a {
  color: var(--forest);
  font-weight: 500;
}

body > .breadcrumbs a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

body > .breadcrumbs span {
  margin: 0 6px;
  color: var(--gray-500);
}

/* Hero variants: landing subpage & article (no full-bleed image) */
.hero.hero-page {
  min-height: 42vh;
  background: var(--forest);
  padding: calc(var(--header-height) + 44px) 24px 48px;
}

.hero.hero-page:not(:has(.hero-bg)) {
  background: var(--forest);
}

.hero.hero-page .hero-content {
  max-width: 720px;
}

.hero.hero-page h1 {
  color: var(--white);
}

.hero.hero-page .hero-subtitle {
  color: rgba(254, 254, 242, 0.9);
}

/* Birthday-style: <img class="hero-bg"> as direct child */
.hero > img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero.hero-page:has(img.hero-bg) > .hero-overlay {
  z-index: 1;
}

.hero.hero-article {
  min-height: 0;
  padding: calc(var(--header-height) + 40px) 24px 36px;
  background: var(--ivory);
  align-items: flex-start;
  text-align: center;
}

.hero.hero-article .hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.hero.hero-article h1 {
  color: var(--forest);
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
}

.hero.hero-article .hero-subtitle {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Generic section titles (inner pages) */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  color: var(--forest);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 800;
}

.section .section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 8px;
  line-height: 1.65;
}

.section-pricing h2,
.section-faq h2,
.section-benefits > .container > h2,
.section-about > .container > h2 {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  color: var(--forest);
  text-align: center;
  margin-bottom: 12px;
}

.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--accent-mist));
  margin: 18px auto 0;
  border-radius: 3px;
  opacity: 0.9;
}

.section-header .section-divider {
  margin-top: 16px;
}

.section-content {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.section-content h2 {
  color: var(--forest);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  margin-bottom: 20px;
}

.section-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: right;
}

.content-block {
  max-width: 44rem;
  margin: 0 auto;
}

.content-block p,
.article-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.1rem;
  color: var(--text);
}

.content-block .lead,
.about-text .lead,
.article-content .lead {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--dark);
  font-weight: 500;
}

.section-alt {
  background: var(--primary-light) !important;
}

.article-content {
  max-width: 48rem;
  margin: 0 auto;
}

/* About / beds split layout */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  margin-top: 28px;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.9;
  color: var(--text);
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.who-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(72, 86, 73, 0.08);
  transition: var(--transition);
}

.who-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(72, 86, 73, 0.15);
  transform: translateY(-3px);
}

.who-card h3 {
  font-size: 1.12rem;
  color: var(--forest);
  margin: 0 0 10px;
}

.who-card p {
  font-size: 0.94rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.65;
}

.who-grid--center-cards .who-card {
  text-align: center;
}

.who-grid--center-cards .who-card p {
  text-align: center;
}

.who-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  background: var(--primary-light);
  color: var(--forest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-grid--center-cards .who-icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

.who-icon svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* O-SPA: למה לבחור */
.why-section {
  background: var(--ivory);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.why-card {
  background: var(--white);
  padding: 28px 22px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(72, 86, 73, 0.08);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.2s;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(72, 86, 73, 0.14);
  transform: translateY(-3px);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(145deg, var(--primary-light), rgba(72, 86, 73, 0.06));
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 1.08rem;
  color: var(--forest);
  margin: 0 0 10px;
}

.why-card p {
  font-size: 0.94rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.65;
}

/* O-SPA: מיקום סניף */
.location-section {
  background: var(--ivory);
}

.location-content {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.35fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
  margin-top: 36px;
}

.location-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px 8px 4px;
  border: 1px solid rgba(72, 86, 73, 0.1);
  box-shadow: var(--shadow-sm);
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(72, 86, 73, 0.07);
  text-align: right;
}

.location-detail:last-child {
  border-bottom: none;
}

.location-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-detail-icon svg {
  width: 22px;
  height: 22px;
}

.location-detail-icon--whatsapp {
  color: #25d366;
  background: rgba(37, 211, 102, 0.14);
}

.location-detail h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.location-detail p {
  margin: 0;
  line-height: 1.65;
  color: var(--text);
  font-size: 0.95rem;
}

.location-detail a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(72, 86, 73, 0.25);
  transition: border-color 0.2s, color 0.2s;
}

.location-detail a:hover {
  border-bottom-color: var(--forest);
}

.location-map .map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(72, 86, 73, 0.12);
  line-height: 0;
  background: var(--white);
  min-height: 380px;
}

.location-map iframe {
  display: block;
  width: 100%;
  min-height: 380px;
}

@media (max-width: 900px) {
  .location-content {
    grid-template-columns: 1fr;
  }
}

/* סניף: אודות — כרטיס טקסט */
.about-section--branch {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 45%);
}

.about-section--branch .about-text {
  background: var(--white);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(72, 86, 73, 0.08);
}

.about-section--branch .about-image img {
  aspect-ratio: 4/3;
  min-height: 260px;
  object-fit: cover;
}

/* Feature & benefit grids */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.features-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.features-grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(72, 86, 73, 0.06);
  text-align: right;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(72, 86, 73, 0.12);
  transform: translateY(-4px);
}

.feature-card h3 {
  font-size: 1.08rem;
  color: var(--forest);
  margin: 12px 0 10px;
}

.feature-card p {
  font-size: 0.94rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.feature-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.benefit-card {
  background: var(--white);
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(72, 86, 73, 0.06);
  text-align: right;
  transition: var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-card h3 {
  font-size: 1.05rem;
  color: var(--forest);
  margin: 12px 0 10px;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.benefit-icon {
  font-size: 2rem;
  line-height: 1;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.branch-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(72, 86, 73, 0.08);
  box-shadow: var(--shadow-sm);
  text-align: right;
  transition: var(--transition);
}

.branch-card:hover {
  box-shadow: var(--shadow-md);
}

.branch-card h3 {
  color: var(--forest);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.branch-card p {
  color: var(--text-light);
  font-size: 0.94rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

/* Pricing grids (inner pages) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.pricing-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .pricing-grid--two {
    grid-template-columns: 1fr;
  }
}

.pricing-card.featured:has(.pricing-badge)::before {
  display: none;
}

.pricing-badge {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  align-self: center;
  margin: 0 auto 16px;
  display: block;
  width: fit-content;
  background: var(--forest);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  text-align: center;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 8px;
}

.pricing-header h3 {
  color: var(--forest);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.pricing-amount {
  text-align: center;
  margin: 16px 0 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-amount .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--forest);
  margin: 0;
}

.pricing-amount .currency {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-light);
}

.pricing-weekend-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
  margin: 4px 0 22px;
  padding: 12px 16px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(72, 86, 73, 0.1);
  line-height: 1.55;
}

.pricing-weekend-note .pricing-weekend-price {
  color: var(--forest);
  font-weight: 800;
}

.pricing-weekend-note .pricing-weekend-plus {
  color: var(--text-light);
  font-size: 0.86rem;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: right;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  color: var(--text-light);
  position: relative;
  padding-right: 22px;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--forest);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
}

.coming-soon-card {
  opacity: 0.92;
  border-style: dashed;
}

.coming-soon-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gray-700);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
}

/* Steps (copper, birthday, …) */
.steps-list {
  max-width: 52rem;
  margin: 32px auto 0;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-right: 4px solid var(--forest);
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.step-content h3,
.step-content h4 {
  color: var(--forest);
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.step-content p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* FAQ: icon variant + answers without .faq-answer-inner */
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--forest);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--forest);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.8;
  text-align: right;
}

/* Benefits list (stacked, massage-prices) */
.benefits-list {
  max-width: 48rem;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list .benefit-item {
  display: block;
  padding: 26px 28px;
}

.benefits-list .benefit-item h3 {
  font-size: 1.08rem;
  color: var(--forest);
  margin: 0 0 10px;
}

.benefits-list .benefit-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Section rhythm — inner pages */
.about-section {
  background: var(--white);
}

.included-section {
  background: var(--ivory);
}

.who-section,
.section-benefits {
  background: var(--ivory);
}

.section-about {
  background: var(--white);
}

.section-benefits {
  border-block: 1px solid rgba(72, 86, 73, 0.06);
}

.section-faq,
.faq-section {
  background: var(--primary-light);
}

.section-pricing {
  background: var(--ivory);
}

.section-preparation {
  background: var(--white);
}

.section-preparation > .container > h2,
.section-target > .container > h2 {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  color: var(--forest);
  text-align: center;
  margin-bottom: 12px;
}

.preparation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.prep-item {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(72, 86, 73, 0.08);
  text-align: center;
  transition: var(--transition);
}

.prep-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(72, 86, 73, 0.14);
}

.prep-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--white);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.prep-icon svg {
  width: 28px;
  height: 28px;
}

.prep-item .prep-number {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.prep-item h3 {
  font-size: 1.05rem;
  color: var(--forest);
  margin: 0 0 10px;
}

.prep-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

.section-target {
  background: var(--ivory);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.target-card {
  background: var(--white);
  border: 1px solid rgba(72, 86, 73, 0.1);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  transition: var(--transition);
}

.target-card:hover {
  border-color: rgba(72, 86, 73, 0.18);
  box-shadow: var(--shadow-sm);
}

.target-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--primary-light);
  color: var(--forest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-card-icon svg {
  width: 24px;
  height: 24px;
}

.target-card p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
}

.section-target .target-footer {
  max-width: 42rem;
  margin: 28px auto 0;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
}

.section-cta {
  background: var(--ivory);
  padding: 72px 0;
  border-bottom: 8px solid var(--forest);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  width: min(46vw, 380px);
  height: min(46vw, 380px);
  transform: translate(-40%, -50%);
  background: radial-gradient(circle, rgba(72, 86, 73, 0.09) 0%, transparent 68%);
  pointer-events: none;
}

.section-cta > .container {
  position: relative;
  z-index: 1;
}

.section-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.section-cta h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--forest);
  margin-bottom: 12px;
}

.section-cta .lead-line {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.section-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.section-cta .btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid rgba(72, 86, 73, 0.4);
}

.section-cta .btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.recruitment-section {
  background: var(--ivory);
}

.recruitment-split {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.recruitment-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruitment-visual-card {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--white) 0%, var(--primary-light) 100%);
  border: 1px solid rgba(72, 86, 73, 0.12);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.recruitment-visual-card svg {
  width: min(52%, 130px);
  height: auto;
  color: var(--forest);
}

.recruitment-content {
  text-align: right;
}

.recruitment-content > .recruitment-icon {
  display: none;
}

.recruitment-content h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--forest);
  margin-bottom: 14px;
}

.recruitment-content .lead {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.recruitment-content p:not(.lead) {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.recruitment-buttons {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .recruitment-split {
    grid-template-columns: 1fr;
  }
  .recruitment-visual {
    order: -1;
    margin-bottom: 12px;
  }
  .recruitment-content {
    text-align: center;
  }
  .recruitment-buttons {
    justify-content: center;
    display: flex;
  }
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(72, 86, 73, 0.32);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(72, 86, 73, 0.4);
}

.btn.btn-primary.btn-hero-cta:hover {
  animation-play-state: paused;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 50%, #5a6e5f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(72, 86, 73, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .btn-hero-cta {
    animation: none;
  }
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-200);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d4b66a);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(197,165,90,0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(197,165,90,0.4);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
}

/* ==========================================
   Sections
   ========================================== */
.section {
  padding: 80px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-green {
  background: linear-gradient(135deg, var(--forest), var(--primary-dark));
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  display: inline-block;
  padding: 4px 16px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-dark .section-label {
  background: rgba(72, 86, 73, 0.15);
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* ==========================================
   Cards
   ========================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
}

/* Service Card */
.service-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--primary-light);
}

.service-card .icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ==========================================
   Grid Layouts
   ========================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* דף הבית — תמיד שני טורים במסכים צרים (מניעת דריסה ל-.grid-3 { 1fr } ב-768px) */
@media (max-width: 767.98px) {
  .grid-home-services {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .grid-home-services .service-card {
    padding: 20px 10px;
    min-width: 0;
  }

  .grid-home-services .service-card .icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .grid-home-services .service-card h3 {
    font-size: 0.95rem;
  }

  .grid-home-services .service-card p {
    font-size: 0.78rem;
    line-height: 1.45;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* ==========================================
   Pricing
   ========================================== */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-grid--two .pricing-card.featured {
  transform: none;
  border-color: var(--forest);
  box-shadow: 0 8px 32px rgba(72, 86, 73, 0.18);
}

.pricing-card.featured::before {
  content: 'הכי פופולרי';
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.pricing-card .pricing-header h3 {
  color: var(--forest);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.pricing-card .price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 20px 0;
}

.pricing-card .price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-card ul {
  text-align: right;
  margin-bottom: 30px;
}

.pricing-card ul li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================
   Benefits / Features
   ========================================== */
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(-4px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.benefit-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
  user-select: none;
  box-sizing: border-box;
}

button.faq-question {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  background: transparent;
  border: none;
  font: inherit;
  color: inherit;
  text-align: inherit;
}

.faq-question > span:first-of-type {
  flex: 1 1 auto;
  text-align: right;
  line-height: 1.45;
  min-width: 0;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: min(1200px, 85vh);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.85;
  text-align: right;
}

/* ==========================================
   Gallery
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-grid--treatment .gallery-item {
  aspect-ratio: 4/3;
}

.gallery-grid .gallery-item {
  cursor: zoom-in;
}

.gallery-grid .gallery-item:focus-within {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}

/* Lightbox — תמונות גלריה */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(15, 18, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: min(96vw, 1200px);
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(254, 254, 242, 0.95);
  color: var(--forest);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.gallery-lightbox-close:hover {
  background: var(--white);
  transform: scale(1.05);
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card .stars {
  color: #ffc107;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
  background: linear-gradient(145deg, var(--forest) 0%, #3a4239 55%, #2e352d 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(254, 254, 242, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-about .logo {
  margin-bottom: 16px;
}

.footer-about .logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-right: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact .icon {
  color: var(--primary);
  font-size: 1rem;
  min-width: 20px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-bottom-copy {
  margin: 0;
}

.footer-bottom-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
}

.footer-bottom-legal a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  white-space: nowrap;
}

.footer-bottom-legal a:hover {
  color: var(--accent-mist);
}

/* ==========================================
   WhatsApp Float Button
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  left: calc(24px + env(safe-area-inset-left, 0px));
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ==========================================
   Content Styles (for articles)
   ========================================== */
.content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.content-area h2 {
  font-size: 1.6rem;
  color: var(--dark);
  margin: 40px 0 16px;
}

.content-area h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin: 30px 0 12px;
}

.content-area p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text);
}

.content-area ul, .content-area ol {
  margin: 16px 0;
  padding-right: 24px;
}

.content-area ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text);
}

.content-area ol li {
  list-style: decimal;
  margin-bottom: 8px;
  color: var(--text);
}

.content-area img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.content-area blockquote {
  border-right: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-light);
}

/* ==========================================
   Image Rounded Box
   ========================================== */
.img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   Stats Row
   ========================================== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ==========================================
   Process Steps
   ========================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  counter-increment: step;
}

.step-card::before {
  content: counter(step);
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-card h4 {
  font-size: 1.05rem;
  margin: 12px 0 8px;
  color: var(--dark);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 992px) {
  .grid-2-1, .grid-1-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .stats-row {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 50px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 24px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s ease, visibility 0.4s;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .main-nav.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav:not(.active) {
    pointer-events: none;
  }

  .main-nav > li > a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 16px;
    display: none;
  }

  .main-nav > li.dropdown-open .dropdown {
    display: block;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
  }

  .hero {
    min-height: 75vh;
  }

  .page-hero,
  .hero-section {
    min-height: 38vh;
    padding-top: calc(var(--header-height) + 36px);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3:not(.grid-home-services) {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* פוטר נייד — ממורכז, שני טורים קישורים */
  .site-footer .container {
    text-align: center;
  }

  .site-footer .footer-col {
    text-align: center;
  }

  .site-footer .footer-about .logo {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .site-footer .footer-social {
    justify-content: center;
  }

  .site-footer .footer-col .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 10px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
  }

  .site-footer .footer-col .footer-links li {
    margin-bottom: 0;
  }

  .site-footer .footer-contact {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer .footer-contact li {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .site-footer .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
  }
}

/* ==========================================
   Animations
   ========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   Mobile nav overlay
   ========================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   Back to top
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  width: 45px;
  height: 45px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  font-size: 1.2rem;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ==========================================
   Booking Modal
   ========================================== */
.bk-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 20, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bk-overlay.active {
  opacity: 1;
  visibility: visible;
}

.bk-modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
  direction: rtl;
  font-family: var(--font-main);
}

.bk-overlay.active .bk-modal {
  transform: translateY(0) scale(1);
}

.bk-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #f0f0f0;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.bk-close:hover {
  background: #e0e0e0;
  color: #222;
}

.bk-icon-wrap {
  margin-bottom: 16px;
}

.bk-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.bk-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.bk-subtitle {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.bk-field {
  margin-bottom: 14px;
  text-align: right;
}

.bk-field input {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid rgba(72, 86, 73, 0.22);
  border-radius: 14px;
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  direction: rtl;
}

.bk-field input[dir="ltr"] {
  direction: ltr;
  text-align: right;
}

.bk-field input::placeholder {
  color: #bbb;
}

.bk-field input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(72, 86, 73, 0.15);
  background: #fff;
}

.bk-error {
  color: #e53935;
  font-size: 0.85rem;
  margin: -6px 0 10px;
  min-height: 20px;
  text-align: right;
}

.bk-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--forest), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 22px rgba(72, 86, 73, 0.35);
  margin-top: 4px;
}

.bk-submit:hover:not(:disabled) {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(72, 86, 73, 0.4);
}

.bk-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.bk-spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bk-spinner svg {
  width: 22px;
  height: 22px;
  display: block;
}

.bk-after-note {
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 12px;
}

/* Success state */
.bk-success-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: var(--forest);
  font-weight: 700;
}

.bk-countdown {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bk-countdown .bk-countdown-wa {
  display: inline-flex;
  color: #25d366;
}

.bk-countdown .bk-countdown-wa svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 480px) {
  .bk-modal {
    padding: 32px 24px 28px;
    border-radius: 20px;
  }
  .bk-title {
    font-size: 1.25rem;
  }
}
