/**
 * SPA LOCATION - Luxury Wellness Design System
 * Modern, clean, mobile-first responsive styling
 */

:root {
  --primary: #064e3b;       /* Deep Emerald */
  --primary-hover: #047857; /* Rich Emerald */
  --primary-light: #ecfdf5; /* Mint Ice */
  --accent: #d97706;        /* Warm Gold */
  --accent-light: #fef3c7;  /* Soft Amber */
  --dark: #0f172a;          /* Slate 900 */
  --muted: #64748b;         /* Slate 500 */
  --surface: #ffffff;
  --bg: #f8fafc;
  --border: #e2e8f0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1e293b;
  background-color: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, .font-serif-title {
  font-family: 'Outfit', 'Playfair Display', -apple-system, sans-serif;
  letter-spacing: -0.02em;
}

/* Glassmorphism Header */
.glass-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Luxury Card Shadow & Hover */
.spa-card {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #e2e8f0;
}
.spa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(6, 78, 59, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

/* Badge Styles */
.badge-featured {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.badge-verified {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

/* Hero Background Pattern */
.hero-pattern {
  background-color: #064e3b;
  background-image: radial-gradient(circle at top right, rgba(16, 185, 129, 0.15), transparent 50%),
                    radial-gradient(circle at bottom left, rgba(217, 119, 6, 0.12), transparent 45%);
}

/* Modal Backdrop */
.modal-backdrop {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Shimmer Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Sticky Enquiry Bar for Mobile */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

/* Lightbox Image Container */
.lightbox-img-wrap {
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-height: 75vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 8px;
}

/* Facility Pill */
.facility-pill {
  transition: all 0.2s ease;
}
.facility-pill:hover {
  background-color: #f0fdf4;
  border-color: #86efac;
  color: #166534;
}

/* Star Rating */
.star-filled { color: #f59e0b; }
.star-empty { color: #d1d5db; }

/* Responsive Floating Icon Adjustments & Collision Prevention */
@media (max-width: 1023px) {
  body:has(.mobile-sticky-bar) #global-floating-whatsapp,
  .has-mobile-bar #global-floating-whatsapp {
    display: none !important;
  }
}

