/* ═══════════════════════════════════════════════
   MY TIME Beauty Studio — Main Stylesheet
   ═══════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #FDFCFB;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: #e0e7ff; color: #312e81; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
ul { list-style: none; }

/* ─── UTILITIES ────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.font-serif { font-family: 'Playfair Display', serif; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── ANIMATIONS ───────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1); opacity: 0.5; }
}
@keyframes progressBar {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes springPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 2000px; }
}

.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.8s ease forwards; }
.animate-fadeInScale { animation: fadeInScale 1s ease forwards; }
.animate-pulse { animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }


/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s ease;
  padding: 1.5rem 0;
}
.nav.scrolled {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f5f9;
  padding: 0.75rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.125rem; letter-spacing: -0.025em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: #57534e; transition: color 0.2s; }
.nav-link:hover { color: #e11d48; }
.nav-cta {
  background: #f43f5e; color: #fff; padding: 0.625rem 1.5rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500;
  transition: all 0.2s; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.nav-cta:hover { background: #e11d48; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.nav-cta:active { transform: scale(0.95); }
.mobile-menu-btn { display: none; padding: 0.5rem; color: #57534e; }

/* Mobile menu overlay */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(15,23,42,0.6); backdrop-filter: blur(8px);
}
.mobile-menu.open { display: flex; align-items: center; justify-content: center; }
.mobile-menu-inner {
  background: #fff; border-radius: 1.5rem; padding: 2rem;
  width: calc(100% - 2rem); max-width: 400px;
  display: flex; flex-direction: column; gap: 1rem; text-align: center;
}
.mobile-menu-link { padding: 1rem; font-size: 1.125rem; font-weight: 500; color: #1c1917; border-radius: 1rem; transition: background 0.2s; display: block; }
.mobile-menu-link:hover { background: #fdf2f8; }
.mobile-menu-close { position: absolute; top: 1.5rem; right: 1.5rem; padding: 0.5rem; color: #fff; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}
@media (max-width: 640px) {
  .nav-brand-text { display: none; }
}


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero { position: relative; padding: 8rem 0 5rem; overflow: hidden; }
.hero-bg {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: rgba(255,241,242,0.5);
  transform: skewX(-12deg); transform-origin: top right; z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; background: #fff1f2; color: #be123c;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 0.5rem; height: 0.5rem; background: #f43f5e;
  border-radius: 50%; animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.025em;
  color: #1c1917; margin-bottom: 1.5rem; line-height: 1.1;
}
.hero h1 span { font-weight: 500; color: #f43f5e; font-style: italic; }
.hero-desc {
  font-size: 1.25rem; color: #57534e; margin-bottom: 2.5rem;
  max-width: 32rem; line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #f43f5e; color: #fff; padding: 1rem 2rem; border-radius: 9999px;
  font-size: 1.125rem; font-weight: 500;
  transition: all 0.2s; box-shadow: 0 20px 25px -5px rgba(255,241,242,0.5);
}
.hero-cta:hover { background: #e11d48; }
.hero-cta:active { transform: scale(0.95); }
.hero-cta svg { transition: transform 0.2s; }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-secondary {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #fff; border: 1px solid #e7e5e4; color: #44403c;
  padding: 1rem 2rem; border-radius: 9999px; font-size: 1.125rem;
  font-weight: 500; font-family: 'Playfair Display', serif; transition: background 0.2s;
}
.hero-secondary:hover { background: #fafaf9; }
.hero-social-proof { display: flex; align-items: center; gap: 1.5rem; margin-top: 3rem; }
.hero-avatars { display: flex; }
.hero-avatars img {
  width: 3rem; height: 3rem; border-radius: 50%; border: 4px solid #fff;
  margin-left: -0.75rem; background: #e2e8f0; object-fit: cover;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-stars { display: flex; color: #fbbf24; margin-bottom: 0.25rem; }
.hero-social-text { font-size: 0.875rem; color: #64748b; font-weight: 500; }
.hero-image {
  position: relative; aspect-ratio: 1; border-radius: 2rem;
  overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.hero-image:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .hero { padding: 6rem 0 3rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { max-width: 400px; margin: 0 auto; }
  .hero-buttons { flex-direction: column; }
  .hero-cta, .hero-secondary { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════
   EMS KEGEL
═══════════════════════════════════════════════ */
.ems-section {
  padding: 6rem 0; background: #0c0a09; color: #fff;
  position: relative; overflow: hidden;
}
.ems-section::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(244,63,94,0.1), transparent 70%);
}
.ems-section .container { position: relative; z-index: 1; }
.ems-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.ems-header h2 {
  font-family: 'Playfair Display', serif; font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.025em; margin-bottom: 1.5rem;
}
.ems-header h2 span { font-weight: 500; color: #fb7185; font-style: italic; }
.ems-divider { width: 5rem; height: 0.25rem; background: #f43f5e; margin: 0 auto 2rem; border-radius: 9999px; }
.ems-header p { font-size: 1.25rem; color: #a8a29e; line-height: 1.7; }
.ems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 5rem; }
.ems-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.ems-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem; border-radius: 1rem; backdrop-filter: blur(4px);
}
.ems-card h4 {
  color: #fb7185; font-weight: 700; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.05em; margin-bottom: 1rem;
}
.ems-card ul { display: flex; flex-direction: column; gap: 0.75rem; }
.ems-card li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  color: #d6d3d1; font-size: 0.875rem;
}
.ems-card li svg { color: #fb7185; margin-top: 2px; flex-shrink: 0; }
.ems-steps { display: flex; flex-direction: column; gap: 1rem; }
.ems-step { display: flex; align-items: center; gap: 1rem; }
.ems-step-num {
  width: 3rem; height: 3rem; background: rgba(255,255,255,0.05);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fb7185; font-size: 0.875rem; flex-shrink: 0;
}
.ems-step h5 { font-weight: 700; margin-bottom: 0.125rem; }
.ems-step p { font-size: 0.875rem; color: #78716c; }
.ems-image-wrap { position: relative; }
.ems-image-glow {
  position: absolute; inset: -1rem; background: rgba(244,63,94,0.2);
  filter: blur(48px); opacity: 0.3; transition: opacity 0.3s; border-radius: 50%;
}
.ems-image-wrap:hover .ems-image-glow { opacity: 0.5; }
.ems-image-inner {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.ems-image-inner img { width: 100%; height: 500px; object-fit: cover; }
.ems-image-inner .ems-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #1c1917, transparent, transparent);
}
.ems-promo {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem; text-align: center;
  background: rgba(225,29,72,0.9); backdrop-filter: blur(8px);
  padding: 1.5rem; border-radius: 1rem;
}
.ems-promo p:first-child {
  font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 700; margin-bottom: 0.25rem;
}
.ems-promo p:last-child {
  font-size: 1.125rem; font-weight: 500; font-family: 'Playfair Display', serif;
}

@media (max-width: 1024px) {
  .ems-grid { grid-template-columns: 1fr; }
  .ems-image-inner img { height: 400px; }
}
@media (max-width: 640px) {
  .ems-cards { grid-template-columns: 1fr; }
  .ems-image-inner img { height: 300px; }
}


/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services-section { padding: 6rem 0; background: #fff; }
.services-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; gap: 1.5rem; }
.services-head-label {
  color: #e11d48; font-weight: 700; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.services-head h2 {
  font-family: 'Playfair Display', serif; font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.025em; color: #1c1917; line-height: 1.2;
}
.services-head h2 span { font-weight: 500; font-style: italic; color: #f43f5e; }
.payment-badge {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem; background: #fafaf9; border-radius: 1rem; border: 1px solid #f5f5f4;
}
.payment-icons { display: flex; align-items: center; gap: 0.375rem; border-right: 1px solid #e7e5e4; padding-right: 0.75rem; }
.visa-icon {
  width: 2rem; height: 1.25rem; background: #1A1F71; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 700; color: #fff; letter-spacing: 0.05em; font-style: italic;
}
.mc-circles { display: flex; margin-left: -0.25rem; }
.mc-circles span { width: 1.25rem; height: 1.25rem; border-radius: 50%; }
.mc-circles span:first-child { background: #EB001B; opacity: 0.9; }
.mc-circles span:last-child { background: #F79E1B; opacity: 0.9; margin-left: -0.25rem; }
.dina-icon {
  width: 2rem; height: 1.25rem; background: #fff; border: 1px solid #e7e5e4; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6px; font-weight: 900; color: #f43f5e; font-style: italic; text-transform: uppercase;
}
.payment-text { font-size: 0.75rem; color: #78716c; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.service-cat-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid #f5f5f4; margin-bottom: 2rem;
}
.service-cat-icon {
  width: 2.5rem; height: 2.5rem; background: #fff1f2; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center; color: #e11d48;
}
.service-cat-title {
  font-size: 1.25rem; font-weight: 700; font-family: 'Playfair Display', serif;
  color: #1c1917; letter-spacing: -0.025em;
}
.service-item { padding: 1rem; border-radius: 1rem; transition: background 0.2s; cursor: pointer; }
.service-item:hover { background: #fafaf9; }
.service-item-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.25rem; }
.service-item-name { font-weight: 500; color: #1c1917; transition: color 0.2s; }
.service-item:hover .service-item-name { color: #e11d48; }
.service-item-price { font-weight: 700; color: #1c1917; white-space: nowrap; margin-left: 1rem; }
.service-item-meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; color: #a8a29e; font-weight: 500; text-transform: uppercase; letter-spacing: -0.025em;
}
.service-popular {
  color: #f43f5e; background: #fff1f2; padding: 0.125rem 0.5rem;
  border-radius: 9999px; font-size: 10px; font-weight: 700;
}
.service-selected-badge {
  color: #059669; background: #ecfdf5; padding: 0.125rem 0.5rem;
  border-radius: 9999px; font-size: 10px; font-weight: 700;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery-section { padding: 6rem 0; background: #fafaf9; }
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-header-label {
  color: #e11d48; font-weight: 700; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.gallery-header h2 {
  font-family: 'Playfair Display', serif; font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.5rem); letter-spacing: -0.025em; color: #1c1917;
}
.gallery-header h2 span { font-weight: 500; font-style: italic; color: #f43f5e; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item {
  border-radius: 1rem; overflow: hidden; aspect-ratio: 1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: transform 0.3s;
}
.gallery-item:hover { transform: translateY(-5px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background: #0c0a09; color: #fff; padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 5rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; margin-bottom: 2rem; }
.footer-desc { color: #a8a29e; margin-bottom: 2rem; line-height: 1.7; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,0.05);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.2s;
}
.footer-social a:hover { background: #e11d48; }
.footer-col-title {
  font-weight: 700; margin-bottom: 2rem; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.05em; color: #fb7185;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; color: #d6d3d1; }
.footer-contact-item svg { color: #fb7185; margin-top: 2px; flex-shrink: 0; }
.footer-hours { display: flex; flex-direction: column; gap: 1rem; color: #d6d3d1; }
.footer-hours li { display: flex; justify-content: space-between; align-items: center; }
.footer-hours li span:last-child { font-weight: 700; color: #fff; }
.footer-hours li.closed span:last-child { color: #78716c; font-weight: 400; }
.footer-map-link {
  display: block; position: relative; border-radius: 1rem; overflow: hidden;
  height: 10rem; border: 1px solid rgba(255,255,255,0.1);
}
.footer-map-link img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
  filter: grayscale(1); transition: filter 0.3s;
}
.footer-map-link:hover img { filter: grayscale(0); }
.footer-map-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.footer-map-btn span {
  background: #e11d48; color: #fff; padding: 0.5rem 1rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center; font-size: 0.75rem; color: #78716c;
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════
   BOOKING MODAL
═══════════════════════════════════════════════ */
.booking-overlay {
  display: none; position: fixed; inset: 0; z-index: 100;
  align-items: center; justify-content: center; padding: 1rem;
}
.booking-overlay.open { display: flex; }
.booking-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,23,42,0.6); backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}
.booking-modal {
  position: relative; width: 100%; max-width: 42rem;
  background: #fff; border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  overflow: hidden; max-height: 90vh; display: flex; flex-direction: column;
  animation: fadeInUp 0.3s ease;
}
.booking-header {
  padding: 1.5rem; border-bottom: 1px solid #f5f5f4;
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; position: sticky; top: 0; z-index: 20;
}
.booking-header h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.25rem; color: #1c1917; letter-spacing: -0.025em;
}
.booking-header p { font-size: 0.875rem; color: #78716c; }
.booking-close { padding: 0.5rem; border-radius: 50%; transition: background 0.2s; color: #78716c; }
.booking-close:hover { background: #f5f5f4; }

.booking-progress { display: flex; border-bottom: 1px solid #fafaf9; }
.booking-progress-step { height: 4px; flex: 1; background: #f5f5f4; transition: background 0.5s; }
.booking-progress-step.active { background: #f43f5e; }

.booking-body { flex: 1; overflow-y: auto; padding: 2rem; }
.booking-step { display: none; animation: fadeInUp 0.4s ease; }
.booking-step.active { display: block; }
.booking-step h4 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: 1.25rem; color: #292524; margin-bottom: 1.5rem;
}
.booking-step-meta {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem;
}
.booking-step-count {
  font-size: 0.75rem; font-weight: 700; color: #a8a29e;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* Modal service cards */
.modal-service-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  border-radius: 1.25rem; border: 2px solid #f5f5f4; background: rgba(250,250,249,0.5);
  transition: all 0.2s; cursor: pointer; margin-bottom: 0.75rem;
}
.modal-service-card:hover { border-color: #ffe4e6; transform: scale(1.01); }
.modal-service-card:active { transform: scale(0.99); }
.modal-service-card.selected { border-color: #f43f5e; background: rgba(255,241,242,0.5); }
.modal-service-icon {
  width: 3rem; height: 3rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.modal-service-card:not(.selected) .modal-service-icon { background: #fff; color: #d6d3d1; }
.modal-service-card:not(.selected):hover .modal-service-icon { color: #fda4af; }
.modal-service-card.selected .modal-service-icon { background: #f43f5e; color: #fff; }
.modal-service-info { flex: 1; }
.modal-service-name { font-weight: 700; color: #1c1917; transition: color 0.2s; }
.modal-service-card:not(.selected):hover .modal-service-name { color: #881337; }
.modal-service-detail {
  font-size: 0.75rem; font-weight: 500; color: #a8a29e;
  text-transform: uppercase; letter-spacing: -0.025em;
}
.modal-service-price { font-weight: 700; font-size: 1.125rem; color: #1c1917; white-space: nowrap; }
.modal-service-card.selected .modal-service-price { color: #e11d48; }
.modal-service-remove { padding: 0.5rem; border-radius: 50%; color: #fb7185; transition: background 0.2s; margin-left: 0.5rem; }
.modal-service-remove:hover { background: #ffe4e6; }

/* Add more */
.add-more-btn {
  width: 100%; padding: 1.25rem; border: 2px dashed #e7e5e4;
  border-radius: 1rem; color: #a8a29e; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.2s; margin-top: 0.75rem;
}
.add-more-btn:hover { border-color: #fda4af; color: #fb7185; background: rgba(255,241,242,0.1); }
.add-more-btn:hover svg { transform: rotate(90deg); }
.add-more-btn svg { transition: transform 0.3s; }
.add-more-section { border-top: 1px solid #f5f5f4; padding-top: 1.5rem; margin-top: 1.5rem; animation: slideDown 0.3s ease; overflow: hidden; }
.add-more-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.add-more-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #a8a29e; }
.add-more-close { font-size: 0.75rem; font-weight: 700; color: #f43f5e; cursor: pointer; background: none; border: none; }
.add-more-close:hover { text-decoration: underline; }

/* Form inputs */
.form-label {
  display: block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: #a8a29e;
  margin-bottom: 0.75rem; margin-left: 0.25rem;
}
.form-input-wrap { position: relative; margin-bottom: 2rem; }
.form-input-wrap svg {
  position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%);
  color: #a8a29e; transition: color 0.2s; pointer-events: none;
}
.form-input-wrap:focus-within svg { color: #f43f5e; }
.form-input {
  width: 100%; padding: 1rem 1.5rem 1rem 3.5rem;
  background: #fafaf9; border: 1px solid #f5f5f4; border-radius: 1rem;
  outline: none; color: #44403c; font-weight: 500; font-size: 1rem; transition: all 0.2s;
}
.form-input:focus {
  box-shadow: 0 0 0 4px rgba(244,63,94,0.1);
  border-color: #f43f5e; background: #fff;
}
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.time-btn {
  padding: 1rem; border-radius: 1rem; border: 2px solid #fafaf9;
  background: #fafaf9; color: #57534e; font-size: 0.875rem; font-weight: 700; transition: all 0.2s;
}
.time-btn:hover { border-color: #ffe4e6; background: #fff; color: #e11d48; }
.time-btn.selected {
  border-color: #f43f5e; background: #f43f5e; color: #fff;
  box-shadow: 0 20px 25px -5px rgba(255,241,242,0.5); transform: scale(1.02);
}

@media (max-width: 480px) { .time-grid { grid-template-columns: repeat(3, 1fr); } }

/* Booking summary */
.booking-summary {
  padding: 1.25rem; background: rgba(255,241,242,0.5); border-radius: 1rem;
  border: 1px solid rgba(255,241,242,0.5); margin-top: 2rem;
}
.booking-summary-label {
  font-size: 0.75rem; color: rgba(190,18,60,0.6); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem;
}
.booking-summary-row { display: flex; justify-content: space-between; align-items: baseline; }
.booking-summary-count { color: #57534e; font-weight: 500; }
.booking-summary-total { font-size: 1.25rem; font-weight: 700; color: #e11d48; }

/* Success */
.success-step {
  text-align: center; padding: 3rem 1.5rem; display: flex;
  flex-direction: column; align-items: center; justify-content: center; min-height: 400px;
}
.success-icon-wrap { position: relative; margin-bottom: 2rem; }
.success-icon {
  width: 6rem; height: 6rem; background: #f43f5e; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(253,164,175,0.5);
  position: relative; z-index: 1; animation: springPop 0.6s ease;
}
.success-icon-ring {
  position: absolute; inset: 0; background: #f43f5e; border-radius: 50%;
  animation: pulseRing 2s ease infinite;
}
.success-step h4 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.875rem; color: #1c1917; margin-bottom: 1rem; letter-spacing: -0.025em;
}
.success-step p { color: #57534e; max-width: 20rem; line-height: 1.7; margin-bottom: 2.5rem; }
.success-step p span { font-weight: 700; color: #e11d48; }
.success-progress { width: 100%; height: 6px; background: #f5f5f4; border-radius: 9999px; overflow: hidden; margin-bottom: 2rem; }
.success-progress-bar { height: 100%; background: #f43f5e; animation: progressBar 1.5s ease forwards; }
.success-redirect { font-size: 0.75rem; font-weight: 700; color: #a8a29e; text-transform: uppercase; letter-spacing: 0.05em; animation: pulse 2s infinite; }

/* Booking footer */
.booking-footer {
  padding: 1.5rem; border-top: 1px solid #f5f5f4;
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; position: sticky; bottom: 0; z-index: 20;
}
.booking-back { padding: 0.625rem 1.5rem; color: #57534e; font-weight: 700; transition: color 0.2s; }
.booking-back:hover { color: #1c1917; }
.booking-footer-right { display: flex; align-items: center; gap: 1.5rem; }
.booking-footer-total { text-align: right; }
.booking-footer-total-label { font-size: 10px; text-transform: uppercase; font-weight: 700; color: #a8a29e; letter-spacing: 0.05em; }
.booking-footer-total-value { font-weight: 700; color: #1c1917; }
.booking-next {
  background: #f43f5e; color: #fff; padding: 0.75rem 2rem;
  border-radius: 9999px; font-weight: 700; transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(255,241,242,0.3);
}
.booking-next:hover { background: #e11d48; }
.booking-next:active { transform: scale(0.95); }

@media (max-width: 640px) { .booking-footer-total { display: none; } }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-section { padding: 6rem 0; background: #fff; }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header-label {
  color: #e11d48; font-weight: 700; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.faq-header h2 {
  font-family: 'Playfair Display', serif; font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.025em; color: #1c1917;
}
.faq-header h2 span { font-weight: 500; font-style: italic; color: #f43f5e; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 48rem; margin: 0 auto; }
.faq-item {
  border: 1px solid #f5f5f4; border-radius: 1rem;
  background: #fafaf9; overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover { border-color: #ffe4e6; }
.faq-item.open { border-color: #f43f5e; }
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: #1c1917;
  background: none; border: none; cursor: pointer; text-align: left;
}
.faq-question:hover { color: #e11d48; }
.faq-question svg { transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { color: #57534e; line-height: 1.7; }

/* ─── INLINE SVG ICONS ─────────────────────────── */
svg.icon { display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
svg.icon-sm  { width: 16px; height: 16px; }
svg.icon-md  { width: 20px; height: 20px; }
svg.icon-lg  { width: 24px; height: 24px; }
svg.icon-xl  { width: 48px; height: 48px; }
