/* ============================================
   UNIQUE FASHION ZONE SPA — style.css
   ============================================ */

:root {
  --gold:    #2E9166;
  --gold-lt: #8ECFAC;
  --dark:    #0B1810;
  --dark2:   #152A1D;
  --cream:   #F0F8F3;
  --warm:    #E2EEE7;
  --text:    #243831;
  --muted:   #527063;
  --white:   #FFFFFF;
  --radius:  12px;
  --trans:   all 0.35s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Georgia, 'Times New Roman', serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: Georgia, serif; line-height: 1.2; }
em { font-style: italic; color: var(--gold); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--white);
  padding: 13px 30px; border-radius: 50px; font-size: 0.9rem;
  font-family: Georgia, serif; border: none; cursor: pointer;
  transition: var(--trans); letter-spacing: 0.03em;
}
.btn-primary:hover { background: var(--dark2); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; border: 2px solid rgba(255,255,255,0.7); color: var(--white);
  padding: 12px 30px; border-radius: 50px; font-size: 0.9rem;
  font-family: Georgia, serif; transition: var(--trans);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 55px; }
.section-tag {
  display: block; font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
  font-family: Georgia, serif;
}
.section-header h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal       { transform: translateY(35px); }
.reveal-left  { transform: translateX(-35px); }
.reveal-right { transform: translateX(35px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}

/* ============================================
   LOADER
   ============================================ */
#loader {
  position: fixed; inset: 0; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.lotus-img {
  display: block; width: 110px; height: auto; margin: 0 auto 18px;
  background: var(--cream); border-radius: 16px; padding: 12px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.3);
  animation: flipLogo 3s ease-in-out infinite;
  transform-style: preserve-3d;
}
.loader-inner p {
  color: var(--gold-lt); font-size: 1.1rem; letter-spacing: 0.15em;
  animation: fade 1.5s ease-in-out infinite;
}
@keyframes flipLogo {
  0%, 10%      { transform: perspective(600px) rotateY(0deg); }
  40%, 60%     { transform: perspective(600px) rotateY(180deg); }
  90%, 100%    { transform: perspective(600px) rotateY(360deg); }
}
@keyframes fade { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px; z-index: 1000; transition: var(--trans);
}
#navbar.scrolled {
  background: rgba(11,24,16,0.95); padding: 12px 40px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.25);
}
.nav-logo { font-size: 1.2rem; color: var(--gold-lt); font-weight: bold; letter-spacing: 0.04em; display: flex; align-items: center; gap: 8px; }
.nav-logo-img {
  height: 40px; width: auto; object-fit: contain; flex-shrink: 0;
  background: var(--cream); border-radius: 10px; padding: 5px 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-book {
  font-size: 0.8rem; color: var(--gold); border: 1px solid var(--gold);
  padding: 7px 18px; border-radius: 50px; transition: var(--trans);
}
.nav-book:hover { background: var(--gold); color: var(--white); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold-lt); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 270px; height: 100vh;
  background: var(--dark); z-index: 999;
  transition: right 0.4s ease; padding: 80px 36px 36px;
}
.mobile-menu.open { right: 0; }
.mobile-menu ul li { margin-bottom: 22px; }
.mobile-menu ul a { font-size: 1.4rem; color: var(--gold-lt); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('main.jpg');
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(11,40,24,0.72) 0%, rgba(11,24,16,0.65) 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,24,16,0.7) 0%, rgba(11,24,16,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 0 56px; }
.hero-tag {
  display: block; font-size: 0.72rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem); color: var(--white);
  font-weight: 300; margin-bottom: 20px; line-height: 1.08;
}
.hero-content h1 em { color: var(--gold-lt); }
.hero-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.72);
  line-height: 1.75; max-width: 480px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-ind { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-ind span {
  display: block; width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0;transform:scaleY(0.4);} 50%{opacity:1;transform:scaleY(1);} }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
  background: var(--dark2); overflow: hidden; padding: 16px 0;
  border-top: 1px solid rgba(46,145,102,0.18);
  border-bottom: 1px solid rgba(46,145,102,0.18);
}
.marquee-track {
  display: flex; gap: 36px; white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-lt); flex-shrink: 0;
}
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--warm); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrap { position: relative; height: 500px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 78%; height: 83%;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 48%; height: 44%;
  border-radius: var(--radius); overflow: hidden;
  border: 4px solid var(--cream); box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge {
  position: absolute; top: 48%; left: 62%; transform: translate(-50%,-50%);
  background: var(--gold); color: var(--white); width: 76px; height: 76px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 0.88rem; font-weight: bold; line-height: 1.3;
  box-shadow: 0 4px 18px rgba(46,145,102,0.45);
}
.about-text h2 { font-size: 2.6rem; margin-bottom: 22px; }
.about-text p { font-size: 0.93rem; line-height: 1.8; color: var(--muted); margin-bottom: 18px; }
.about-stats {
  display: flex; gap: 36px; margin-top: 36px; padding-top: 36px;
  border-top: 1px solid rgba(46,145,102,0.3);
}
.stat { text-align: center; }
.stat-row { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num { font-size: 2.8rem; color: var(--gold); font-weight: bold; line-height: 1; }
.stat-suf { font-size: 1.8rem; color: var(--gold); font-weight: bold; }
.stat p { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

/* ============================================
   LUXURY
   ============================================ */
.luxury { background: var(--dark); }
.luxury .section-tag, .luxury em { color: var(--gold); }
.luxury .section-header h2 { color: var(--white); }
.luxury-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.luxury-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(46,145,102,0.2);
  border-radius: var(--radius); overflow: hidden;
  text-align: center; transition: var(--trans);
}
.luxury-card:hover {
  background: rgba(46,145,102,0.09);
  border-color: var(--gold); transform: translateY(-5px);
}
.lux-img-wrap { width: 100%; height: 280px; overflow: hidden; background: #13261b; }
.lux-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s ease; }
.lux-img-wrap.full-img img { object-fit: contain; object-position: center center; }
.luxury-card:hover .lux-img-wrap img { transform: scale(1.05); }
.lux-body { padding: 26px 28px 28px; }
.luxury-card h3 { font-size: 1.5rem; color: var(--gold-lt); margin-bottom: 12px; }
.luxury-card p { color: rgba(255,255,255,0.58); font-size: 0.88rem; line-height: 1.7; margin-bottom: 22px; }
.lux-prices { display: flex; flex-direction: column; gap: 7px; }
.lux-prices span { font-size: 0.84rem; color: rgba(255,255,255,0.48); }
.lux-prices b { color: var(--gold); font-weight: 500; }
.lux-book-btn {
  display: inline-block; margin-top: 20px;
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 9px 26px; border-radius: 50px;
  font-size: 0.8rem; font-family: Georgia, serif; cursor: pointer;
  letter-spacing: 0.06em; transition: var(--trans);
}
.lux-book-btn:hover { background: var(--gold); color: var(--white); }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--cream); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 45px; }
.tab {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: none; border: 1px solid #d8d0c5; color: var(--muted);
  padding: 9px 22px; border-radius: 50px; cursor: pointer; transition: var(--trans);
  font-family: Georgia, serif;
}
.tab:hover, .tab.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07); transition: var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.11); }
.service-card.hidden { display: none; }
.svc-thumb {
  height: 200px; overflow: hidden; background: var(--dark2);
}
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s ease; }
.service-card:hover .svc-thumb img { transform: scale(1.06); }
.svc-thumb.full-img { background: #1a2e23; }
.svc-thumb.full-img img { object-fit: contain; object-position: center center; }
.service-card:hover .svc-thumb.full-img img { transform: scale(1.03); }
.svc-body { padding: 22px; }
.stag {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(46,145,102,0.1); padding: 3px 10px;
  border-radius: 50px; margin-bottom: 8px;
}
.svc-body h4 { font-size: 1.3rem; color: var(--dark); margin-bottom: 8px; }
.svc-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.svc-prices {
  display: flex; flex-wrap: wrap; gap: 7px;
  border-top: 1px solid #ede8e0; padding-top: 14px;
}
.svc-prices div {
  display: flex; flex-direction: column;
  background: var(--warm); border-radius: 7px;
  padding: 7px 12px; flex: 1; min-width: 65px; text-align: center;
}
.svc-prices span { font-size: 0.67rem; color: var(--muted); margin-bottom: 2px; }
.svc-prices b { font-size: 0.82rem; color: var(--dark); font-weight: bold; }
.wax-grid { grid-template-columns: repeat(3,1fr); display: grid; }
.svc-book-btn {
  display: block; width: 100%; margin-top: 14px;
  background: var(--gold); color: var(--white);
  border: none; padding: 10px 0; border-radius: 8px;
  font-size: 0.82rem; font-family: Georgia, serif; cursor: pointer;
  letter-spacing: 0.06em; transition: var(--trans);
}
.svc-book-btn:hover { background: var(--dark2); transform: translateY(-1px); }

/* ============================================
   PACKAGES
   ============================================ */
.packages { background: var(--warm); }
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: start; }
.pkg-card {
  background: var(--white); border-radius: var(--radius);
  padding: 38px 28px; position: relative;
  border: 2px solid transparent; transition: var(--trans);
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
}
.pkg-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.pkg-card.featured {
  background: var(--dark); border-color: var(--gold);
  transform: scale(1.03);
}
.pkg-card.featured:hover { transform: scale(1.03) translateY(-5px); }
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; white-space: nowrap;
}
.pkg-card h3 { font-size: 1.6rem; color: var(--dark); margin-bottom: 7px; line-height: 1.2; }
.pkg-card.featured h3 { color: var(--gold-lt); }
.pkg-dur { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 14px; }
.pkg-card.featured .pkg-dur { color: rgba(255,255,255,0.45); }
.pkg-price { font-size: 2rem; color: var(--gold); font-weight: bold; margin-bottom: 22px; }
.pkg-card ul { margin-bottom: 28px; }
.pkg-card ul li {
  font-size: 0.88rem; color: var(--muted); padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex; align-items: center; gap: 9px;
}
.pkg-card ul li::before { content: '✓'; color: var(--gold); font-weight: bold; }
.pkg-card.featured ul li { color: rgba(255,255,255,0.68); border-bottom-color: rgba(255,255,255,0.07); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--dark); }
.testimonials .section-tag { color: var(--gold); }
.testimonials .section-header h2 { color: var(--white); }
.testi-wrapper { overflow: hidden; }
.testi-track {
  display: flex; gap: 24px;
  transition: transform 0.5s ease;
}
.testi-card {
  min-width: calc(50% - 12px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(46,145,102,0.18);
  border-radius: var(--radius); padding: 36px;
}
.stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 18px; letter-spacing: 4px; }
.testi-card p {
  color: rgba(255,255,255,0.68); font-size: 0.92rem;
  line-height: 1.8; margin-bottom: 22px; font-style: italic;
}
.testi-author { font-size: 0.83rem; color: rgba(255,255,255,0.38); }
.testi-author span { color: var(--gold); font-weight: bold; }
.testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 28px;
}
.testi-btn {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(46,145,102,0.3);
  color: var(--gold); width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; transition: var(--trans);
}
.testi-btn:hover { background: var(--gold); color: var(--white); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer; transition: var(--trans);
}
.testi-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}
.gal-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gal-item:hover img { transform: scale(1.07); }
.gal-item:first-child { grid-row: span 1; }
.gal-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px 13px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  color: #fff; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-family: Georgia, serif;
  transform: translateY(101%); transition: transform 0.35s ease;
}
.gal-item:hover .gal-label { transform: translateY(0); }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--warm); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info { padding-top: 8px; }
.info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.info-item > span { font-size: 1.3rem; }
.info-item h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dark); margin-bottom: 3px; }
.info-item p { font-size: 0.88rem; color: var(--muted); }
.info-email-link { color: var(--gold); text-decoration: none; transition: var(--trans); }
.info-email-link:hover { color: var(--dark); text-decoration: underline; }
.socials { display: flex; gap: 12px; margin-top: 28px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(46,145,102,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: bold; color: var(--gold);
  transition: var(--trans);
}
.socials a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.socials a svg { width: 18px; height: 18px; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  font-family: Georgia, serif; font-size: 0.88rem; color: var(--text);
  background: var(--white); border: 1px solid #ddd4c5;
  border-radius: 9px; padding: 13px 16px; width: 100%;
  transition: border-color 0.3s; outline: none;
}
.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.form-success {
  display: none; color: #4a7a4a; font-size: 0.88rem; text-align: center;
  padding: 11px; background: rgba(74,122,74,0.1); border-radius: 8px;
}

/* ── MAP ── */
.map-wrap {
  margin-top: 50px; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 6px 28px rgba(0,0,0,0.12);
  border: 1px solid rgba(46,145,102,0.22);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark); padding: 56px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 44px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(46,145,102,0.14);
}
.footer-brand h3 { font-size: 1.3rem; color: var(--gold-lt); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-logo-img {
  height: 36px; width: auto; object-fit: contain; flex-shrink: 0;
  background: var(--cream); border-radius: 9px; padding: 4px 7px;
}
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.38); line-height: 1.7; }
.footer-grid h4 {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-list li {
  font-size: 0.86rem; color: rgba(255,255,255,0.38); margin-bottom: 9px;
  transition: color 0.3s;
}
.footer-list a { color: rgba(255,255,255,0.38); transition: color 0.3s; }
.footer-list a:hover, .footer-list li:hover { color: var(--gold-lt); }
.footer-bottom { text-align: center; padding-top: 26px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.22); }

.footer-social-row { display: flex; gap: 10px; margin-top: 20px; }
.fsoc-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(46,145,102,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: var(--trans);
}
.fsoc-link svg { width: 16px; height: 16px; }
.fsoc-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; flex-shrink: 0; }
.wa-float:hover { transform: scale(1.12); animation: none; box-shadow: 0 6px 26px rgba(37,211,102,0.55); }
.wa-float::before {
  content: 'Chat on WhatsApp';
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.78); color: #fff;
  padding: 7px 14px; border-radius: 8px;
  font-size: 0.78rem; letter-spacing: 0.03em; white-space: nowrap;
  font-family: Georgia, serif; opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.wa-float:hover::before { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 18px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .luxury-grid   { grid-template-columns: repeat(2,1fr); }
  .about-grid    { gap: 45px; }
  .pkg-grid      { grid-template-columns: repeat(3,1fr); }
  .qr-grid       { gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  #navbar { padding: 14px 22px; }
  #navbar.scrolled { padding: 11px 22px; }

  .hero-content { padding: 0 22px; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-sub { font-size: 0.88rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { height: 340px; }
  .about-stats { gap: 20px; }

  .luxury-grid   { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pkg-grid      { grid-template-columns: 1fr; }
  .pkg-card.featured { transform: none; }
  .pkg-card.featured:hover { transform: translateY(-5px); }

  .testi-card { min-width: 100%; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gal-item:first-child { grid-row: span 1; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .section      { padding: 65px 0; }

  /* QR section */
  .qr-grid { grid-template-columns: 1fr; gap: 36px; }
  .qr-code-wrap { text-align: center; }
  .qr-text h2 { font-size: 1.8rem; }

  /* Service cards */
  .svc-body { padding: 16px; }
  .svc-body h4 { font-size: 1.15rem; }
  .svc-prices div { padding: 6px 10px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .about-stats { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .wax-grid { grid-template-columns: repeat(2,1fr); }

  /* Filter tabs */
  .tab { padding: 7px 14px; font-size: 0.72rem; }
  .filter-tabs { gap: 7px; }

  /* Luxury cards */
  .lux-body { padding: 18px 20px 22px; }

  /* Package cards */
  .pkg-card { padding: 30px 20px; }

  /* Testimonials */
  .testi-card { padding: 24px; }

  /* Contact form */
  .contact-form input:not([type="checkbox"]),
  .contact-form textarea { font-size: 0.84rem; padding: 11px 14px; }

  /* QR */
  .qr-text h2 { font-size: 1.6rem; }
  .qr-text p  { font-size: 0.85rem; }

  /* Section headers */
  .section-header { margin-bottom: 38px; }
  .section-header h2 { font-size: 1.7rem; }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 0 16px; }
  .hero-content h1 { font-size: 1.8rem; }
  .section { padding: 50px 0; }
  .about-text h2 { font-size: 1.9rem; }
  .wax-grid { grid-template-columns: 1fr; }
  .svc-prices b { font-size: 0.75rem; }
}

/* ============================================
   MULTI-SELECT SERVICE PICKER
   ============================================ */
.multi-select { position: relative; }

.ms-trigger {
  background: var(--white); border: 1px solid #cde3d7;
  border-radius: 9px; padding: 13px 16px;
  cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
  font-size: 0.88rem; color: var(--muted);
  font-family: Georgia, serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  user-select: none;
}
.ms-trigger:focus { outline: none; }
.ms-trigger.open,
.ms-trigger:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(46,145,102,0.12);
}
.ms-display { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ms-display.has-value { color: var(--text); }
.ms-chevron {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--muted); transition: transform 0.25s ease;
}
.ms-trigger.open .ms-chevron { transform: rotate(180deg); }

.ms-dropdown {
  position: absolute; top: calc(100% + 3px); left: 0; right: 0;
  background: var(--white);
  border: 1px solid rgba(46,145,102,0.35);
  border-radius: 9px;
  max-height: 260px; overflow-y: auto;
  z-index: 300; display: none;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  scrollbar-width: thin;
  scrollbar-color: rgba(46,145,102,0.3) transparent;
}
.ms-dropdown.open { display: block; animation: msFadeIn 0.18s ease; }
@keyframes msFadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.ms-group-label {
  font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); padding: 10px 16px 5px;
  font-family: Georgia, serif; font-weight: bold;
  border-top: 1px solid rgba(46,145,102,0.1);
  background: rgba(46,145,102,0.03);
}
.ms-group-label:first-child { border-top: none; }

.ms-option {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 22px;
  font-size: 0.86rem; font-family: Georgia, serif;
  cursor: pointer; color: var(--text);
  transition: background 0.15s;
}
.ms-option:hover { background: var(--warm); }
.ms-option:has(input:checked) { background: rgba(46,145,102,0.07); color: var(--dark); font-weight: 500; }

.ms-option input[type="checkbox"] {
  width: 16px !important; height: 16px !important;
  flex-shrink: 0; margin: 0 !important; padding: 0 !important;
  border: none !important; border-radius: 3px !important;
  background: transparent !important; cursor: pointer;
  accent-color: var(--gold);
}

.ms-error {
  display: none; font-size: 0.8rem;
  color: #c0392b; margin-top: 6px; padding-left: 2px;
  font-family: Georgia, serif;
}
.ms-error.show { display: block; }

/* ============================================
   SERVICE BENEFIT TAGS
   ============================================ */
.svc-benefits {
  display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px;
}
.svc-benefit {
  font-size: 0.65rem; letter-spacing: 0.07em;
  padding: 3px 9px; border-radius: 50px;
  background: rgba(46,145,102,0.1); color: var(--gold);
  border: 1px solid rgba(46,145,102,0.2);
}

/* ============================================
   QR / MENU SECTION
   ============================================ */
.qr-section { background: var(--dark); }
.qr-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.qr-text .section-tag { color: var(--gold); }
.qr-text h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 18px; }
.qr-text p { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.8; margin-bottom: 10px; }
.qr-text .qr-features {
  list-style: none; margin: 18px 0 28px;
}
.qr-text .qr-features li {
  font-size: 0.85rem; color: rgba(255,255,255,0.55); padding: 6px 0;
  display: flex; align-items: center; gap: 9px;
}
.qr-text .qr-features li::before { content: '✓'; color: var(--gold); font-weight: bold; }
.qr-code-wrap {
  text-align: center;
}
.qr-canvas-container {
  width: clamp(140px, 45vw, 220px);
  height: clamp(140px, 45vw, 220px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
}
.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.qr-canvas-container canvas { display: block; border-radius: 6px; }
.qr-label {
  display: block; margin-top: 16px;
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.qr-or-btn {
  display: block; margin-top: 18px;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
@media (max-width: 768px) {
  .qr-grid { grid-template-columns: 1fr; gap: 40px; }
  .qr-code-wrap { margin-top: 10px; }
}
