/* ===================================================
   מצפן לעושר | The Wealthy Mindset
   Feminine Luxury Design — Deep Purple + Gold
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --bg-dark: #1C0B2E;
  --bg-mid: #2D1154;
  --bg-light: #3D1A6E;
  --gold: #D4AF37;
  --gold-light: #F0C040;
  --gold-dim: #9A7E28;
  --cream: #FDF9EE;
  --cream-dark: #F0E8D4;
  --text-light: #FFFFFF;
  --text-muted: #C9B8E8;
  --text-dark: #1C0B2E;
  --accent-purple: #8B5CF6;
  --green-wa: #25D366;

  --font-heading: 'Rubik', 'Assistant', sans-serif;
  --font-body: 'Assistant', 'Rubik', sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 30px rgba(212,175,55,0.25);
  --transition: 0.3s ease;
  --nav-height: 74px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
}

.gold-text { color: var(--gold); }
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--text-light);
}
.section-sub {
  font-size: 1.22rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.55);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(212,175,55,0.12);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-xl { padding: 20px 56px; font-size: 1.2rem; }
.btn-submit { width: 100%; justify-content: center; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible, .fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(28, 11, 46, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.3), 0 0 16px rgba(212, 175, 55, 0.5);
  flex-shrink: 0;
  background: transparent;
}
.logo-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
}
.logo-he {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
.logo-en {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 24px; font-size: 0.95rem; }

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 60px) 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-dark);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(61,26,110,0.75) 0%, rgba(28,11,46,0.5) 70%),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(139,92,246,0.12) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 11, 46, 0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  opacity: 0.9;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 28px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== PAIN SECTION ===== */
.pain-section {
  background: var(--bg-mid);
  padding: 100px 0;
  text-align: center;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
  text-align: center;
}
.pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
}
.pain-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.pain-icon img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.5);
  box-shadow: 0 0 18px rgba(212,175,55,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pain-card:hover .pain-icon img {
  box-shadow: 0 0 28px rgba(212,175,55,0.5);
}
.pain-card:hover .pain-icon img {
  transform: scale(1.08);
}
.pain-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.pain-card p {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.pain-cta {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  padding: 28px 40px;
  display: inline-block;
}
.pain-cta-text {
  font-size: 1.32rem;
  color: var(--text-muted);
}
.pain-cta-text strong { color: var(--gold-light); }

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--bg-dark);
  padding: 100px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-mid);
  max-width: 380px;
  width: 100%;
  border: 2px solid rgba(212,175,55,0.4);
  box-shadow: 0 0 40px rgba(212,175,55,0.15), var(--shadow);
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-img-frame.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-light));
  border: 2px solid rgba(212,175,55,0.2);
}
.about-img-frame.no-photo::after {
  content: '👩‍💼';
}
.about-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,11,46,0.7) 0%, transparent 60%);
  pointer-events: none;
}
.about-caption {
  text-align: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
  width: 100%;
}
.cred-item {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cred-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.25rem;
}
.about-text p strong { color: var(--text-light); }
.about-quote {
  border-right: 3px solid var(--gold);
  padding: 18px 24px;
  margin: 32px 0;
  background: rgba(212,175,55,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--bg-mid);
  padding: 100px 0;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: right;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.service-featured {
  background: linear-gradient(160deg, rgba(61,26,110,0.9), rgba(45,17,84,0.95));
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.04);
}
.service-featured:hover { transform: scale(1.04) translateY(-8px); }
.service-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.service-icon {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}
.service-icon img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.5);
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover .service-icon img {
  transform: scale(1.1);
  box-shadow: 0 0 32px rgba(212,175,55,0.55);
}
.service-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-name {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--text-light);
}
.service-desc {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.service-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-size: 1.12rem;
  color: var(--text-muted);
  padding-right: 4px;
}
.service-list li::first-letter { color: var(--gold); }
.service-price {
  margin-bottom: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.price-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  direction: ltr;
}
.price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.service-btn { width: 100%; justify-content: center; }

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--bg-dark);
  padding: 100px 0;
  text-align: center;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  flex-wrap: nowrap;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212,175,55,0.15);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.process-icon {
  width: 80px;
  height: 80px;
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.process-step p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(to left, var(--gold-dim), transparent);
  align-self: center;
  flex-shrink: 0;
  margin-bottom: 80px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-dark));
  padding: 80px 0;
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num span {
  font-size: 1.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== WHATSAPP SECTION ===== */
.whatsapp-section {
  background: var(--bg-dark);
  padding: 80px 0;
}
.whatsapp-card {
  background: linear-gradient(135deg, #0a3d20, #053015);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.whatsapp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,211,102,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.wa-content { position: relative; z-index: 1; }
.wa-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.wa-community-icon {
  width: 64px;
  height: 64px;
}
.whatsapp-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  color: #fff;
}
.whatsapp-card p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 28px;
}
.whatsapp-card p strong { color: #fff; }
.wa-perks {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.wa-perks span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  padding: 6px 16px;
  border-radius: 50px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg-mid);
  padding: 100px 0;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: right;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); }
.testimonial-featured {
  background: linear-gradient(160deg, rgba(61,26,110,0.7), rgba(28,11,46,0.8));
  border-color: rgba(212,175,55,0.35);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-text strong { color: var(--gold-light); font-style: normal; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg-dark);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light);
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== FINAL CTA ===== */
.final-cta-section {
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.3;
}
.final-cta-inner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--bg-dark);
  padding: 100px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.contact-text .section-title { margin-bottom: 20px; }
.contact-text p {
  color: var(--text-muted);
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-direct { display: flex; flex-direction: column; gap: 12px; }
.contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-wa);
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--transition);
}
.contact-wa:hover { color: #1aad57; }

/* Form styles */
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 44px 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-light);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  direction: rtl;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(201,184,232,0.4);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.form-group select option { background: var(--bg-mid); color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}
.link-gold { color: var(--gold); border-bottom: 1px solid rgba(212,175,55,0.4); }

.form-success,
.form-error {
  margin-top: 20px;
  padding: 24px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.form-success {
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.3);
}
.success-icon { font-size: 2rem; margin-bottom: 10px; }
.form-success h3 { color: #25d366; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }
.form-error {
  background: rgba(220,53,69,0.08);
  border: 1px solid rgba(220,53,69,0.3);
  color: #ff8080;
  font-size: 0.9rem;
}

/* Input validation */
.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
  border-color: rgba(220,53,69,0.6);
}

/* ===== FOOTER ===== */
.footer {
  background: #110620;
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.footer-logo-img { height: 48px; width: auto; }
.footer-brand {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--green-wa); }
.footer-copy {
  font-size: 0.82rem;
  color: rgba(201,184,232,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-featured { transform: none; grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .service-featured:hover { transform: translateY(-8px); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame { max-width: 380px; margin: 0 auto; aspect-ratio: 3/4; }
  .process-steps { flex-wrap: wrap; gap: 40px; justify-content: center; }
  .process-step { min-width: 200px; }
  .process-connector { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: var(--nav-height); right: 0; left: 0; background: rgba(28,11,46,0.98); backdrop-filter: blur(16px); flex-direction: column; padding: 28px 24px; gap: 24px; border-bottom: 1px solid rgba(212,175,55,0.15); z-index: 999; text-align: center; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { position: relative; }
  .logo-brand-text {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    text-align: center;
    pointer-events: none;
  }
  .logo-he { font-size: 1rem; }
  .logo-en { font-size: 0.72rem; }
  .theme-toggle { padding: 5px 9px; font-size: 0.95rem; }
  /* RTL natural flow: .logo (first child) = RIGHT, .hamburger (last child) = LEFT */
  .services-grid { grid-template-columns: 1fr; }
  .service-featured { grid-column: auto; max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .wa-perks { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .section-sub { margin-bottom: 36px; }
  .process-step { min-width: 100%; }
  .logo-img { height: 52px; width: 52px; border: 3px solid var(--gold); }
  .logo-he { font-size: 0.95rem; }
  .logo-en { font-size: 0.68rem; }
  .about-img-frame { max-width: 100%; height: 260px; aspect-ratio: unset; }
  .about-photo { object-position: center 20%; }
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
  background: none;
  border: 1.5px solid rgba(212,175,55,0.45);
  border-radius: 50px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: var(--gold);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.1);
  transform: scale(1.08);
}

/* ===== MUSIC BUTTON ===== */
.music-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(28, 11, 46, 0.82);
  border: 1.5px solid rgba(212,175,55,0.5);
  color: var(--gold);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.music-btn:hover {
  border-color: var(--gold);
  background: rgba(28,11,46,0.95);
  transform: scale(1.1);
}
.music-btn.playing .music-btn-icon {
  animation: music-pulse 1.4s ease-in-out infinite;
}
@keyframes music-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0.75; }
}
[data-theme="light"] .music-btn {
  background: rgba(244, 238, 255, 0.88);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 4px 18px rgba(28,11,46,0.15);
}

/* ===== LIGHT MODE ===== */
[data-theme="light"] {
  --bg-dark: #F4EEFF;
  --bg-mid: #EBE0FF;
  --bg-light: #DDD0F5;
  --text-light: #1C0B2E;
  --text-muted: #5A3A82;
  --shadow: 0 8px 40px rgba(28,11,46,0.10);
  --shadow-gold: 0 0 30px rgba(212,175,55,0.18);
}

[data-theme="light"] .navbar {
  background: rgba(244, 238, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,55,0.18);
}
[data-theme="light"] .navbar.scrolled {
  background: rgba(244, 238, 255, 0.97);
  box-shadow: 0 2px 24px rgba(28,11,46,0.10);
}
[data-theme="light"] .nav-links {
  background: rgba(244, 238, 255, 0.99) !important;
  border-bottom-color: rgba(212,175,55,0.2);
}
[data-theme="light"] .nav-links a { color: var(--text-muted); }
[data-theme="light"] .nav-links a:hover { color: var(--gold); }

[data-theme="light"] .hero-bg { background-color: var(--bg-dark); }
[data-theme="light"] .hero-bg::before {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(190,155,255,0.45) 0%, rgba(244,238,255,0.3) 70%),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.10) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(160,120,255,0.12) 0%, transparent 50%);
}
[data-theme="light"] .hero-overlay { background: rgba(244,238,255,0.35); }

[data-theme="light"] .pain-card,
[data-theme="light"] .service-card,
[data-theme="light"] .testimonial-card {
  background: rgba(255,255,255,0.70);
  border-color: rgba(212,175,55,0.22);
  box-shadow: 0 2px 18px rgba(28,11,46,0.07);
}
[data-theme="light"] .pain-card:hover,
[data-theme="light"] .service-card:hover,
[data-theme="light"] .testimonial-card:hover {
  border-color: rgba(212,175,55,0.45);
}
[data-theme="light"] .service-featured {
  background: linear-gradient(160deg, rgba(180,140,255,0.35), rgba(155,110,240,0.25));
  border-color: var(--gold);
}
[data-theme="light"] .testimonial-featured {
  background: linear-gradient(160deg, rgba(200,170,255,0.45), rgba(244,238,255,0.6));
}

[data-theme="light"] .pain-cta {
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.06));
}

[data-theme="light"] .about-img-glow {
  background: linear-gradient(to top, rgba(244,238,255,0.75) 0%, transparent 55%);
}
[data-theme="light"] .about-quote {
  background: rgba(212,175,55,0.09);
}
[data-theme="light"] .cred-item {
  background: rgba(212,175,55,0.14);
}

[data-theme="light"] .stats-section {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-dark));
  border-color: rgba(212,175,55,0.15);
}

[data-theme="light"] .contact-form {
  background: rgba(255,255,255,0.60);
  border-color: rgba(212,175,55,0.2);
}
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: rgba(255,255,255,0.85);
  border-color: rgba(212,175,55,0.28);
  color: var(--text-light);
}
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
  color: rgba(90,58,130,0.42);
}
[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus {
  background: rgba(255,255,255,0.95);
}

[data-theme="light"] .footer {
  background: #DDD0F5;
  border-top-color: rgba(212,175,55,0.2);
}
[data-theme="light"] .footer-copy { color: rgba(90,58,130,0.5); }

[data-theme="light"] .section-tag {
  background: rgba(212,175,55,0.13);
  border-color: rgba(212,175,55,0.28);
}
[data-theme="light"] .process-step p { color: var(--text-muted); }
[data-theme="light"] .service-desc,
[data-theme="light"] .service-list li,
[data-theme="light"] .pain-card p,
[data-theme="light"] .about-text p,
[data-theme="light"] .price-note { color: var(--text-muted); }
[data-theme="light"] .contact-text p { color: var(--text-muted); }
