/* ============================================================
   SMILE BEAUTY SALON – Premium Luxury CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --gold:        #C8A165;
  --gold-light:  #D4AF70;
  --gold-dark:   #A8833D;
  --rose-gold:   #D4A373;
  --ivory:       #FFF8F2;
  --beige:       #F7F1EB;
  --dark:        #1E1E1E;
  --dark2:       #2A2A2A;
  --dark3:       #111111;
  --white:       #FFFFFF;
  --text-muted:  #7A7169;
  --border:      rgba(200,161,101,0.25);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 32px rgba(200,161,101,0.35);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Poppins', sans-serif;
  background: var(--ivory);
  color: var(--dark);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  line-height: 1.7;
}

/* ── Body locked during intro ───────────────────────────── */
body.intro-active {
  overflow: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ============================================================
   INTRO SCREEN
   ============================================================ */
#introScreen {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#introScreen.hiding {
  pointer-events: none;
}
#introVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Cinematic overlay – removed, video plays clean */
.intro-overlay {
  display: none;
}

/* Letterbox bars */
.intro-bar {
  position: absolute;
  left: 0; right: 0;
  height: 0;
  background: #000;
  z-index: 2;
  transition: height 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.intro-bar-top { top: 0; }
.intro-bar-bottom { bottom: 0; }
#introScreen.letterbox .intro-bar { height: 10vh; }

/* Brand name centered over video */
.intro-brand {
  position: absolute;
  z-index: 3;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.intro-brand.show {
  opacity: 1;
  transform: translateY(0);
}
.intro-brand-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.intro-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.intro-logo-name span {
  color: var(--gold);
  font-style: italic;
}
.intro-logo-sub {
  font-size: clamp(0.65rem, 1.5vw, 0.85rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

/* Skip button */
.intro-skip {
  position: absolute;
  bottom: 40px;
  right: 36px;
  z-index: 4;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 9px 20px;
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.5s forwards;
}
.intro-skip:hover {
  background: rgba(200,161,101,0.25);
  border-color: var(--gold);
  color: var(--white);
}

/* Video progress bar */
.intro-progress-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 4;
}
.intro-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  transition: width 0.2s linear;
}

/* ============================================================
   CURTAIN WIPE TRANSITION
   ============================================================ */
.curtain {
  position: fixed;
  top: 0;
  width: 0%;
  height: 100vh;
  background: var(--dark3);
  z-index: 8999;
  pointer-events: none;
  transition: width 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
#curtainLeft  { left: 0; }
#curtainRight { right: 0; }

/* Step 1: curtains sweep IN (cover screen) */
.curtain.sweep-in {
  width: 51%;
  transition: width 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}
/* Step 2: curtains sweep OUT (reveal website) */
.curtain.sweep-out {
  width: 0%;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}


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

/* ── Selection ───────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--white); }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,161,101,0.1);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
}
.text-center { text-align: center; }
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ── Gold Button ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  z-index: -1;
  transition: 0s;
}
.btn:hover::before { opacity: 1; }
.btn:hover::after {
  animation: shine 1.2s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% 200%;
  color: var(--black);
  box-shadow: 0 8px 24px rgba(200, 161, 101, 0.4), inset 0 1px 0 rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-gold:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 15px 35px rgba(200, 161, 101, 0.6), inset 0 1px 0 rgba(255,255,255,0.8);
  background-position: 100% 0;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
}
.btn-outline:hover { 
  background: rgba(255,255,255,0.1); 
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-whatsapp:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 15px 35px rgba(37,211,102,0.6), inset 0 1px 0 rgba(255,255,255,0.5); 
}

/* ── Scroll Reveal Utility ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(17, 12, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
#navbar:not(.scrolled) {
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 100%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}
#navbar.scrolled .nav-logo-img {
  opacity: 1;
}
/* Footer logo */
.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: rgba(17,12,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 90px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94), visibility 0.4s;
  border-left: 1px solid var(--border);
  visibility: hidden;
}
.mobile-nav.open {
  right: 0;
  visibility: visible;
}
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,161,101,0.1);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
  will-change: transform;
  pointer-events: none;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,12,8,0.75) 0%,
    rgba(30,20,10,0.55) 50%,
    rgba(200,161,101,0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 80px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.5s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.7s forwards;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.9s forwards;
}
.hero-badge {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(200,161,101,0.12);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: rotateBadge 20s linear infinite;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards, rotateBadge 20s linear 1.2s infinite;
}
.hero-badge-stars { font-size: 1.1rem; color: var(--gold); margin-bottom: 2px; }
.hero-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* Floating decorative orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,161,101,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: pulse 6s ease-in-out infinite;
}
.hero-orb-2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(212,163,115,0.1) 0%, transparent 70%);
  bottom: 100px; left: -80px;
  animation: pulse 8s ease-in-out 2s infinite;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::after {
  content: '';
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: 'BEAUTY';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  font-weight: 800;
  color: rgba(200,161,101,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.about-img-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-img-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
}
.about-img-accent {
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  opacity: 0.4;
  pointer-events: none;
}
.about-content { padding: 20px 0; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 42px; height: 42px;
  background: rgba(200,161,101,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-feature-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.about-feature-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.about-cta { margin-top: 8px; }

/* ============================================================
   STATS
   ============================================================ */
#stats {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 50%, #1a1006 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A165' fill-opacity='0.04'%3E%3Cpath d='M40 0L0 40l40 40 40-40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.stat-card {
  text-align: center;
  padding: 48px 24px;
  position: relative;
  border-right: 1px solid rgba(200,161,101,0.12);
}
.stat-card:last-child { border-right: none; }
.stat-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 110px 0;
  background: var(--beige);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid rgba(200,161,101,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(200,161,101,0.12), rgba(212,163,115,0.08));
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: scale(1.05);
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   PACKAGES
   ============================================================ */
#packages {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pkg-card {
  border-radius: var(--radius);
  padding: 48px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-silver { background: var(--white); }
.pkg-gold {
  background: linear-gradient(145deg, var(--dark3), #251a08);
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 24px 80px rgba(200,161,101,0.3);
}
.pkg-gold:hover { transform: scale(1.04) translateY(-6px); }
.pkg-platinum { background: var(--beige); }
.pkg-badge {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}
.pkg-badge-popular {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}
.pkg-badge-silver { background: rgba(150,150,150,0.1); color: var(--text-muted); border: 1px solid #ddd; }
.pkg-badge-platinum { background: rgba(200,161,101,0.1); color: var(--gold); border: 1px solid var(--border); }
.pkg-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.pkg-silver .pkg-name, .pkg-platinum .pkg-name { color: var(--dark); }
.pkg-gold .pkg-name { color: var(--gold); }
.pkg-tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 28px; }
.pkg-gold .pkg-tagline { color: rgba(255,255,255,0.55); }
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pkg-gold .pkg-price { border-color: rgba(200,161,101,0.2); }
.pkg-price-label { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); display: block; margin-bottom: 4px; }
.pkg-gold .pkg-price-label { color: rgba(255,255,255,0.5); }
.pkg-price-val { color: var(--gold); font-size: 1rem; font-weight: 600; }
.pkg-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pkg-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.pkg-silver .pkg-feature, .pkg-platinum .pkg-feature { color: var(--dark); }
.pkg-gold .pkg-feature { color: rgba(255,255,255,0.85); }
.pkg-feature-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.pkg-silver .pkg-feature-check, .pkg-platinum .pkg-feature-check {
  background: rgba(200,161,101,0.12);
  color: var(--gold);
}
.pkg-gold .pkg-feature-check { background: rgba(200,161,101,0.2); color: var(--gold); }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: 110px 0;
  background: var(--dark3);
  position: relative;
}
#gallery .section-title { color: var(--white); }
#gallery .section-subtitle { color: rgba(255,255,255,0.5); }
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.gallery-tab {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(200,161,101,0.2);
  color: rgba(255,255,255,0.6);
  background: transparent;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.gallery-tab.active, .gallery-tab:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,12,8,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.gallery-item-cat {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gallery-zoom {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(200,161,101,0.3); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(200,161,101,0.4); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why {
  padding: 110px 0;
  background: var(--ivory);
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(200,161,101,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(200,161,101,0.12); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(200,161,101,0.1), rgba(212,163,115,0.06));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: scale(1.1) rotate(5deg);
}
.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--dark3) 0%, #1a1006 100%);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '"';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 30rem;
  color: rgba(200,161,101,0.03);
  top: -100px; left: -50px;
  line-height: 1;
  pointer-events: none;
}
#testimonials .section-title { color: var(--white); }
#testimonials .section-subtitle { color: rgba(255,255,255,0.5); }
.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,161,101,0.15);
  border-radius: var(--radius);
  padding: 40px 36px;
  min-width: calc((100% - 48px) / 3);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  flex-shrink: 0;
}
.testi-card:hover {
  background: rgba(200,161,101,0.06);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.testi-stars { font-size: 1rem; color: var(--gold); margin-bottom: 20px; letter-spacing: 2px; }
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
}
.testi-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: -10px; left: -8px;
  line-height: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}
.testi-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,161,101,0.2);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testi-btn:hover { background: var(--gold); border-color: var(--gold); }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
  cursor: pointer;
}
.testi-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   APPOINTMENT / BOOKING
   ============================================================ */
#appointment {
  padding: 110px 0;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}
.appt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.appt-info { }
.appt-info-points { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.appt-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.appt-point-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(200,161,101,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.appt-point-title { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.appt-point-desc { font-size: 0.82rem; color: var(--text-muted); }
.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 44px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 48px rgba(200,161,101,0.08);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-subtitle { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}
.form-input, .form-select, .form-textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(200,161,101,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--ivory);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,161,101,0.1);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #e74c3c;
}
.form-error { font-size: 0.75rem; color: #e74c3c; margin-top: 2px; display: none; }
.form-error.show { display: block; }
.form-submit {
  grid-column: span 2;
  width: 100%;
  padding: 16px;
  font-size: 0.95rem;
  margin-top: 8px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-success-text { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   LOCATION / CONTACT
   ============================================================ */
#contact {
  padding: 110px 0;
  background: var(--dark3);
  overflow: hidden;
}
#contact .section-title { color: var(--white); }
#contact .section-subtitle { color: rgba(255,255,255,0.5); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,161,101,0.15);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.contact-info-items { display: flex; flex-direction: column; gap: 24px; margin: 32px 0 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(200,161,101,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 2px; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-item-val { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.contact-btns { display: flex; flex-direction: column; gap: 12px; }
.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 460px;
  border: 1px solid rgba(200,161,101,0.15);
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.1);
}

/* ============================================================
   PHOTO MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  width: 100%;
  overflow: hidden;
  background: var(--dark3);
  padding: 16px 0;
  border-top: 1px solid rgba(200,161,101,0.15);
  border-bottom: 1px solid rgba(200,161,101,0.15);
}
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0;
  width: 200px;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(200,161,101,0.2);
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}
.marquee-item:hover img { transform: scale(1.06); }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .marquee-item { width: 140px; height: 180px; }
}
@media (max-width: 480px) {
  .marquee-item { width: 110px; height: 150px; }
  .marquee-track { gap: 8px; }
}

/* ============================================================
   INSTAGRAM / SOCIAL FEED
   ============================================================ */
#instagram {
  padding: 100px 0;
  background: var(--beige);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  margin-top: 48px;
}
.insta-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,161,101,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  font-size: 1.5rem;
  color: var(--white);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-handle {
  text-align: center;
  margin-top: 32px;
}
.insta-handle-text { font-size: 1.1rem; color: var(--text-muted); }
.insta-handle-text span { font-weight: 700; color: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: 110px 0;
  background: var(--white);
}
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(200,161,101,0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.3s;
}
.faq-item.open .faq-q { background: rgba(200,161,101,0.04); }
.faq-q-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  padding-right: 16px;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(200,161,101,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s ease, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: linear-gradient(180deg, #0e0a04 0%, #111111 100%);
  padding: 80px 0 0;
  border-top: 1px solid rgba(200,161,101,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(200,161,101,0.1);
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-name span { color: var(--gold); }
.footer-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,161,101,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  border-radius: 1px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; opacity: 0; transition: opacity 0.3s; }
.footer-links a:hover::before { opacity: 1; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy span { color: var(--gold); }
.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-stars { color: var(--gold); letter-spacing: 2px; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(200,161,101,0.5); }

/* ============================================================
   FLOATING BUTTONS (WhatsApp & Call)
   ============================================================ */
.floating-btns-wrap {
  position: fixed;
  bottom: 40px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.float-btn:hover { transform: translateY(-6px) scale(1.08); }

.float-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  animation: pulseWa 2.5s infinite;
}
.float-wa:hover { animation: none; box-shadow: 0 16px 48px rgba(37,211,102,0.6); }

.float-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 8px 32px rgba(200,161,101,0.4);
  animation: pulseCall 2.5s infinite;
  animation-delay: 1.25s;
}
.float-call:hover { animation: none; box-shadow: 0 16px 48px rgba(200,161,101,0.6); }

/* Premium Pulse Animations */
@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes pulseCall {
  0% { box-shadow: 0 0 0 0 rgba(200,161,101,0.6); }
  70% { box-shadow: 0 0 0 16px rgba(200,161,101,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,161,101,0); }
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   RESPONSIVE – COMPREHENSIVE MOBILE FIRST
   ============================================================ */

/* ── Tablet (≤ 1024px) ──────────────────────────────────── */
@media (max-width: 1024px) {
  /* Sections */
  #about, #services, #packages, #gallery, #why,
  #testimonials, #appointment, #contact, #instagram, #faq { padding: 80px 0; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(200,161,101,0.12); }
  .stat-card:nth-child(3), .stat-card:nth-child(4) { border-bottom: none; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pkg-gold { transform: scale(1); box-shadow: var(--shadow-gold); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img-main { height: auto; }
  .about-img-badge { right: 16px; bottom: -16px; }

  /* Appointment */
  .appt-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-wrap { height: 380px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(5, 1fr); }

  /* Lightbox */
  .lightbox-prev { left: -50px; }
  .lightbox-next { right: -50px; }
}

/* ── Mobile (≤ 768px) ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 44px; }
  #navbar { padding: 14px 0; }

  /* Hero */
  .hero-badge { display: none; }
  .hero-content { 
    padding-top: 100px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
  }
  .hero-h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-sub { font-size: 0.9rem; text-align: center; }
  .hero-tag { margin: 0 auto 24px auto; justify-content: center; width: 100%; }
  .hero-cta { flex-direction: column; gap: 12px; width: 100%; max-width: 320px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .btn { padding: 14px 28px; font-size: 0.9rem; }
  .hero-orb-1 { width: 220px; height: 220px; }
  .hero-orb-2 { width: 140px; height: 140px; }
  
  /* Make videos fit screen completely on mobile */
  #introVideo, #heroBg { 
    object-fit: contain; 
    background: #000; 
  }

  /* Sections spacing */
  #about, #services, #packages, #gallery, #why,
  #testimonials, #appointment, #contact, #instagram, #faq { padding: 64px 0; }
  #stats { padding: 56px 0; }

  /* Section headings */
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 36px; }

  /* About */
  .about-grid { gap: 40px; }
  .about-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .about-content .section-tag { margin: 0 auto 16px auto; justify-content: center; }
  .about-img-main { height: auto; }
  .about-img-accent { display: none; }
  .about-img-badge { right: 12px; bottom: -12px; padding: 14px 20px; }
  .about-img-badge-num { font-size: 1.6rem; }
  .about-features { grid-template-columns: 1fr; gap: 14px; text-align: left; width: 100%; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 32px 16px; }
  .stat-num { font-size: 2.4rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; }

  /* Packages */
  .packages-grid { max-width: 100%; }
  .pkg-card { padding: 36px 28px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery-item {
    height: auto;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: initial;
  }

  /* Gallery tabs */
  .gallery-tabs { gap: 6px; }
  .gallery-tab { padding: 6px 14px; font-size: 0.76rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }

  /* Testimonials */
  .testi-card { min-width: 100%; padding: 28px 24px; }

  /* Appointment */
  .booking-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-group.full { grid-column: span 1; }
  .form-submit { grid-column: span 1; width: 100%; }
  .appt-info-points { gap: 16px; }

  /* Contact */
  .contact-card { padding: 28px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .contact-info-items { width: 100%; }
  .contact-item { justify-content: flex-start; text-align: left; }
  .contact-map-wrap { height: 280px; width: 100%; }
  .contact-btns { gap: 10px; width: 100%; }
  .contact-btns .btn { width: 100%; justify-content: center; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(5, 1fr); }

  /* FAQ */
  .faq-q-text { font-size: 0.88rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-logo-img { height: 48px; margin: 0 auto 16px auto; }
  .footer-socials { justify-content: center; margin-bottom: 24px; }
  .footer-links { align-items: center; }
  .footer-col-title::after { left: 50%; transform: translateX(-50%); }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Lightbox */
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox img { max-width: 95vw; }

  /* Floating buttons - restore and adjust for mobile */
  #backToTop { bottom: 32px; right: 20px; width: 42px; height: 42px; }
  .floating-btns-wrap { 
    bottom: 24px; 
    right: 20px; 
    gap: 14px; 
  }
  .float-btn { 
    width: 50px; 
    height: 50px; 
    font-size: 1.4rem; 
  }
  
  /* Push footer up slightly so it clears the floating buttons */
  #footer { padding-bottom: 24px; } 

  /* Intro skip */
  .intro-skip { bottom: 32px; right: 20px; font-size: 0.72rem; padding: 8px 16px; }
}

/* ── Small Mobile (≤ 480px) ─────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Navbar */
  .nav-logo-img { height: 38px; }

  /* Hero */
  .hero-h1 { font-size: clamp(1.8rem, 10vw, 2.6rem); }
  .hero-tag { font-size: 0.62rem; letter-spacing: 0.18em; }
  .hero-tag::before, .hero-tag::after { width: 20px; }
  .btn { padding: 12px 24px; font-size: 0.85rem; letter-spacing: 0.05em; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2rem; }
  .stat-card { padding: 24px 12px; }

  /* Gallery – nothing extra needed, inherits from 768px */
  .gallery-item.wide { grid-column: span 1; }

  /* Packages */
  .pkg-card { padding: 28px 20px; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

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

  /* Booking */
  .booking-form { padding: 24px 16px; }
  .form-title { font-size: 1.4rem; }

  /* Contact */
  .contact-map-wrap { height: 240px; }

  /* Mobile nav width */
  .mobile-nav { width: 100%; border-left: none; }
}

/* -- Premium Icons (Phosphor) --------------------------------- */
i.ph-light {
  font-size: 1.25em;
  vertical-align: -0.15em;
  line-height: 1;
}

/* Base icon colors & sizing */
.about-feature-icon i,
.why-icon i,
.service-icon i,
.pkg-icon i,
.contact-item-icon i,
.appt-point-icon i {
  font-size: inherit;
  color: inherit;
}

.btn i.ph-light {
  font-size: 1.3em;
  margin-right: 2px;
}

.stat-icon i.ph-light {
  font-size: 1.1em;
}
