/* ═══════════════════════════════════════════════
   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 { display: flex; align-items: center; }
.nav-brand-img { height: 2rem; width: auto; display: block; border-radius: 0.25rem; }
.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: #48162e; }
.nav-cta {
  background: #902d5d; 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: #7a2450; 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: rgba(144,45,93,0.06); }
.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-img { height: 1.5rem; }
}


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero { position: relative; padding: 8rem 0 5rem; overflow: hidden; }
.hero-bg {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: rgba(144,45,93,0.08);
  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: rgba(144,45,93,0.12); color: #902d5d;
  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: #902d5d;
  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: #48162e; 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: #902d5d; 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(144,45,93,0.08);
}
.hero-cta:hover { background: #7a2450; }
.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(144,45,93,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: #902d5d; font-style: italic; }
.ems-divider { width: 5rem; height: 0.25rem; background: #902d5d; 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: #902d5d; 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: #902d5d; 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: #902d5d; 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(144,45,93,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(144,45,93,0.92); 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: #902d5d; 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: #48162e; }
.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: #48162e; 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: rgba(144,45,93,0.12); border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center; color: #902d5d;
}
.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: #48162e; }
.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: #902d5d; background: rgba(144,45,93,0.12); 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: #902d5d; 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: #48162e; }
.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 { margin-bottom: 2rem; }
.footer-brand-img { height: 2.5rem; width: auto; display: block; border-radius: 0.25rem; }
.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: #902d5d; }
.footer-col-title {
  font-weight: 700; margin-bottom: 2rem; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.05em; color: #902d5d;
}
.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: #902d5d; 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: #902d5d; 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: #902d5d; }

.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: rgba(144,45,93,0.12); transform: scale(1.01); }
.modal-service-card:active { transform: scale(0.99); }
.modal-service-card.selected { border-color: #902d5d; background: rgba(144,45,93,0.08); }
.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: rgba(144,45,93,0.12); }
.modal-service-card.selected .modal-service-icon { background: #902d5d; 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: #48162e; }
.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: #902d5d; }
.modal-service-remove { padding: 0.5rem; border-radius: 50%; color: #902d5d; transition: background 0.2s; margin-left: 0.5rem; }
.modal-service-remove:hover { background: rgba(144,45,93,0.12); }

/* 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: rgba(144,45,93,0.12); color: #902d5d; background: rgba(144,45,93,0.05); }
.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: #902d5d; 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: #902d5d; }
.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(144,45,93,0.1);
  border-color: #902d5d; 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: rgba(144,45,93,0.12); background: #fff; color: #902d5d; }
.time-btn.selected {
  border-color: #902d5d; background: #902d5d; color: #fff;
  box-shadow: 0 20px 25px -5px rgba(144,45,93,0.08); 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(144,45,93,0.08); border-radius: 1rem;
  border: 1px solid rgba(144,45,93,0.08); margin-top: 2rem;
}
.booking-summary-label {
  font-size: 0.75rem; color: rgba(144,45,93,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: #902d5d; }

/* 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: #902d5d; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(144,45,93,0.2);
  position: relative; z-index: 1; animation: springPop 0.6s ease;
}
.success-icon-ring {
  position: absolute; inset: 0; background: #902d5d; 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: #902d5d; }
.success-progress { width: 100%; height: 6px; background: #f5f5f4; border-radius: 9999px; overflow: hidden; margin-bottom: 2rem; }
.success-progress-bar { height: 100%; background: #902d5d; 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: #902d5d; color: #fff; padding: 0.75rem 2rem;
  border-radius: 9999px; font-weight: 700; transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(144,45,93,0.12);
}
.booking-next:hover { background: #7a2450; }
.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: #902d5d; 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: #48162e; }
.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: rgba(144,45,93,0.12); }
.faq-item.open { border-color: #902d5d; }
.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: #48162e; }
.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: 560px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { color: #57534e; line-height: 1.7; }
.faq-answer a { color: #902d5d; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.faq-answer a:hover { color: #7a2450; }

/* ─── 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; }

/* ═══════════════════════════════════════════════
   KVANTNA CTA, EMS promo bonus, logo link, podstranice
═══════════════════════════════════════════════ */
.nav-brand-link { display: inline-block; line-height: 0; }
.ems-promo-bonus {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.22);
  font-size: 0.875rem;
  line-height: 1.55;
  font-weight: 400;
}
.ems-promo-bonus strong { color: #fff; }

.kvantna-cta-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(144,45,93,0.08) 0%, #fff 50%, rgba(72,22,46,0.06) 100%);
  border-top: 1px solid #f5f5f4;
  border-bottom: 1px solid #f5f5f4;
}
.kvantna-cta-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.kvantna-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 300;
  color: #1c1917; letter-spacing: -0.025em; margin-bottom: 0.75rem; line-height: 1.2;
}
.kvantna-cta-desc { color: #57534e; max-width: 36rem; font-size: 1.0625rem; line-height: 1.65; }
.kvantna-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

@media (max-width: 768px) {
  .kvantna-cta-actions { width: 100%; flex-direction: column; }
  .kvantna-cta-actions .hero-cta, .kvantna-cta-actions .hero-secondary { width: 100%; justify-content: center; text-align: center; }
}

.subpage-main { padding-top: 6rem; padding-bottom: 4rem; }
.subpage-hero {
  padding: 7.5rem 0 3rem;
  background: #fafaf9;
  border-bottom: 1px solid #f5f5f4;
}
@media (max-width: 768px) {
  .subpage-hero {
    padding: 6.5rem 0 2.5rem;
  }
}
.subpage-hero-inner { max-width: 42rem; }
/* breadcrumbs (SEO / navigacija iznad hero sadržaja) */
.subpage-breadcrumb {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
}
.subpage-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.subpage-breadcrumb li {
  display: inline-flex;
  align-items: center;
}
.subpage-breadcrumb li + li::before {
  content: '–';
  display: inline-block;
  padding: 0 0.45rem;
  color: #d6d3d1;
  font-weight: 400;
}
.subpage-breadcrumb a {
  color: #78716c;
  text-decoration: none;
  transition: color 0.2s;
}
.subpage-breadcrumb a:hover { color: #902d5d; }
.subpage-breadcrumb a[aria-current='page'] {
  color: #48162e;
  font-weight: 600;
  pointer-events: none;
  cursor: default;
}
.subpage-hero-inner h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1c1917;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.subpage-hero-lead { font-size: 1.2rem; color: #57534e; line-height: 1.7; margin-bottom: 1.25rem; }
.subpage-promo-card {
  background: rgba(144,45,93,0.1);
  border: 1px solid rgba(144,45,93,0.15);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: #44403c;
  margin-top: 1rem;
}

.content-block { padding: 4rem 0; background: #fff; }
.content-block.alt { background: #fafaf9; }
.section-kicker {
  color: #902d5d;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.quantum-points { display: flex; flex-direction: column; gap: 2rem; max-width: 52rem; }
.quantum-point { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.quantum-point-num {
  width: 2.5rem; height: 2.5rem;
  background: rgba(144,45,93,0.12);
  color: #902d5d;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.quantum-point h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #1c1917; margin-bottom: 0.375rem; }
.quantum-point p { color: #57534e; font-size: 0.9625rem; line-height: 1.68; }

.why-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.why-card {
  padding: 1.5rem; background: #fff; border-radius: 1rem;
  border: 1px solid #f5f5f4;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.why-card p { font-size: 0.9rem; color: #57534e; line-height: 1.65; margin: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.subpage-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.subpage-gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: 1rem; box-shadow: 0 10px 25px -12px rgba(0,0,0,0.12); }
@media (max-width: 768px) { .subpage-gallery { grid-template-columns: 1fr; } .subpage-gallery img { height: 220px; } }

.preso-benefits { display: grid; gap: 1rem; margin-top: 2rem; }
.preso-benefit {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid #f5f5f4;
  border-radius: 1rem;
  border-left: 4px solid #902d5d;
}
.preso-benefit h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: #902d5d; margin-bottom: 0.375rem; }
.preso-benefit p { color: #44403c; font-size: 0.9625rem; line-height: 1.68; margin: 0; }

.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.tagline-strong {
  margin-top: 2.5rem; text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #48162e;
}
