/* ===================================================
   MARILYN BEAUTY CO - Modern Y2K Aesthetic
   Primary Background: #dfccf6
   =================================================== */

/* ========== CSS VARIABLES ========== */
:root {
  /* Colors */
  --bg-primary: #dfccf6;
  --bg-card: rgba(255, 255, 255, 0.6);
  --bg-card-hover: rgba(255, 255, 255, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.4);
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #888;
  --accent-pink: #f5a0b8;
  --accent-lavender: #e6d9f5;
  --accent-purple: #9878b0;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 8px 40px rgba(168, 132, 188, 0.25);

  /* Border Radius Scale */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  /* Typography */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== 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-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.01em;
  /* Subtle grid pattern */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 30px 30px;
  background-attachment: fixed;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========== DEMO BANNER ========== */
.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-banner-text {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-pink);
}

.demo-banner-separator {
  color: rgba(255, 255, 255, 0.3);
}

.demo-banner-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* ========== FLOATING SPARKLES ========== */
.sparkles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  font-size: 1rem;
  opacity: 0.25;
  animation: float 12s ease-in-out infinite;
  color: var(--accent-purple);
}

.sparkle-1 { top: 10%; left: 5%; animation-delay: 0s; }
.sparkle-2 { top: 20%; right: 10%; animation-delay: 1.5s; font-size: 1.2rem; color: var(--accent-pink); }
.sparkle-3 { top: 40%; left: 8%; animation-delay: 3s; }
.sparkle-4 { top: 60%; right: 5%; animation-delay: 4.5s; font-size: 1.4rem; color: var(--accent-pink); }
.sparkle-5 { top: 75%; left: 15%; animation-delay: 6s; }
.sparkle-6 { top: 85%; right: 15%; animation-delay: 7.5s; }
.sparkle-7 { top: 30%; left: 92%; animation-delay: 9s; }
.sparkle-8 { top: 50%; left: 3%; animation-delay: 10.5s; font-size: 1.1rem; }

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-25px) rotate(15deg) scale(1.1);
    opacity: 0.4;
  }
}

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 38px; /* Account for demo banner */
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  background: rgba(223, 204, 246, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(107, 70, 130, 0.15));
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  background: #1a1a1a;
  color: #ffffff;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
  background: #000000;
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ========== BUTTONS ========== */
.pill-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  background: white;
}

.pill-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-secondary);
  font-family: var(--font-display);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  background: var(--text-primary);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-sparkle {
  animation: sparkle-pulse 2s ease-in-out infinite;
  font-size: 0.9em;
}

@keyframes sparkle-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ========== SECTION STYLES ========== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.1;
  font-weight: 400;
  font-style: italic;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-title-img {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto 0;
}

/* ========== CHROME TEXT EFFECT ========== */
.chrome-text {
  background: linear-gradient(
    180deg,
    #d8c8e8 0%,
    #a888c0 20%,
    #f8f0ff 48%,
    #a078b8 52%,
    #8868a0 80%,
    #684878 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(1px 2px 2px rgba(107, 70, 130, 0.2));
}

/* ========== 1. HERO / ABOUT ME ========== */
.hero-section {
  min-height: 100vh;
  padding: 178px 24px 100px; /* Extra 38px for demo banner */
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  order: 1;
}

/* Hero Title - Y2K Style */
.hero-title {
  text-align: left;
  margin-bottom: 16px;
}

.about-me-img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.hero-intro {
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.hero-text {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0;
}

.hero-image-area {
  order: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badges {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.badge {
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.badge-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  padding: 14px 34px;
  background: linear-gradient(135deg, #f0f0f0 0%, #d8d8d8 50%, #f8f8f8 100%);
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.badge-location {
  background: white;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.location-pin {
  font-size: 1rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  margin-right: auto;
  margin-left: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.hero-handle {
  margin-top: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-secondary);
  align-self: flex-start;
}

/* ========== 2. SERVICES SECTION ========== */
.services-section {
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

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

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

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

.service-card.featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(245, 160, 184, 0.15) 100%);
}

.service-card.featured::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.service-icon-img {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.service-icon-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.service-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.services-note {
  text-align: center;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-family: var(--font-display);
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio-section {
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-pink);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  justify-content: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: white;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ========== 3. PRICES SECTION ========== */
.prices-section {
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.price-category {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent-lavender);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.price-row span:first-child {
  white-space: nowrap;
  font-weight: 500;
}

.price-line {
  flex: 1;
  height: 1px;
  background: var(--accent-lavender);
}

.price {
  font-weight: 700;
  white-space: nowrap;
  font-size: 1rem;
}

.price.included {
  color: #2a9d5c;
}

.price.coming-soon {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 500;
}

.extras-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(230, 217, 245, 0.3) 100%);
}

/* ========== 4. BOOKING TRIGGER SECTION ========== */
.booking-trigger-section {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.booking-tagline {
  font-family: var(--font-display);
  font-style: italic;
}

.book-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--text-primary);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin-top: 32px;
}

.book-trigger-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.book-trigger-btn .btn-arrow {
  transition: transform 0.3s ease;
}

.book-trigger-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ========== BOOKING MODAL ========== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 520px;
  max-height: 100dvh;
  background: linear-gradient(180deg, #faf8fc 0%, #f3eef8 100%);
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

@media (min-width: 600px) {
  .booking-modal-container {
    max-height: 90dvh;
    border-radius: 32px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
  }
}

.booking-modal.active .booking-modal-container {
  transform: translateY(0) scale(1);
}

/* Close Button */
.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.booking-close:hover {
  background: white;
  transform: rotate(90deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.booking-close svg {
  color: var(--text-primary);
}

/* Progress Bar */
.booking-progress-bar {
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 2px 2px 0;
}

/* Step Indicator */
.booking-step-indicator {
  padding: 20px 24px 0;
  text-align: center;
  flex-shrink: 0;
}

.step-current {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.step-divider {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 4px;
}

.step-total {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* Steps Container */
.booking-steps-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}

.booking-steps-container::-webkit-scrollbar {
  width: 0;
}

/* Individual Step */
.booking-step {
  display: none;
  padding: 24px;
  animation: stepIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.booking-step.active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Step Header */
.step-header {
  text-align: center;
  margin-bottom: 28px;
}

.step-label-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(152, 120, 176, 0.15);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-purple);
  margin-bottom: 12px;
}

.step-headline {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.2;
}

.step-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-card-option {
  cursor: pointer;
}

.service-card-option input {
  display: none;
}

.service-card-inner {
  position: relative;
  padding: 18px 16px;
  background: white;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card-option:hover .service-card-inner {
  border-color: var(--accent-lavender);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card-option input:checked + .service-card-inner {
  border-color: var(--text-primary);
  background: linear-gradient(135deg, white 0%, #f8f5fc 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card-header {
  margin-bottom: 10px;
}

.service-card-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.service-card-type {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card-duration {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.service-card-price {
  font-weight: 700;
  font-size: 1.1rem;
}

.service-card-option.featured .service-card-inner {
  background: linear-gradient(135deg, #fff 0%, rgba(245, 160, 184, 0.1) 100%);
}

.featured-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  padding: 4px 10px;
  background: var(--accent-pink);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
}

/* Addon Toggle */
.addon-toggle {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.addon-toggle-label {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 16px;
  background: white;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.addon-toggle-label:hover {
  background: #faf8fc;
}

.addon-toggle-label input {
  display: none;
}

.addon-toggle-track {
  width: 52px;
  height: 28px;
  background: #e0e0e0;
  border-radius: 100px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.addon-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.addon-toggle-label input:checked + .addon-toggle-track {
  background: var(--text-primary);
}

.addon-toggle-label input:checked + .addon-toggle-track .addon-toggle-thumb {
  transform: translateX(24px);
}

.addon-toggle-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.addon-toggle-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.addon-toggle-price {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Calendar Wrapper */
.calendar-wrapper {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.calendar-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-lavender);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.calendar-arrow:hover {
  background: var(--text-primary);
  color: white;
}

.calendar-arrow svg {
  transition: inherit;
}

.calendar-arrow:hover svg {
  stroke: white;
}

.calendar-month-year {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
}

.calendar-grid {
  user-select: none;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: var(--accent-lavender);
}

.calendar-day.selected {
  background: var(--text-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.calendar-day.disabled {
  color: #ddd;
  cursor: not-allowed;
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day.today {
  border: 2px solid var(--accent-pink);
}

/* Time Grid */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.time-slot {
  padding: 14px 8px;
  background: white;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.time-slot:hover:not(.booked) {
  border-color: var(--accent-lavender);
  transform: translateY(-2px);
}

.time-slot.selected {
  background: var(--text-primary);
  color: white;
  border-color: var(--text-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.time-slot.booked {
  background: #f5f5f5;
  color: #bbb;
  cursor: not-allowed;
  text-decoration: line-through;
}

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

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-field .optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  padding: 16px 18px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--text-primary);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.form-field textarea {
  resize: none;
  min-height: 80px;
}

/* Client Intake Form */
.client-intake-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intake-question {
  background: white;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.intake-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.intake-label .required {
  color: #e74c3c;
  font-weight: 600;
}

.intake-label .optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85rem;
}

.yes-no-group {
  display: flex;
  gap: 12px;
}

.yes-no-option {
  flex: 1;
  cursor: pointer;
}

.yes-no-option input {
  display: none;
}

.yes-no-option span {
  display: block;
  padding: 12px 20px;
  text-align: center;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  background: #fafafa;
}

.yes-no-option:hover span {
  border-color: var(--accent-lavender);
  background: white;
}

.yes-no-option input:checked + span {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: white;
}

.intake-text-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafafa;
  transition: all 0.3s ease;
}

.intake-text-input:focus {
  outline: none;
  border-color: var(--text-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.intake-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafafa;
  transition: all 0.3s ease;
  resize: none;
  min-height: 80px;
}

.intake-textarea:focus {
  outline: none;
  border-color: var(--text-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

/* File Upload */
.file-upload-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-input {
  display: none;
}

.file-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--accent-lavender);
  border: 2px dashed var(--accent-purple);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-btn:hover {
  background: rgba(152, 120, 176, 0.2);
  border-style: solid;
}

.file-upload-text {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.file-name {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 4px;
}

/* Terms Box */
.terms-box {
  background: rgba(245, 160, 184, 0.1);
  border: 1px solid rgba(245, 160, 184, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin-top: 8px;
}

.terms-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.terms-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.terms-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

.terms-checkbox-label input[type="checkbox"] {
  display: none;
}

.terms-checkmark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--text-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  background: white;
}

.terms-checkbox-label input[type="checkbox"]:checked + .terms-checkmark {
  background: var(--text-primary);
}

.terms-checkbox-label input[type="checkbox"]:checked + .terms-checkmark::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: bold;
}

/* Confirm Summary */
.confirm-summary {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-row.total-row {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--text-primary);
  border-bottom: none;
}

.confirm-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.confirm-value {
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}

.confirm-row.total-row .confirm-value {
  font-size: 1.4rem;
  font-weight: 700;
}

.deposit-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px;
  background: rgba(245, 160, 184, 0.15);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.deposit-icon {
  font-size: 1.1rem;
}

/* Success Container */
.success-container {
  text-align: center;
  padding: 20px 0;
}

.success-animation {
  margin-bottom: 24px;
}

.success-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-check {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: checkDraw 0.5s ease 0.3s forwards;
}

@keyframes checkDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 8px;
}

.success-text {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.success-deposit-box {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.deposit-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-align: center;
}

.deposit-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deposit-method {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8f5fc;
  border-radius: 10px;
}

.method-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.method-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.success-btn {
  padding: 16px 40px;
  background: var(--text-primary);
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Booking Footer */
.booking-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.booking-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-nav-btn.back {
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--text-secondary);
  visibility: hidden;
  opacity: 0;
}

.booking-nav-btn.back.visible {
  visibility: visible;
  opacity: 1;
}

.booking-nav-btn.back:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.booking-nav-btn.next {
  background: var(--text-primary);
  color: white;
  border: none;
  margin-left: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.booking-nav-btn.next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.booking-nav-btn.next:disabled {
  background: #d1d1d1;
  cursor: not-allowed;
  box-shadow: none;
}

.booking-nav-btn svg {
  transition: transform 0.3s ease;
}

.booking-nav-btn.next:hover:not(:disabled) svg {
  transform: translateX(3px);
}

.booking-nav-btn.back:hover svg {
  transform: translateX(-3px);
}

/* Hide footer on success */
.booking-modal.success .booking-footer {
  display: none;
}

/* ========== 5. POLICIES SECTION ========== */
.policies-section {
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.accordion {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition);
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.4);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 26px 26px;
}

.accordion-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* ========== 6. CARE SECTION ========== */
.care-section {
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.care-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.care-card.dos {
  border-top: 4px solid #2a9d5c;
}

.care-card.donts {
  border-top: 4px solid #e74c3c;
}

.care-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.care-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.care-list li {
  font-size: 0.95rem;
  padding-left: 28px;
  position: relative;
}

.dos .care-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2a9d5c;
  font-weight: bold;
}

.donts .care-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
}

/* ========== 7. COMING SOON SECTION ========== */
.coming-section {
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.coming-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  opacity: 0.75;
  transition: var(--transition);
}

.coming-card:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.coming-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.coming-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 18px;
  font-style: italic;
}

.coming-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--accent-lavender);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ========== 8. INSTAGRAM SECTION ========== */
.instagram-section {
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.instagram-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 48px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.instagram-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.insta-handle {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
}

.insta-cta {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========== 9. FOOTER ========== */
.footer {
  padding: 40px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 2px 4px rgba(107, 70, 130, 0.15));
}

.footer-location {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image-area {
    order: 1;
    align-items: center;
  }

  .hero-title {
    text-align: center;
  }

  .about-me-img {
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-content .cta-btn {
    margin: 0 auto;
  }

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

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

@media (max-width: 600px) {
  html {
    font-size: 15px;
  }

  .demo-banner {
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .demo-banner-separator {
    display: none;
  }

  .nav {
    padding: 14px 16px;
    top: 36px; /* Slightly smaller banner on mobile */
  }

  .logo-img {
    height: 52px;
  }

  .nav-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .hero-section {
    padding: 158px 20px 80px; /* Extra 38px for demo banner */
  }

  .hero-image-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-handle {
    align-self: center;
  }

  .title-me {
    letter-spacing: -2px;
  }

  /* Mobile Booking Modal */
  .booking-modal-container {
    border-radius: 0;
    max-height: 100dvh;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card-inner {
    padding: 16px 14px;
  }

  .step-headline {
    font-size: 1.5rem;
  }

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

  .booking-nav-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .booking-footer {
    padding: 12px 16px;
  }

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

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

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

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

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .portfolio-item {
    border-radius: var(--radius-sm);
  }

  .portfolio-tag {
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  .sparkle {
    opacity: 0.15;
  }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--text-primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
