/* =====================================================
   יפעת הרמן | ספורטתרפיסטית
   Color: Deep Wine (#6B2D3E) + Warm Coral (#C97B6B)
===================================================== */

:root {
  --primary: #6B2D3E;
  --primary-dark: #4d1f2c;
  --primary-light: #8a3a4f;
  --primary-xlight: #f5ede9;
  --accent: #C97B6B;
  --accent-light: #d98f80;
  --accent-xlight: #fdf0ec;
  --dark: #1a1a2e;
  --text: #2d3748;
  --text-light: #4a5568;
  --text-muted: #718096;
  --bg: #faf8f6;
  --bg-light: #f0ebe7;
  --white: #ffffff;
  --border: #e2ddd7;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.13);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s ease;
  --container: 1180px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

ul, ul li { list-style: none !important; list-style-type: none !important; }

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

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

.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; }

.hidden { display: none !important; }

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#site-header.scrolled {
  background: rgba(107, 45, 62, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo { text-decoration: none; display: flex; flex-direction: column; }
.logo-name { font-size: 1.3rem; font-weight: 800; color: var(--white); line-height: 1.1; }
.logo-title { font-size: 0.88rem; color: rgba(255,255,255,0.85); font-weight: 500; letter-spacing: 0.04em; }

nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }

.cta-nav {
  background: var(--accent);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
}
.cta-nav:hover { background: var(--accent-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #4d1f2c;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77,31,44,0.65) 0%, rgba(107,45,62,0.45) 50%, rgba(201,123,107,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-accent { color: #f0b8a8; }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 560px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--primary);
  padding: 48px 0;
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-left: none; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-suffix { color: #f0b8a8; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-xlight);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card:hover::before { opacity: 1; }

.service-card-featured {
  background: linear-gradient(135deg, #8a3a4f, #b05570);
  border-color: transparent;
  color: var(--white);
}
.service-card-featured::before { background: var(--accent); opacity: 1; }
.service-card-featured .service-icon { background: rgba(255,255,255,0.15); }
.service-card-featured h3 { color: var(--white); }
.service-card-featured p { color: #ffffff !important; font-weight: 500; }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-xlight);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 0.93rem; color: var(--text-light); line-height: 1.65; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text { color: var(--white); }

.section-label-light {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f0b8a8;
  background: rgba(255,255,255,0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 28px;
}

/* === CERT BADGE === */
.cert-badge-row { margin-bottom: 20px; }
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,123,107,0.2);
  border: 1.5px solid rgba(201,123,107,0.55);
  color: #f0b8a8;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* === METHOD CALLOUT === */
.method-callout {
  background: rgba(255,255,255,0.07);
  border-right: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0 10px;
}
.method-callout-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.method-callout p { font-size: 1rem; color: rgba(255,255,255,0.92); line-height: 1.75; margin: 0 !important; }
.method-callout strong { color: #f0b8a8; }

.about-lead { font-size: 1.15rem; font-weight: 500; color: rgba(255,255,255,0.96); margin-bottom: 20px; line-height: 1.75; }
.about-lead strong { color: #f0b8a8; }
.about-text p { color: rgba(255,255,255,0.85); margin-bottom: 16px; line-height: 1.75; }

.about-list { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 0; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.97rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.about-list li:last-child { border-bottom: none; }

.list-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(240,184,168,0.25);
  color: #f0b8a8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.about-image { position: relative; }
.image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(77,31,44,0.3));
  pointer-events: none;
}
.about-photo { width: 100%; height: 520px; object-fit: cover; object-position: top center; display: block; }

.about-badge-card {
  position: relative;
  margin-top: 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-emoji { font-size: 2rem; }
.about-badge-card strong { color: var(--white); font-size: 1rem; font-weight: 800; display: block; }
.about-badge-card small { color: rgba(255,255,255,0.7); font-size: 0.82rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-xlight), var(--accent-xlight));
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 900; color: var(--primary); margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 40px; max-width: 500px; margin-inline: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== VIDEOS ===== */
.videos { padding: 100px 0; background: var(--bg-light); }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.video-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.site-video { width: 100%; display: block; border-radius: var(--radius-lg); max-height: 520px; object-fit: cover; background: #000; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 900; color: var(--primary); margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; line-height: 1.75; }

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--accent); transform: translateX(-4px); box-shadow: var(--shadow); }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-weight: 700; color: var(--primary); font-size: 0.85rem; }
.contact-item-text span { font-size: 0.95rem; color: var(--text-light); }

.contact-cta-btns { display: flex; flex-direction: column; gap: 12px; }

/* FORM */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-wrapper h3 { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--text); margin-bottom: 8px; font-size: 0.9rem; }
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  direction: rtl;
}
.form-group input:focus { border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(201,123,107,0.15); }
.form-group input.error { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.1); }

.success-message { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.success-message strong { display: block; font-size: 1.3rem; color: var(--primary); margin-bottom: 8px; }
.success-message p { color: var(--text-light); }

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 28px;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-title { color: rgba(255,255,255,0.6); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 50px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5d; }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== ANIMATIONS ===== */
.fade-in, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in { transform: translateY(30px); }
.fade-in-left { transform: translateX(40px); }
.fade-in-right { transform: translateX(-40px); }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .about-photo { height: 380px; }
  nav { display: none; }
  .hamburger { display: flex; }
  #nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--primary-dark);
    display: flex;
    flex-direction: column;
    padding: 90px 32px 40px;
    gap: 8px;
    transition: right 0.35s ease;
    z-index: 999;
    box-shadow: var(--shadow-xl);
  }
  #nav-links.open { right: 0; }
  #nav-links .nav-link {
    font-size: 1.1rem;
    padding: 14px 16px;
    border-radius: var(--radius);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .hero-cta { flex-direction: column; }
  .contact-form-wrapper { padding: 28px 20px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}
