/* ===================================
   KOKO BEAUTY - MAIN STYLESHEET
   =================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy: #bde8ff;
  --navy-mid: #a3dcff;
  --navy-deep: #8ad0ff;
  --gold: #8f6f2d;
  --gold-light: #a3813c;
  --gold-pale: #bda061;
  --white: #ffffff;
  --cream: #e8f2fa;
  --text-dark: #1a3a5c;
  --text-light: rgba(26, 58, 92, 0.85);
  --text-muted: rgba(26, 58, 92, 0.55);
  --border-gold: rgba(143, 111, 45, 0.35);
  --border-gold-bright: rgba(143, 111, 45, 0.7);
  --border-blue: rgba(138, 208, 255, 0.5);
  --font-display: 'Cinzel', serif;
  --font-body: 'Jost', sans-serif;
  --font-script: 'Cormorant Garamond', serif;
  --header-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  line-height: 1.6;
  position: relative;
}
body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- LOADING SCREEN ---------- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, #e8f7ff 50%, var(--navy) 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-logo-text {
  font-family: var(--font-script);
  font-size: 80px;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 2px;
  animation: pulse-gold 1.5s ease-in-out infinite;
}
.loading-tagline {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--text-muted);
  margin-top: -20px;
}
.loading-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  animation: premium-shimmer-glow 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 0 1px rgba(143, 111, 45, 0.2));
}
.loading-bar {
  width: 200px;
  height: 1px;
  background: rgba(143,111,45,0.2);
  border-radius: 1px;
}
.loading-bar-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  animation: loadBar 1.8s ease forwards;
  border-radius: 1px;
}
@keyframes loadBar { to { width: 100%; } }
@keyframes premium-shimmer-glow {
  0% {
    opacity: 0.45;
    transform: scale(0.98);
    filter: drop-shadow(0 0 2px rgba(143, 111, 45, 0.15));
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
    filter: drop-shadow(0 0 18px rgba(143, 111, 45, 0.55)) brightness(1.06);
  }
  100% {
    opacity: 0.45;
    transform: scale(0.98);
    filter: drop-shadow(0 0 2px rgba(143, 111, 45, 0.15));
  }
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(189, 232, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(163, 220, 255, 0.98);
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 38px;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 1px;
}
.logo-sub {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--text-muted);
  margin-top: -4px;
}
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform var(--transition);
}
.header-logo:hover .logo-img {
  transform: scale(1.05);
}

/* NAV */
.gnav { margin-left: auto; }
.gnav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gnav-link {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: 2px;
  transition: color var(--transition);
  position: relative;
}
.gnav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.gnav-link:hover::after,
.gnav-link.active::after { transform: scaleX(1); }
.gnav-link:hover, .gnav-link.active { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(189, 232, 255, 0.98);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(16px);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 10;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-dark);
  transition: color var(--transition), background var(--transition);
  border-bottom: 1px solid rgba(143,111,45,0.1);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--gold); background: rgba(143,111,45,0.07); }
.dropdown-category {
  padding: 10px 18px 5px;
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(143,111,45,0.15);
  pointer-events: none;
}
.dropdown-category:not(:first-child) {
  margin-top: 4px;
  border-top: 1px solid rgba(143,111,45,0.15);
  padding-top: 12px;
}
.arrow { font-size: 10px; margin-left: 2px; }

/* HEADER RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--gold);
  white-space: nowrap;
}
.header-social { display: flex; align-items: center; gap: 8px; }
.social-icon { color: var(--text-muted); transition: color var(--transition); }
.social-icon:hover { color: var(--gold); }

/* BOOK NOW BUTTON */
.btn-book-now {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-book-now:hover {
  background: var(--gold);
  color: var(--white);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(189, 232, 255, 0.99);
  border-top: 1px solid var(--border-gold);
  padding: 32px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-nav-menu { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-menu li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-gold);
  transition: color var(--transition);
}
.mobile-nav-menu li a:hover { color: var(--gold); }
.mobile-book { margin-top: 24px; display: inline-flex; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  animation: slowZoom 8s ease-in-out infinite alternate;
}
.hero-slide.active {
  opacity: 1;
}
@keyframes slowZoom {
  from { transform: scale(1.0); }
  to { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 208, 255, 0.88) 0%,
    rgba(163, 220, 255, 0.60) 50%,
    rgba(189, 232, 255, 0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 40px) 80px 80px;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 2.2s forwards;
}
.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 2.4s forwards;
}
.title-white {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-dark);
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(255,255,255,0.4);
}
.title-gold {
  font-family: var(--font-script);
  font-size: clamp(28px, 3.5vw, 50px);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1.3;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.8s ease 2.5s forwards;
}
.hero-divider span {
  flex: 1;
  height: 1px;
  background: var(--border-gold-bright);
  max-width: 80px;
}
.hero-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 2.6s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 2.8s forwards;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  transition: all var(--transition);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(143,111,45,0.3);
}
.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  transition: all var(--transition);
}
.btn-secondary-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* SCROLL INDICATOR */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 3px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease 3s forwards;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1px solid var(--border-gold-bright);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollWheel 1.8s ease infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* SLIDESHOW DOTS */
.slideshow-dots {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---------- SERVICES STRIP ---------- */
.services-strip {
  background: var(--white);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 0;
}
.services-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  display: block;
  position: relative;
  height: 380px;
  border-right: 1px solid var(--border-gold);
  overflow: hidden;
  transition: transform var(--transition);
}
.service-card:last-child { border-right: none; }
.service-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,25,47,0.92) 15%, rgba(10,25,47,0.4) 60%, rgba(10,25,47,0.1) 100%);
  z-index: 2;
  transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(10,25,47,0.96) 20%, rgba(10,25,47,0.55) 65%, rgba(10,25,47,0.2) 100%);
}
.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 40px 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.svc-icon {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  margin-bottom: 12px;
}
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.service-card-body p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 16px;
}
.learn-more {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  transition: letter-spacing var(--transition);
}
.service-card:hover .learn-more { letter-spacing: 2.5px; }

/* ---------- OUR WORK ---------- */
.our-work {
  display: flex;
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}
.our-work-left {
  padding: 60px 48px;
  flex-shrink: 0;
  width: 280px;
  border-right: 1px solid var(--border-gold);
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow svg { stroke: var(--gold); }
.our-work-left h2 {
  font-family: var(--font-script);
  font-size: 28px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 24px;
}
.our-work-gallery {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 220px;
}
.work-gallery-track {
  display: flex;
  gap: 8px;
  height: 100%;
  transition: transform 0.5s ease;
}
.work-img {
  flex-shrink: 0;
  width: 300px;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-img:hover img { transform: scale(1.06); }
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}
.gallery-arrow:hover {
  background: var(--gold);
  color: var(--white);
}
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }

/* ---------- BOTTOM STRIP ---------- */
.bottom-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border-gold);
  background: var(--white);
}

/* TESTIMONIALS */
.testimonials {
  padding: 48px 40px;
  border-right: 1px solid var(--border-gold);
  position: relative;
}
.section-eyebrow-small {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.stars {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-slider { position: relative; min-height: 130px; }
.testimonial-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.testimonial-slide blockquote {
  font-family: var(--font-script);
  font-size: 16px;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}
.testimonial-slide cite {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
}
.testimonial-dots { display: flex; gap: 8px; margin-top: 16px; }

/* BOOK CTA */
.book-cta {
  padding: 48px 32px;
  border-right: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.book-cta-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}
.book-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  margin-bottom: 16px;
  width: 100%;
}
.book-divider span {
  flex: 1;
  height: 1px;
  background: var(--border-gold-bright);
}
.book-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.book-phone:hover { color: var(--gold); }
.book-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.book-email:hover { color: var(--gold); }

/* FEATURES */
.features-grid {
  padding: 48px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.feature-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
}
.feature-item svg[fill="currentColor"] { fill: var(--gold); stroke: none; }
.feature-item span {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
.feature-social {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border-gold);
  padding-top: 16px;
}
.feature-social p {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.feature-social-links { display: flex; gap: 12px; }
.feature-social-links a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.feature-social-links a:hover { color: var(--gold); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-gold);
  color: var(--text-dark);
}
.footer-tagline {
  text-align: center;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.footer-center { text-align: center; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gold border ornament on cards */
.gold-card {
  border: 1px solid var(--border-gold);
  position: relative;
}
.gold-card::before, .gold-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold);
  border-style: solid;
}
.gold-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.gold-card::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* Glitter particles */
.glitter-particle {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9998;
  animation: glitterFall 1.5s ease-out forwards;
}
@keyframes glitterFall {
  0% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
  100% { opacity: 0; transform: translateY(60px) scale(0) rotate(180deg); }
}

/* ================================================
   SERVICES PAGE
   ================================================ */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--header-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(138, 208, 255, 0.92) 40%, rgba(163, 220, 255, 0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  max-width: 600px;
}
.page-hero-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.page-hero-title-italic {
  font-family: var(--font-script);
  font-size: clamp(24px, 3vw, 42px);
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.fancy-cursive {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--gold);
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  letter-spacing: 0px;
  text-transform: none;
}
.page-hero-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Services grid */
.services-page-section {
  padding: 80px 60px;
  background: var(--navy);
  max-width: 1440px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-detail-card {
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  background: rgba(255,255,255,0.5);
  position: relative;
}
.service-detail-card::before, .service-detail-card::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 1;
  transition: width var(--transition), height var(--transition);
}
.service-detail-card::before { top: 0; left: 0; border-width: 2px 0 0 2px; }
.service-detail-card::after { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.service-detail-card:hover::before,
.service-detail-card:hover::after { width: 30px; height: 30px; }
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(143,111,45,0.3);
}
.service-detail-img {
  height: 220px;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-detail-card:hover .service-detail-img img { transform: scale(1.05); }
.service-detail-body {
  padding: 28px;
}
.service-detail-icon {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  margin-bottom: 12px;
}
.service-detail-body h3 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-detail-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-detail-body .btn-primary {
  font-size: 9px;
  padding: 10px 20px;
}

/* ──── Services Showcase Grid (4-card layout) ──── */
.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-showcase-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.service-showcase-card::before, .service-showcase-card::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 1;
  transition: width var(--transition), height var(--transition);
}
.service-showcase-card::before { top: 0; left: 0; border-width: 2px 0 0 2px; }
.service-showcase-card::after { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.service-showcase-card:hover::before,
.service-showcase-card:hover::after { width: 30px; height: 30px; }
.service-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 0 1px rgba(143,111,45,0.3);
}
.showcase-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.showcase-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.service-showcase-card:hover .showcase-card-img img {
  transform: scale(1.06);
}
.showcase-card-body {
  padding: 28px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.showcase-card-body h3 {
  font-family: var(--font-script);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.showcase-card-body p {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--text-muted);
  flex: 1;
}
.showcase-card-divider {
  margin: 24px 0;
  border: none;
  border-top: 1px solid var(--border-gold);
}
.showcase-card-body .btn-primary {
  font-size: 9px;
  padding: 10px 20px;
  align-self: flex-start;
}

/* ──── Treatment Menu Download Banner ──── */
.treatment-menu-banner {
  background: var(--cream);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 48px 60px;
}
.treatment-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.treatment-menu-inner svg {
  stroke: var(--gold);
  flex-shrink: 0;
}
.treatment-menu-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 4px;
}
.treatment-menu-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.treatment-menu-inner .btn-outline {
  margin-left: auto;
  flex-shrink: 0;
}

/* ──── Bridal & Event Glam Feature Section ──── */
.bridal-feature-section {
  padding: 100px 60px;
  background: var(--white);
}
.bridal-feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: var(--navy);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  position: relative;
}
.bridal-feature-img {
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.bridal-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.bridal-feature-inner:hover .bridal-feature-img img {
  transform: scale(1.04);
}
.bridal-feature-body {
  padding: 60px 60px 60px 0;
  display: flex;
  flex-direction: column;
}
.bridal-feature-body h2 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin: 12px 0 6px;
  text-transform: uppercase;
}
.bridal-feature-body .section-eyebrow {
  color: var(--gold);
}
.bridal-feature-body .section-eyebrow svg {
  stroke: var(--gold);
}
.bridal-feature-body p {
  color: var(--text-light) !important;
}
.bridal-feature-body .btn-primary {
  align-self: flex-start;
  margin-top: 12px;
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.bridal-feature-body .btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

/* Why Choose Section */
.why-section {
  background: var(--cream);
  padding: 80px 60px;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.why-inner { max-width: 1440px; margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--border-gold);
  transition: all var(--transition);
}
.why-item:hover { background: rgba(255,255,255,0.6); border-color: rgba(143,111,45,0.6); }
.why-icon { width: 36px; height: 36px; stroke: var(--gold); fill: none; }
.why-item h4 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
}
.why-item p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* FAQ */
.faq-section {
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
}
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-plus {
  font-size: 20px;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 18px; }
.faq-answer p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border: 1px solid var(--border-gold);
  padding: 60px;
  text-align: center;
  margin: 0 60px 80px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(143,111,45,0.2);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 32px);
  letter-spacing: 3px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.cta-banner p {
  font-family: var(--font-script);
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
}
.cta-banner .btn-primary {
  font-size: 11px;
  padding: 14px 32px;
}

/* Section title */
.section-title-block { text-align: center; }
.section-title-block .section-eyebrow { justify-content: center; margin-bottom: 12px; }
.section-title-block h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  letter-spacing: 3px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.section-title-block .gold-italic {
  font-family: var(--font-script);
  font-size: clamp(18px, 2vw, 28px);
  font-style: italic;
  color: var(--gold);
  display: block;
}
.section-title-block p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 550px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ================================================
   GALLERY PAGE
   ================================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 40px 40px 0;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 20px;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.gallery-grid-section {
  padding: 40px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-img-item {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  cursor: pointer;
}
.gallery-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-img-item:hover img { transform: scale(1.08); }
.gallery-sidebar { display: flex; flex-direction: column; gap: 24px; }

/* Sidebar review */
.sidebar-reviews {
  border: 1px solid var(--border-gold);
  padding: 28px;
}
.sidebar-reviews-title {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-stars { font-size: 16px; color: var(--gold); margin-bottom: 14px; }
.sidebar-review-text {
  font-family: var(--font-script);
  font-size: 15px;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}
.sidebar-review-author {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--gold);
}
.sidebar-dots { display: flex; gap: 6px; margin-top: 14px; }

/* Sidebar social */
.sidebar-social { border: 1px solid var(--border-gold); padding: 28px; }
.sidebar-social-title {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-handle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.sidebar-img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.sidebar-img-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ================================================
   PRICING PAGE
   ================================================ */
.pricing-section {
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  border: 1px solid var(--border-gold);
  padding: 40px 32px;
  background: rgba(255,255,255,0.5);
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(143,111,45,0.15) 0%, rgba(255,255,255,0.5) 60%);
  border-color: var(--gold);
}
.pricing-card.featured .featured-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 4px 12px;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.pricing-card-title {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 6px;
}
.pricing-card-icon {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  margin-bottom: 16px;
}
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(143,111,45,0.15);
  font-size: 12px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row .svc-name { color: var(--text-light); }
.pricing-row .svc-price { color: var(--gold); font-family: var(--font-display); font-size: 11px; }
.pricing-card-footer { margin-top: 24px; }

/* ================================================
   BOOKING PAGE
   ================================================ */
.booking-section {
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
}
.booking-info h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.booking-info .gold-italic {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(16px, 2vw, 24px);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}
.booking-info .eyebrow {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}
.booking-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-gold);
  padding: 14px 18px;
  margin-bottom: 12px;
  transition: all var(--transition);
}
.booking-contact-item:hover { background: rgba(143,111,45,0.06); border-color: var(--gold); }
.booking-contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }
.booking-contact-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 2px;
}
.booking-contact-value { font-size: 13px; color: var(--text-light); }
.booking-contact-sub { font-size: 10px; color: var(--text-muted); }

/* Booking form */
.booking-form-card {
  border: 1px solid var(--border-gold);
  padding: 48px;
  background: rgba(255,255,255,0.5);
  position: relative;
}
.booking-form-title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border-gold);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--white); color: var(--text-dark); }
.form-group textarea { height: 110px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--gold);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.form-note {
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 12px;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

/* Business hours */
.hours-faq-section {
  padding: 60px;
  background: var(--cream);
  border-top: 1px solid var(--border-gold);
}
.hours-faq-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.hours-card, .faq-booking-card {
  border: 1px solid var(--border-gold);
  padding: 32px;
}
.hours-card h3, .faq-booking-card h3 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hours-card h3 svg, .faq-booking-card h3 svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(143,111,45,0.12);
  font-size: 12px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--text-dark); }
.hours-note { font-size: 11px; color: var(--text-muted); margin-top: 14px; font-style: italic; }
.trust-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.trust-icon-item svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; }
.trust-icon-item span {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* WhatsApp CTA */
.whatsapp-cta {
  border: 1px solid var(--border-gold);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(143,111,45,0.04);
}
.whatsapp-icon {
  width: 56px;
  height: 56px;
  background: rgba(189,232,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-icon svg { width: 28px; height: 28px; fill: none; stroke: #bde8ff; stroke-width: 1.5; }
.whatsapp-info .quick-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}
.whatsapp-info .whatsapp-title { font-size: 12px; color: var(--text-light); margin-bottom: 4px; }
.whatsapp-info .whatsapp-number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.whatsapp-info .whatsapp-sub { font-size: 10px; color: var(--text-muted); }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section {
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
}
.contact-form-card {
  border: 1px solid var(--border-gold);
  padding: 48px;
  background: rgba(255,255,255,0.5);
}
.contact-form-title {
  font-family: var(--font-script);
  font-size: 36px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-form-subtitle {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 32px;
}

/* Map placeholder */
.map-placeholder {
  background: linear-gradient(135deg, var(--cream), var(--navy-mid));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  min-height: 300px;
}
.map-placeholder-inner svg { width: 48px; height: 48px; stroke: var(--gold); fill: none; margin-bottom: 16px; }
.map-placeholder-inner h3 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.map-placeholder-inner p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ABOUT PAGE */
.about-hero-section {
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 3px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.about-text .gold-italic {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(20px, 2.5vw, 34px);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
}
.about-text p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-img-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 480px;
}
.about-img-collage .img-tall {
  grid-row: 1 / 3;
}
.about-img-collage > div {
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.about-img-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-collage > div:hover img { transform: scale(1.05); }

/* Stats */
.stats-section {
  background: var(--cream);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 60px;
}
.stats-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 32px;
  border-right: 1px solid var(--border-gold);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-script);
  font-size: 56px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-section { grid-template-columns: 1fr; }
  .hours-faq-inner { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .about-hero-section { grid-template-columns: 1fr; }
  .bottom-strip { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
  :root { --header-h: 70px; }
  .gnav { display: none; }
  .header-phone { display: none; }
  .header-social { display: none; }
  .btn-book-now:not(.mobile-book) { display: none; }
  .hamburger { display: flex; }
  .services-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .our-work { flex-direction: column; }
  .our-work-left { width: 100%; border-right: none; border-bottom: 1px solid var(--border-gold); padding: 40px; }
  .our-work-gallery { width: 100%; height: 200px; }
  .gallery-grid-section { grid-template-columns: 1fr; }
  .gallery-sidebar { display: none; }
  .hero-content { padding: calc(var(--header-h) + 40px) 40px 60px; }
  .page-hero-content { padding: 60px 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .bridal-feature-section { padding: 60px 40px; }
  .bridal-feature-inner { grid-template-columns: 1fr; gap: 0; }
  .bridal-feature-img { height: 380px; }
  .bridal-feature-body { padding: 40px; text-align: center; }
  .bridal-feature-body .btn-primary { align-self: center; }
}

@media (max-width: 768px) {
  .services-strip-inner { grid-template-columns: 1fr; }
  .services-showcase-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border-gold); }
  .bottom-strip { grid-template-columns: 1fr; }
  .testimonials, .book-cta { border-right: none; border-bottom: 1px solid var(--border-gold); }
  .hero-content { padding: calc(var(--header-h) + 20px) 20px 40px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary-outline { text-align: center; justify-content: center; width: 100%; }
  .services-page-section, .faq-section, .pricing-section, .booking-section, .contact-section,
  .about-hero-section, .cta-banner, .stats-section, .why-section, .hours-faq-section { padding: 40px 20px; }
  .treatment-menu-banner { padding: 32px 20px; }
  .treatment-menu-inner { flex-direction: column; text-align: center; }
  .treatment-menu-inner .btn-outline { margin-left: 0; }
  .cta-banner { margin: 0 16px 40px; }
  .hours-faq-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-card { padding: 24px 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  /* Single column gallery on small screens */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; flex-wrap: wrap; align-items: center; }
  .footer-right { display: none; }
  .footer-tiktok, .footer-facebook { display: block; }
  .bridal-feature-section { padding: 40px 16px; }
  .bridal-feature-img { height: 260px; }
  .bridal-feature-body { padding: 28px 16px; }
  .bridal-feature-body h2 { font-size: 24px; }
  /* Stack why grid to single column on mobile */
  .why-grid { grid-template-columns: 1fr !important; gap: 16px; }
  /* Features grid single col */
  .features-grid { grid-template-columns: 1fr 1fr; padding: 28px 20px; }
  /* Page hero padding reduction */
  .page-hero-content { padding: 40px 20px; }
  /* Booking contact info */
  .booking-contacts { gap: 12px; }
  /* About collage stack */
  .about-img-collage { height: auto; grid-template-columns: 1fr; grid-template-rows: auto; }
  .about-img-collage .img-tall { grid-row: auto; }
  .about-img-collage > div { height: 220px; }
  /* Prevent section inner padding from overflowing */
  .services-page-section,
  .faq-section,
  .gallery-grid-section { padding: 28px 16px; }
  /* Stats single number per row on very small */
  .stat-number { font-size: 40px; }
}

/* ---- Extra small phones (< 480px) ---- */
@media (max-width: 480px) {
  :root { --header-h: 60px; }
  /* Hero */
  .hero { min-height: 480px; }
  .hero-content { padding: calc(var(--header-h) + 16px) 16px 32px; }
  .title-white { font-size: 28px; letter-spacing: 2px; }
  .title-gold { font-size: 22px; }
  /* Services strip single col */
  .services-strip-inner { grid-template-columns: 1fr; }
  .service-card { height: 300px; }
  /* Why grid always 1 col */
  .why-grid { grid-template-columns: 1fr !important; }
  /* Bottom strip */
  .bottom-strip { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px 16px; }
  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 36px; }
  .stat-item { padding: 20px 12px; }
  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  /* Pricing */
  .pricing-card { padding: 28px 18px; }
  /* Footer */
  .footer-bottom { padding: 14px 16px; gap: 8px; }
  .footer-tiktok a, .footer-facebook a { font-size: 11px; }
  /* Booking form */
  .booking-form-card { padding: 20px 14px; }
  /* Contact */
  .contact-form-card { padding: 24px 16px; }
  /* About collage */
  .about-img-collage > div { height: 180px; }
  /* Page hero */
  .page-hero { min-height: 280px; }
  .page-hero-content { padding: 32px 16px; }
  .page-hero-title { font-size: 22px; letter-spacing: 2px; }
  /* CTA banner */
  .cta-banner { padding: 40px 20px; margin: 0 10px 32px; }
  /* FAQ */
  .faq-question { font-size: 11px; letter-spacing: 1px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ==========================================================================
   LUXURY STYLE UPDATE - GOLD FRAMING & PREMIUM DESIGN SYSTEM
   ========================================================================== */

/* --- Elevated Navigation Bar --- */
.header {
  position: fixed;
  top: 16px;
  left: 40px;
  right: 40px;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(244, 249, 253, 0.94); /* Soft powder tint, semi-transparent */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold-bright) !important; /* Full elegant gold border around the header */
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(26, 58, 92, 0.04);
  transition: all var(--transition);
}

.header.scrolled {
  top: 10px;
  left: 20px;
  right: 20px;
  background: rgba(230, 243, 252, 0.98);
  box-shadow: 0 12px 40px rgba(26, 58, 92, 0.08);
  border-color: var(--gold) !important;
}

/* Ensure mobile nav sits correctly with the floating header */
.mobile-nav {
  top: calc(var(--header-h) + 16px);
  left: 40px;
  right: 40px;
  border: 1px solid var(--border-gold-bright) !important;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(26, 58, 92, 0.06);
}

.header.scrolled .mobile-nav {
  top: calc(var(--header-h) + 10px);
  left: 20px;
  right: 20px;
}

/* --- Framed Layout for Main Sections --- */
.services-strip,
.our-work,
.bottom-strip,
.services-page-section,
.why-section,
.faq-section,
.gallery-grid-section,
.pricing-section,
.booking-section,
.hours-faq-section,
.contact-section,
.about-hero-section,
.stats-section {
  border: 1px solid var(--border-gold-bright) !important;
  max-width: 1360px;
  margin: 60px auto !important;
  border-radius: 6px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26, 58, 92, 0.03);
  box-sizing: border-box;
  transition: all var(--transition);
}

/* Keep the hero framed and elevated */
.hero {
  border: 1px solid var(--border-gold-bright) !important;
  max-width: 1360px;
  margin: 116px auto 40px !important; /* Inset from floating header */
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 58, 92, 0.06);
}

/* Adjust colors of specific section backgrounds inside the frames */
.services-page-section {
  background: var(--white) !important;
}
.why-section {
  background: var(--cream) !important;
}
.hours-faq-section {
  background: var(--cream) !important;
  border: none !important; /* Parent container handles the border */
}
.stats-section {
  background: var(--cream) !important;
  border: none !important; /* Parent container handles the border */
}

/* --- Service Card Inset Gold Frame --- */
.service-card {
  border-right: 1px solid var(--border-gold-bright) !important;
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(143, 111, 45, 0.3);
  pointer-events: none;
  z-index: 4;
  transition: all var(--transition);
}
.service-card:hover::after {
  inset: 12px;
  border-color: var(--gold);
  border-width: 1.5px;
  box-shadow: 0 0 10px rgba(143, 111, 45, 0.15);
}

/* --- Image Containers Refined Framing --- */
.work-img,
.gallery-img-item,
.about-img-collage > div,
.service-detail-img,
.showcase-card-img {
  border: 1px solid var(--border-gold-bright) !important;
  position: relative;
  overflow: hidden;
}

/* Subtle inset frame for gallery items */
.gallery-img-item {
  border-radius: 4px;
}

/* --- Refined Button Styling --- */
.btn-primary {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  box-shadow: none !important;
  font-weight: 500 !important;
}
.btn-primary:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(143, 111, 45, 0.2) !important;
}

.btn-secondary-outline {
  border-color: var(--border-gold-bright) !important;
  color: var(--text-dark) !important;
}
.btn-secondary-outline:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(143, 111, 45, 0.03) !important;
  transform: translateY(-2px) !important;
}

.btn-outline {
  border-color: var(--border-gold-bright) !important;
}
.btn-outline:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}

.btn-book-now {
  border-color: var(--border-gold-bright) !important;
}
.btn-book-now:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}

/* --- Refined Nav Link Hover & Active --- */
.gnav-link {
  transition: all var(--transition);
}
.gnav-link:hover, .gnav-link.active {
  color: var(--gold) !important;
}

/* --- Smooth Typography Transitions & Spacing --- */
main {
  padding-bottom: 40px;
}

/* --- Responsive Adaptations --- */
@media (max-width: 1400px) {
  .header {
    left: 20px;
    right: 20px;
    top: 12px;
  }
  .mobile-nav {
    left: 20px;
    right: 20px;
  }
  .hero {
    margin-top: 108px !important;
  }
  .hero,
  .services-strip,
  .our-work,
  .bottom-strip,
  .services-page-section,
  .why-section,
  .faq-section,
  .gallery-grid-section,
  .pricing-section,
  .booking-section,
  .hours-faq-section,
  .contact-section,
  .about-hero-section,
  .stats-section {
    margin: 30px 24px !important;
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 992px) {
  .hero {
    margin-top: 98px !important;
  }
}

@media (max-width: 768px) {
  .header {
    left: 10px;
    right: 10px;
    top: 8px;
  }
  .mobile-nav {
    left: 10px;
    right: 10px;
    top: calc(var(--header-h) + 8px);
  }
  .hero {
    margin-top: 84px !important;
  }
  .hero,
  .services-strip,
  .our-work,
  .bottom-strip,
  .services-page-section,
  .why-section,
  .faq-section,
  .gallery-grid-section,
  .pricing-section,
  .booking-section,
  .hours-faq-section,
  .contact-section,
  .about-hero-section,
  .stats-section {
    margin: 14px 10px !important;
    max-width: calc(100% - 20px);
  }
}

@media (max-width: 480px) {
  .header {
    left: 8px;
    right: 8px;
    top: 6px;
    height: 56px;
  }
  .mobile-nav {
    left: 8px;
    right: 8px;
    top: calc(60px + 8px);
  }
  .logo-img { height: 44px; }
  .hero {
    margin-top: 76px !important;
  }
  .hero,
  .services-strip,
  .our-work,
  .bottom-strip,
  .services-page-section,
  .why-section,
  .faq-section,
  .gallery-grid-section,
  .pricing-section,
  .booking-section,
  .hours-faq-section,
  .contact-section,
  .about-hero-section,
  .stats-section {
    margin: 10px 8px !important;
    max-width: calc(100% - 16px);
    border-radius: 4px;
  }
}

/* ==========================================================================
   CUSTOM FLOATING WHATSAPP BUTTON (LUXURY THEMED)
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--navy); /* Powder blue from theme variables */
  border: 1.5px solid var(--gold); /* Champagne gold border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(143, 111, 45, 0.25), inset 0 0 10px rgba(255, 255, 255, 0.5); /* Glowing shadow */
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--gold); /* Gold icon */
}

.whatsapp-float-btn:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 12px 30px rgba(143, 111, 45, 0.45), inset 0 0 15px rgba(255, 255, 255, 0.7);
  background-color: var(--navy-mid);
}

.whatsapp-float-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  transition: transform 0.35s ease;
}

.whatsapp-float-btn:hover .whatsapp-float-icon {
  transform: rotate(10deg);
}

/* Mobile responsiveness for floating button */
@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float-icon {
    width: 24px;
    height: 24px;
  }
}
