/* ============================================================
   Modern Waves Bath Solution — Custom Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:  #0F172A;
  --secondary:#111827;
  --accent:   #D4AF37;
  --accent-light: #e8c84e;
  --light:    #F8F8F8;
  --text:     #1F2937;
  --white:    #FFFFFF;
  --border:   rgba(212,175,55,0.25);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
.font-heading { font-family: 'Playfair Display', serif; }
.font-body    { font-family: 'Inter', sans-serif; }

/* ── Gold Accent Line ── */
.accent-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 12px 0 20px;
}
.accent-line-center {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 12px auto 20px;
}

/* ── Image / Video Placeholders ── */
.image-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #1a2744 0%, #0F172A 50%, #1e2d3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(212,175,55,0.04) 0px,
    rgba(212,175,55,0.04) 1px,
    transparent 1px,
    transparent 20px
  );
}
.image-placeholder::after {
  content: attr(data-label);
  color: rgba(212,175,55,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.video-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #0a0f1a 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-placeholder::after {
  content: '▶  Replace Video Here';
  color: rgba(212,175,55,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

/* ── Navigation ── */
#navbar {
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(15,23,42,0.97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--accent); }
.nav-link.active::after { width: 100%; }

/* Mega Menu */
.mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.mega-trigger:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-trigger { position: relative; }

/* Mobile Menu */
#mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
#mobile-menu.open { transform: translateX(0); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* ── Section Labels ── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Cards ── */
.product-card {
  background: var(--white);
  border: 1px solid rgba(31,41,55,0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}
.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(212,175,55,0.12), 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.product-card:hover .product-img-overlay { opacity: 1; }
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,175,55,0.08);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.category-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.3) 60%, transparent 100%);
  transition: background 0.4s;
}
.category-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(15,23,42,0.97) 0%, rgba(15,23,42,0.5) 70%, rgba(212,175,55,0.1) 100%);
}
.category-card .cat-btn {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.category-card:hover .cat-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero ── */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050d1a 0%, #0F172A 40%, #0d1b30 100%);
  z-index: 0;
}
.hero-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 50%, rgba(212,175,55,0.06) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      rgba(212,175,55,0.025) 0px, rgba(212,175,55,0.025) 1px,
      transparent 1px, transparent 40px
    );
}
.hero-placeholder::after {
  content: 'Replace Hero Video / Image';
  position: absolute;
  bottom: 24px; right: 24px;
  color: rgba(212,175,55,0.3);
  font-size: 0.6875rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Wellness Dark Section ── */
.wellness-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d1520 100%);
  position: relative;
  overflow: hidden;
}
.wellness-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212,175,55,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Gallery ── */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(15,23,42,0.7);
}
.gallery-item .gallery-icon {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  color: var(--accent);
  font-size: 2rem;
}
.gallery-item:hover .gallery-icon {
  opacity: 1;
  transform: scale(1);
}

/* ── Testimonial ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.15);
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(212,175,55,0.1);
}
.testimonial-card .quote-icon {
  color: var(--accent);
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 1rem;
  opacity: 0.4;
}

/* ── Footer ── */
.footer-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color 0.3s;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.footer-link:hover { color: var(--accent); }

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered delays */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }
.delay-600 { transition-delay: 0.6s !important; }

/* ── Number Counter ── */
.counter-num { font-family: 'Playfair Display', serif; }

/* ── Form ── */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  padding: 14px 18px;
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input-light {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(31,41,55,0.15);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  padding: 14px 18px;
  transition: border-color 0.3s;
  outline: none;
}
.form-input-light:focus { border-color: var(--accent); }
select.form-input-light { appearance: none; cursor: pointer; }

/* ── Trust Badge ── */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
}
.trust-badge .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.625rem;
}

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.6); font-size: 0.8125rem; text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.35); font-size: 0.8125rem; }
.breadcrumb .current { color: var(--accent); font-size: 0.8125rem; }

/* ── Map Placeholder ── */
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #0a0f1a, #0F172A);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg, rgba(212,175,55,0.04) 0px, rgba(212,175,55,0.04) 1px,
    transparent 1px, transparent 60px
  ), repeating-linear-gradient(
    0deg, rgba(212,175,55,0.04) 0px, rgba(212,175,55,0.04) 1px,
    transparent 1px, transparent 60px
  );
}
.map-placeholder::after {
  content: '📍  Google Map — Replace Here';
  color: rgba(212,175,55,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

/* ── Utility ── */
.text-accent  { color: var(--accent) !important; }
.bg-primary   { background: var(--primary) !important; }
.bg-secondary { background: var(--secondary) !important; }
.border-accent{ border-color: var(--accent) !important; }

/* ── Icon circle ── */
.icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.icon-circle:hover,
.why-item:hover .icon-circle {
  background: var(--accent);
  border-color: var(--accent);
}
.icon-circle svg { width: 28px; height: 28px; color: var(--accent); transition: color 0.3s; }
.icon-circle:hover svg,
.why-item:hover .icon-circle svg { color: var(--primary); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ── Progress Bar (page load) ── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 9999;
  transition: width 0.3s ease;
}

/* ── Smooth line dividers ── */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

/* ── Media queries ── */
@media (max-width: 768px) {
  .hero-section { min-height: 100svh; }
  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 0.75rem; }
}
