/* ============================================
   Sculpted Curves — Client-Facing Website
   Approachable luxury body contouring
   ============================================ */

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

:root {
  --bg: #FEFCF9;
  --bg-warm: #F7F2ED;
  --bg-accent: #F2E8DE;
  --surface: #FFFFFF;
  --primary: #1C1C28;
  --text: #2D2D3A;
  --text-secondary: #6B6B7B;
  --text-muted: #9B9BAA;
  --accent: #C4956A;
  --accent-dark: #A87A52;
  --accent-light: #E8D5C4;
  --accent-glow: rgba(196, 149, 106, 0.12);
  --rose: #B76E79;
  --rose-light: #F2DFE1;
  --border: rgba(28, 28, 40, 0.08);
  --border-accent: rgba(196, 149, 106, 0.25);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-accent: 0 4px 20px rgba(196, 149, 106, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--primary); line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 700; letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.5px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 149, 106, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--border-accent);
}

.btn-secondary:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.btn-white {
  background: white;
  color: var(--accent-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; border-radius: var(--radius-lg); }

/* ========== NAVIGATION ========== */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 252, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav-wrapper.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu .btn {
  margin-top: 16px;
  text-align: center;
}

/* ========== HERO ========== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 28px;
}

.hero-badge svg { width: 16px; height: 16px; }

.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-warm) 50%, var(--rose-light) 100%);
  box-shadow: var(--shadow-lg);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-image-placeholder svg { width: 48px; height: 48px; opacity: 0.5; }

.hero-float-card {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-card .hfc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-float-card .hfc-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.hero-float-card .hfc-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
}

/* ========== SERVICES ========== */
.services { background: var(--bg-warm); }

.services-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.services-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 16px;
  line-height: 1.7;
}

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

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-image {
  height: 220px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 3rem;
  position: relative;
}

.service-card-image .service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  margin-bottom: 8px;
}

.service-card-body .service-tagline {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.service-card-body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.service-price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.service-card-footer .btn {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ========== GALLERY ========== */
.gallery-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.gallery-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 16px;
  line-height: 1.7;
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.gallery-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery-before, .gallery-after {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.gallery-before {
  background: var(--bg-warm);
  color: var(--text-muted);
}

.gallery-after {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--rose-light) 100%);
  color: var(--accent-dark);
}

.gallery-before::after, .gallery-after::after {
  content: attr(data-label);
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.85);
  color: var(--text-secondary);
}

.gallery-caption {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-caption span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary);
}

.gallery-caption small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

.gallery-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

/* ========== ABOUT ========== */
.about { background: var(--bg-warm); }

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

.about-text h2 { margin-bottom: 20px; }

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.about-highlight svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-highlight span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

.about-visual {
  position: relative;
}

.about-image {
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-warm) 50%, var(--rose-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--accent);
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.about-image svg { width: 48px; height: 48px; opacity: 0.5; }

/* ========== HOW IT WORKS ========== */
.how-it-works-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.how-it-works-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 16px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--border-accent), var(--accent-light), var(--border-accent));
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.step-card h3 { margin-bottom: 10px; }

.step-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* ========== BOOKING FORM ========== */
.booking { background: var(--bg-warm); }

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.booking-info h2 { margin-bottom: 20px; }

.booking-info > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.booking-perks { display: flex; flex-direction: column; gap: 16px; }

.booking-perk {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-perk .perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.booking-perk .perk-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.booking-perk .perk-text strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.booking-form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.booking-form-card h3 {
  margin-bottom: 8px;
}

.booking-form-card > p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px; /* Prevents iOS zoom */
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* Form messages */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.form-success.show { display: block; }

.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--accent);
  margin: 0 auto 16px;
}

.form-success h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #B91C1C;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 16px;
  display: none;
}

.form-error.show { display: block; }

/* ========== FAQ ========== */
.faq-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.faq-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 12px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-question h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== CONTACT / LOCATION ========== */
.contact { background: var(--primary); color: white; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.contact h2 {
  color: white;
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.contact .section-label { color: var(--accent-light); }
.contact .section-label::before { background: var(--accent-light); }

.contact-block h3 {
  color: var(--accent-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.contact-block p, .contact-block a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-block a:hover { color: var(--accent-light); }

.contact-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========== FOOTER ========== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

/* ========== SERVICE DETAIL PAGES ========== */
.service-hero {
  padding: 140px 0 80px;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}

.service-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-hero-text .section-label { margin-bottom: 20px; }
.service-hero-text h1 { margin-bottom: 20px; font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.service-hero-text > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}

.service-hero-price .price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.service-hero-price .price-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

.service-hero-visual {
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg) 50%, var(--rose-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.service-hero-visual svg { width: 64px; height: 64px; opacity: 0.4; }

/* Service Detail Sections */
.service-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.benefit-card .benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Treatment process */
.treatment-process {
  background: var(--bg-warm);
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--border-accent);
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
  z-index: 2;
}

.process-step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.process-step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.process-step-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Service CTA section */
.service-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2a2a3e 100%);
  color: white;
  text-align: center;
}

.service-cta-section h2 { color: white; margin-bottom: 16px; }
.service-cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

.service-cta-section .btn-primary {
  font-size: 1.05rem;
  padding: 18px 40px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-padding { padding: 64px 0; }

  /* Nav */
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  /* Hero */
  .hero { padding: 110px 0 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-image-container { aspect-ratio: 16/10; }
  .hero-float-card { left: 16px; bottom: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  /* About */
  .about-content { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-image { aspect-ratio: 16/10; }
  .about-highlights { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }

  /* Booking */
  .booking-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-cta { flex-direction: column; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }

  /* Service pages */
  .service-hero { padding: 110px 0 60px; }
  .service-hero-content { grid-template-columns: 1fr; }
  .service-hero-visual { order: -1; aspect-ratio: 16/10; }
  .service-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .section-padding { padding: 48px 0; }
  .hero { padding: 100px 0 48px; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .service-card-body { padding: 20px; }
  .booking-form-card { padding: 24px; }
  .step-number { width: 72px; height: 72px; font-size: 1.5rem; }
}
