body.theme-elegant {
  --pm-primary: var(--color-blue-500);
  --pm-primary-dark: var(--color-blue-600);
  --pm-bg: var(--color-slate-900);
  --pm-surface: var(--color-slate-800);
  --pm-card: var(--color-slate-800);
  --pm-border: rgba(255, 255, 255, 0.08);
  --pm-muted: var(--color-slate-400);
  --pm-text: var(--color-slate-50);
  --pm-r: 3px;
  --pm-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  --pm-blue: var(--color-blue-500);
  --pm-indigo: var(--color-indigo-500);
  --pm-glass: rgba(30, 41, 59, 0.7);
  --pm-glass-border: rgba(255, 255, 255, 0.08);
  --color-bg-body: var(--pm-bg);
  --color-bg-card: var(--pm-card);
  --color-text-main: var(--pm-text);
  --color-border: var(--pm-border);
  --color-primary: var(--pm-primary);
  --booking-bg: var(--pm-bg);
  --booking-card-bg: var(--pm-card);
  --booking-text-dark: var(--pm-text);
  --booking-text-muted: var(--pm-muted);
  --booking-border: var(--pm-border);
  --booking-primary: var(--pm-primary);
  --booking-primary-light: rgba(59, 130, 246, 0.1);
  --booking-radius: 3px;
  --booking-shadow: var(--pm-shadow);
}
body.theme-elegant h1,
body.theme-elegant h2,
body.theme-elegant h3,
body.theme-elegant h4,
body.theme-elegant h5,
body.theme-elegant h6 {
  color: var(--color-white);
  font-family: var(--font-heading, inherit);
}
[contenteditable="true"]:focus {
  outline: 0;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 2px;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
[contenteditable="true"]:hover {
  cursor: text;
  background: rgba(255, 255, 255, 0.03);
}
.pm-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
}
.pm-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pm-hero:hover .pm-hero-img {
  transform: translateY(-2px);
}
.pm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.4) 0,
    rgba(15, 23, 42, 0.8) 100%
  );
  z-index: 2;
}
.pm-hero-content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  text-align: left;
  width: 100%;
}
.pm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-white);
}
.pm-live-dot {
  width: 8px;
  height: 8px;
  background: var(--color-emerald-500);
  position: relative;
}
.pm-live-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--color-emerald-500);
  animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
  0% {
    opacity: 1;
    transform: translateY(0);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-10px);
    opacity: 0;
  }
}
.pm-hero-float {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-top: 2px solid rgba(59, 130, 246, 0.4);
  padding: 20px 30px;
  border-radius: 3px;
  margin-top: 50px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(59, 130, 246, 0.08);
  gap: 20px;
}
.pm-hero-float .pm-btn-icon {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25);
  color: var(--color-blue-300);
}
.pm-hero-float .pm-btn-icon:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
.pm-hero-float .pm-btn-icon.is-favorite {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: var(--color-red-400);
}
.pm-hero-float .pm-btn-icon.is-contact {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--color-blue-400);
}
@media (max-width: 768px) {
  .pm-hero {
    height: auto;
    min-height: 100svh;
    padding: 100px 0 60px;
  }
  .pm-hero-float {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    margin-top: 30px;
    gap: 15px;
    border-radius: 3px;
  }
}
.pm-stats {
  display: flex;
  gap: 0;
  background: var(--pm-card);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-r);
  overflow: hidden;
  margin-bottom: 48px;
}
.pm-stat {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--pm-border);
  transition: background 0.3s;
  min-width: 0;
}
@media (max-width: 575px) {
  .pm-stats {
    flex-wrap: wrap;
  }
  .pm-stat {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--pm-border);
    padding: 20px 8px;
  }
  .pm-stat:nth-child(odd) {
    border-right: 1px solid var(--pm-border);
  }
  .pm-stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}
.pm-stat:last-child {
  border-right: none;
}
.pm-stat:hover {
  background: rgba(59, 130, 246, 0.05);
}
.pm-stat-val {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--pm-blue);
  line-height: 1.5;
}
.pm-stat-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pm-muted);
  margin-top: 8px;
  font-weight: 800;
}
.pm-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--pm-shadow);
}
.pm-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-3px);
}
.pm-section-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--pm-blue);
  font-weight: 800;
  margin-bottom: 12px;
  display: block;
  opacity: 0.9;
}
.pm-service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.pm-service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--pm-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pm-service-row:hover {
  background: rgba(59, 130, 246, 0.06) !important;
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateX(4px);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}
.pm-service-row:hover::before {
  opacity: 1;
}
.pm-service-name {
  font-weight: 700;
  color: var(--color-white);
  font-size: 0.93rem;
  text-decoration: none;
  display: block;
}
.pm-service-name:hover {
  color: var(--color-blue-300);
}
.pm-service-dur {
  font-size: 0.78rem;
  color: var(--pm-muted);
  margin-top: 2px;
}
.pm-service-price {
  font-weight: 800;
  color: var(--color-blue-400);
  font-size: 0.95rem;
  white-space: nowrap;
}
.pm-service-desc {
  font-size: 0.8rem;
  color: var(--pm-muted);
  margin-top: 6px;
  line-height: 1.6;
  opacity: 0.85;
  overflow-wrap: anywhere;
}
.pm-service-detail-link {
  font-size: 0.72rem;
  color: var(--pm-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.pm-service-detail-link:hover {
  opacity: 1;
  color: var(--color-blue-300);
}
.pm-cat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 800;
  color: var(--color-white);
  padding: 32px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  opacity: 0.85;
}
.pm-review {
  padding: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--pm-border);
  border-radius: 3px;
  margin-bottom: 12px;
  transition: all 0.25s ease;
}
.pm-review:hover {
  border-color: rgba(59, 130, 246, 0.2);
}
.pm-review-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--pm-blue), var(--pm-indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-white);
  flex-shrink: 0;
}
.pm-review-text {
  font-size: 0.88rem;
  color: var(--pm-muted);
  font-style: italic;
  line-height: 1.65;
  margin-top: 8px;
}
.load-more-btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: 0 0;
  border: 1px solid var(--pm-border);
  border-radius: 3px;
  color: var(--pm-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 12px;
  text-align: center;
}
.load-more-btn:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--color-blue-300);
}
.pm-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.875rem;
}
.pm-hours-row.is-today {
  background: rgba(59, 130, 246, 0.05);
  border-radius: 3px;
  padding-left: 8px;
  padding-right: 8px;
}
.pm-hours-row.is-today .pm-day {
  color: var(--color-blue-300);
  font-weight: 700;
}
.pm-team-card {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-r);
  transition: all 0.3s ease;
}
.pm-team-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}
.pm-team-avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 2px solid var(--pm-border);
  display: block;
  transition: border-color 0.3s;
}
.pm-team-card:hover .pm-team-avatar {
  border-color: var(--pm-blue);
}
.pm-btn-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--pm-border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pm-text);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.pm-btn-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: var(--color-white);
}
.pm-btn-icon.is-favorite {
  color: var(--color-red-500);
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}
.pm-btn-book {
  background: linear-gradient(135deg, var(--pm-blue), var(--pm-indigo));
  color: var(--color-white);
  border: none;
  padding: 11px 24px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.pm-btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.45);
  color: var(--color-white);
}
.pm-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pm-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--pm-border);
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pm-muted);
  text-decoration: none;
  transition: all 0.25s ease;
}
.pm-social-link:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25);
  color: var(--color-blue-300);
}
.pm-map {
  height: 220px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.pm-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(100%) hue-rotate(180deg) brightness(1.1) contrast(0.85);
}
.pm-float-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2070 !important;
  width: calc(100% - 40px);
  max-width: 400px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.pm-float-cta.hidden {
  display: none !important;
}
@media (max-width: 991px) {
  .pm-float-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid rgba(59, 130, 246, 0.4);
    padding: 14px;
    border-radius: 3px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    color: var(--color-white);
    font-weight: 700;
    gap: 8px;
  }
}
.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal-up.active {
  opacity: 1;
  transform: none;
}
.pm-showcase-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 3px 3px 0 0;
  filter: brightness(0.75);
}
.pm-showcase-card {
  background: var(--pm-card);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-r);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
.pm-showcase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}
.services-nav-premium {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  gap: 16px;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(16px);
  padding: 16px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .services-nav-premium {
    flex-direction: column;
    align-items: stretch;
    background: 0 0;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}
.search-container-premium {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .search-container-premium {
    width: 100%;
    margin-bottom: 12px;
  }
}
.search-input-premium {
  width: 100%;
  height: 48px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 0 16px 0 46px;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.search-input-premium:focus {
  background: rgba(15, 23, 42, 0.8);
  border-color: var(--pm-blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
  outline: 0;
}
.search-icon-premium {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pm-muted);
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.3s ease;
}
.search-input-premium:focus + .search-icon-premium {
  color: var(--pm-blue);
}
.categories-wrapper-premium {
  width: 100%;
  overflow: hidden;
}
.categories-inner-premium {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
}
.categories-inner-premium::-webkit-scrollbar {
  display: none;
}
.nav-link-pill {
  white-space: nowrap;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  color: var(--pm-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.nav-link-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}
.nav-link-pill.active {
  background: var(--pm-blue);
  color: var(--color-white) !important;
  border-color: var(--pm-blue);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
.pm-btn-icon.is-contact {
  color: var(--pm-blue);
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}
.pm-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  z-index: 99999 !important;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  touch-action: none;
}
.pm-lightbox.active {
  display: flex;
  opacity: 1;
}
.pm-lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pm-lb-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pm-lightbox.active .pm-lb-img {
  opacity: 1;
  transform: translateY(0);
}
.pm-lb-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: 0 0;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}
.pm-lb-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.pm-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}
.pm-lb-nav:hover {
  background: var(--pm-blue);
  border-color: var(--pm-blue);
}
.pm-lb-prev {
  left: -70px;
}
.pm-lb-next {
  right: -70px;
}
@media (max-width: 991px) {
  .pm-lb-prev {
    left: 10px;
  }
  .pm-lb-next {
    right: 10px;
  }
  .pm-lb-nav {
    background: rgba(0, 0, 0, 0.3);
  }
}
.pm-lb-caption {
  color: var(--color-white);
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
}
.pm-gallery-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 3px;
  background: var(--pm-surface);
}
.pm-gallery-item:hover img {
  transform: translateY(-4px) !important;
}
