/* ═══════════════════════════════════════════
   רגע לנשום — Luxury Redesign CSS
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── Custom Properties ── */
:root {
  --bg:          #0e0c09;
  --bg-2:        #16130ef0;
  --bg-card:     #1c1812;
  --bg-glass:    rgba(28, 24, 18, 0.85);
  --gold:        #C9A552;
  --gold-light:  #e8c97a;
  --gold-dim:    rgba(201, 165, 82, 0.15);
  --gold-border: rgba(201, 165, 82, 0.25);
  --white:       #f4efe8;
  --muted:       #8a7f72;
  --text:        #ede8df;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-gold: 0 0 30px rgba(201, 165, 82, 0.18);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.45);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none; outline: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
::selection { background: var(--gold); color: var(--bg); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--white);
}
em { font-style: italic; color: var(--gold); }
span.gold { color: var(--gold); }
p { color: var(--muted); }

/* ─────────────────────────────────────
   SHARED COMPONENTS
───────────────────────────────────── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.eyebrow-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.7rem;
  color: var(--muted);
  max-width: 55rem;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn-primary-luxury {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3rem;
  background: linear-gradient(135deg, var(--gold), #a87d30);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 165, 82, 0.3);
  letter-spacing: 0.03em;
  border: none;
  text-decoration: none;
}
.btn-primary-luxury:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 165, 82, 0.4);
  color: var(--bg);
}
.btn-primary-luxury.w-100 { width: 100%; justify-content: center; }

.btn-ghost-luxury {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3rem;
  background: transparent;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--gold-border);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-ghost-luxury:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ─────────────────────────────────────
   HEADER
───────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 1.8rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(14, 12, 9, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  padding: 1.3rem 6%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201, 165, 82, 0.5));
}

.logo span {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: var(--gold-dim);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.header-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1010;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────
   FLOATING BUTTONS
───────────────────────────────────── */
.floating-wa,
.floating-phone {
  position: fixed;
  left: 2rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem; height: 5.2rem;
  border-radius: 50%;
  color: var(--bg);
  font-size: 2.4rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  text-decoration: none;
}
.floating-wa {
  bottom: 2.5rem;
  background: #25D366;
}
.floating-wa:hover { background: #1da851; transform: scale(1.1); color: var(--bg); }
.floating-wa-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.3;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.5); opacity: 0; }
}
.floating-phone {
  bottom: 9.5rem;
  background: var(--gold);
  display: none;
}
.floating-phone:hover { background: var(--gold-light); transform: scale(1.1); color: var(--bg); }

/* ─────────────────────────────────────
   HERO SECTION
───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12rem 8% 6rem;
  /* overflow: hidden; */
  gap: 4rem;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero::before {
  z-index: -1;
  background-image: url(pexels-elina-fairytale-3865497.jpg);
  /* Set the opacity of the first image */
  opacity: 0.8;
  filter: brightness(85%) contrast(180%);
  position: fixed;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  
  /* גרדיאנט שמשלב את צבע הרקע שלך עם נגיעות של צבעי הזהב/אש מהעיצוב */
  background: linear-gradient(
    -45deg, 
    rgba(14, 12, 9, 0.9),  /* --bg */
    rgba(201, 165, 82, 0.15), /* --gold עם שקיפות */
    rgba(168, 125, 48, 0.1),  /* גוון זהב עמוק/כתמתם */
    rgba(14, 12, 9, 0.95)
  );
  
  /* מגדילים את הרקע כדי שיהיה מקום להזיז אותו */
  background-size: 400% 400%;
  
  /* מפעילים את האנימציה - 15 שניות לתנועה סופר חלקה ומרגיעה */
  animation: healingFlow 15s ease infinite;
  opacity: 0.8;
}

/* הגדרת התנועה של הרקע */
@keyframes healingFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(201, 165, 82, 0.04) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, rgba(14, 12, 9, 0.8) 50%, var(--bg) 100%);
  z-index: 0;
}


#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 58rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-name {
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-typed-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-typed-wrap i { font-size: 2.5rem; }

.hero-desc {
  font-size: 1.65rem;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 46rem;
  line-height: 1.8;
}

.hero-socials {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}
.hero-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem; height: 4.4rem;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.hero-socials a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  animation: ring-rotate 20s linear infinite;
}
.ring-1 { width: 38vw; height: 38vw; max-width: 480px; max-height: 480px; }
.ring-2 { width: 46vw; height: 46vw; max-width: 580px; max-height: 580px; animation-duration: 30s; animation-direction: reverse; opacity: 0.5; }
.ring-3 { width: 54vw; height: 54vw; max-width: 680px; max-height: 680px; animation-duration: 40s; opacity: 0.25; }

@keyframes ring-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-img {
  width: min(32vw, 400px);
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  -webkit-mask-image: radial-gradient(circle, black 45%, rgba(0,0,0,0.6) 65%, transparent 85%);
  mask-image: radial-gradient(circle, black 45%, rgba(0,0,0,0.6) 65%, transparent 85%);
  animation: float-hero 6s ease-in-out infinite;
}

@keyframes float-hero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.scroll-indicator {
  width: 20px; height: 34px;
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding: 4px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ─────────────────────────────────────
   STATS RIBBON
───────────────────────────────────── */
.stats-ribbon {
  background-color:#16130e;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 3.5rem 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix { font-family: var(--font-display); font-size: 3rem; color: var(--gold); font-weight: 700; }
.stat-label {
  font-size: 1.3rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 4rem;
  background: var(--gold-border);
}

/* ─────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────── */
.about-section {
  padding: 10rem 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 7rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-frame {
  width: 38rem;
  height: 45rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  position: relative;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.05);
}

.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 12, 9, 0.6) 100%);
}

.about-badge {
  position: absolute;
  bottom: 3rem;
  right: -2rem;
  background: var(--gold);
  color: var(--bg);
  padding: 1.4rem 2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(201, 165, 82, 0.4);
}
.about-badge i { font-size: 2rem; }

.about-experience-tag {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-card);
}
.exp-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.exp-text {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.3;
}

.about-content {
  padding: 2rem 0;
}

.about-logo-name {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.about-logo-name span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--muted);
}

.about-text {
  font-size: 1.65rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
  position: relative;
}

.quote-icon {
  color: var(--gold);
  font-size: 2rem;
  opacity: 0.5;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.5rem 0 3rem;
}

.skill-tag {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 1.4rem;
  color: var(--text);
  background: var(--gold-dim);
  transition: var(--transition);
}
.skill-tag i { color: var(--gold); }
.skill-tag:hover { background: rgba(201, 165, 82, 0.25); border-color: var(--gold); }

/* ─────────────────────────────────────
   TREATMENTS SECTION
───────────────────────────────────── */
.treatments-section {
  padding: 10rem 0;
  background: var(--bg-2);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.treatment-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.treatment-card:hover::before { opacity: 1; }
.treatment-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.featured-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 165, 82, 0.08) 100%);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.treatment-badge {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.3rem 1.2rem;
  border-radius: 100px;
  white-space: nowrap;
}

.treatment-icon {
  width: 6.5rem; height: 6.5rem;
  margin: 0 auto 2rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--gold);
  transition: var(--transition);
}
.treatment-card:hover .treatment-icon {
  background: var(--gold);
  color: var(--bg);
}

.treatment-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.treatment-desc {
  font-size: 1.45rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.treatment-duration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.treatment-duration i { color: var(--gold); }

.treatment-price {
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 500;
}
.treatment-price strong { color: var(--gold); font-size: 1.8rem; }

/* Pricing Banner */
.pricing-banner {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.pricing-banner-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pricing-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  color: var(--muted);
}
.pricing-duration i { color: var(--gold); }

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
}

.pricing-divider-v {
  width: 1px; height: 5rem;
  background: var(--gold-border);
}

.bonus-item .pricing-amount em { color: var(--gold-light); }

/* ─────────────────────────────────────
   BOOKING SECTION
───────────────────────────────────── */
.booking-section {
  padding: 10rem 0;
  background: var(--bg);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.booking-info h3 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.booking-info p {
  font-size: 1.6rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.booking-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.bh-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.bh-item > i {
  font-size: 2.4rem;
  color: var(--gold);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.bh-item div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.bh-item strong { font-size: 1.5rem; color: var(--white); font-weight: 500; }
.bh-item span { font-size: 1.4rem; color: var(--muted); }

/* Carousel */
.booking-carousel {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.carousel-img {
  height: 24rem;
  background-size: cover;
  background-position: center;
}

/* Booking Form */
.booking-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-card);
}

/* ── Shared Form Styles ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 2rem;
}

.form-group label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-group label i { color: var(--gold); }

.form-group input,
.form-group textarea,
.booking-form input,
.booking-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.3rem 1.6rem;
  font-size: 1.5rem;
  font-family: var(--font-body);
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.booking-form input:focus,
.booking-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 165, 82, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 165, 82, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-group textarea { resize: vertical; min-height: 10rem; }

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-note {
  text-align: center;
  font-size: 1.3rem;
  color: var(--muted);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-note i { color: var(--gold); }

/* ─────────────────────────────────────
   OFFERS SECTION
───────────────────────────────────── */
.offers-section {
  padding: 10rem 0;
  background: var(--bg-2);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.offer-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.popular-offer {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(201, 165, 82, 0.1) 100%);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}
.popular-offer:hover { transform: scale(1.02) translateY(-8px); }

.offer-ribbon {
  position: absolute;
  top: 2rem; right: -2.5rem;
  background: var(--bg-2);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.4rem 3.5rem;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
  border: 1px solid var(--gold-border);
}
.popular-ribbon {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold-light);
}

.offer-icon {
  width: 6rem; height: 6rem;
  margin: 0 auto 2rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
}

.offer-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.offer-num {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.offer-plus {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--muted);
  margin-top: -1rem;
}
.offer-free-badge {
  background: var(--gold);
  color: var(--bg);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-top: -1rem;
}

.offer-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.offer-desc {
  font-size: 1.45rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.offer-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.offer-original {
  font-size: 1.6rem;
  color: var(--muted);
  text-decoration: line-through;
}
.offer-current {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
}

.btn-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.3rem 2rem;
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-body);
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-offer:hover, .popular-btn {
  background: linear-gradient(135deg, var(--gold), #a87d30);
  color: var(--bg);
  border-color: var(--gold);
}
.popular-btn { background: linear-gradient(135deg, var(--gold), #a87d30); color: var(--bg); border-color: var(--gold); }
.popular-btn:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

.offers-note {
  text-align: center;
  font-size: 1.35rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.offers-note i { color: var(--gold); }

/* ─────────────────────────────────────
   TESTIMONIALS SECTION
───────────────────────────────────── */
.testimonials-section {
  padding: 10rem 0;
  background: var(--bg);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--gold);
}

.testimonial-quote-icon {
  position: absolute;
  top: 2.5rem;
  left: 3rem;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.12;
}

.testimonial-theme {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-top: 1px solid var(--gold-border);
  padding-top: 2rem;
}

.author-avatar {
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.testimonial-author span {
  font-size: 1.3rem;
  color: var(--muted);
}

/* ─────────────────────────────────────
   FAQ SECTION
───────────────────────────────────── */
.faq-section {
  padding: 10rem 0;
  background: var(--bg-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 90rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.faq-item:hover, .faq-item.open {
  border-color: var(--gold);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
}
.faq-q span {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}
.faq-icon {
  font-size: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 2.5rem;
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 20rem;
  padding: 0 2.5rem 2rem;
}

/* ─────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────── */
.contact-section {
  padding: 10rem 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.contact-info-panel h3 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-info-panel p {
  font-size: 1.6rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}
.contact-channel:hover { border-color: var(--gold-border); background: var(--gold-dim); }
.contact-channel.no-link { cursor: default; }
.contact-channel.no-link:hover { border-color: transparent; background: transparent; }

.channel-icon {
  width: 4.8rem; height: 4.8rem;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.wa-icon { background: rgba(37, 211, 102, 0.12); border-color: rgba(37, 211, 102, 0.3); color: #25D366; }
.ig-icon { background: rgba(225, 48, 108, 0.12); border-color: rgba(225, 48, 108, 0.3); color: #e1306c; }
.time-icon { color: var(--gold); }

.contact-channel:hover .channel-icon { transform: scale(1.05); }

.contact-channel strong {
  display: block;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.contact-channel span { font-size: 1.4rem; color: var(--muted); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form .form-row { margin-bottom: 2rem; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--gold-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-brand img { filter: drop-shadow(0 0 6px rgba(201, 165, 82, 0.4)); }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
}
.footer-tagline {
  font-size: 1.4rem;
  color: var(--muted);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-links a {
  font-size: 1.5rem;
  color: var(--muted);
  transition: var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }

.footer-socials {
  display: flex;
  gap: 1.2rem;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem; height: 4.2rem;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 4rem;
  border-top: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-bottom p {
  font-size: 1.4rem;
  color: var(--muted);
  margin: 0;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem; height: 4rem;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--bg);
  font-size: 2rem;
  transition: var(--transition);
  text-decoration: none;
}
.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1200px) {
  html { font-size: 58%; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .section-container { padding: 0 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 5rem; }
  .about-img-wrap { justify-content: center; }
  .about-img-frame { width: 32rem; height: 38rem; }
  .booking-grid { grid-template-columns: 1fr; gap: 4rem; }
  .offers-grid { grid-template-columns: 1fr; max-width: 42rem; margin-left: auto; margin-right: auto; }
  .popular-offer { transform: none; }
  .popular-offer:hover { transform: translateY(-8px); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 52rem; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 3rem 3rem; }
  .footer-socials { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  html { font-size: 55%; }

  .menu-toggle { display: flex; order: -1; }
  .header { padding: 1.5rem 5%; flex-wrap: wrap; }
  .header-actions { margin-right: auto; }

  .navbar {
    position: fixed;
    top: 0; right: -100%;
    width: min(80vw, 30rem);
    height: 100vh;
    background: rgba(14, 12, 9, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 8rem 3rem 4rem;
    border-left: 1px solid var(--gold-border);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1005;
    gap: 0.5rem;
  }
  .navbar.open { right: 0; }
  .nav-link { font-size: 2rem; padding: 1rem 1.5rem; width: 100%; }
  .menu-toggle { z-index: 1010; order: 1; }
  .logo { order: 0; }
  .header-actions { order: 2; }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 12rem 5% 6rem;
    gap: 4rem;
  }
  .hero-content { max-width: 100%; }
  .hero-eyebrow { justify-content: center; }
  .hero-desc { margin: 0 auto 3rem; }
  .hero-socials { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-img { width: min(55vw, 28rem); }
  .ring-1 { width: 65vw; height: 65vw; }
  .ring-2 { width: 80vw; height: 80vw; }
  .ring-3 { width: 95vw; height: 95vw; }

  .stats-ribbon { gap: 2.5rem; padding: 2.5rem; }
  .stat-divider { display: none; }

  .treatments-grid { grid-template-columns: 1fr; max-width: 40rem; margin: 0 auto 5rem; }

  .pricing-banner { flex-direction: column; text-align: center; padding: 3rem 2rem; }
  .pricing-divider-v { width: 6rem; height: 1px; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 3rem 2.5rem; }
  .contact-form-wrap { padding: 3rem 2.5rem; }

  .floating-phone { display: inline-flex; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  html { font-size: 50%; }
  .hero-name { font-size: clamp(4rem, 12vw, 6rem); }
  .about-img-frame { width: 28rem; height: 34rem; }
  .about-badge { right: -1rem; }
  .about-experience-tag { left: -1rem; }
  .offer-card { padding: 3rem 2rem; }
  .testimonial-card { padding: 2.5rem; }
}
