/* ============================================
   EVERGREEN BEAUTY PARLOUR - Premium Dark Theme
   Color Palette:
   - Deep Green:   #0b1a16 / #122b24 / #1a3c34
   - Accent Gold:  #c9a96e
   - Light Gold:   #e8d5a8
   - Sage:         #7da585
   - Text:         #f4eee3
   ============================================ */

:root {
  --bg-deep: #0b1a16;
  --bg-mid: #122b24;
  --primary: #1a3c34;
  --primary-light: #2a5c4a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --accent: #c9a96e;
  --accent-strong: #d4b47c;
  --accent-light: #e8d5a8;
  --sage: #7da585;
  --text: #f4eee3;
  --text-soft: rgba(244, 238, 227, 0.75);
  --muted: rgba(244, 238, 227, 0.55);
  --border: rgba(201, 169, 110, 0.16);
  --border-soft: rgba(244, 238, 227, 0.08);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(160deg, #1a3c34 0%, #122b24 50%, #0b1a16 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Fixed ambient gold glows over whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 25%, rgba(201, 169, 110, 0.05), transparent 70%),
    radial-gradient(ellipse 50% 35% at 85% 75%, rgba(125, 165, 133, 0.05), transparent 70%);
}
.container,
.nav-container,
.section,
.hero,
footer { position: relative; z-index: 1; }

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner { text-align: center; }
.preloader-ring {
  width: 48px; height: 48px;
  border: 3px solid rgba(255,255,255,0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
.preloader-text {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 26, 22, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s;
}
#navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.25);
  background: rgba(11, 26, 22, 0.9);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
  transition: transform 0.3s;
  box-shadow: 0 0 14px rgba(201,169,110,0.25);
}
.nav-brand:hover img { transform: scale(1.08); }
.brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
}
.brand-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 28px;
}
.nav-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-menu a:hover { color: var(--accent-light); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg-deep);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}

.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(--text);
  transition: all 0.3s;
  border-radius: 2px;
}
.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); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--primary) 0%, #0f2620 50%, var(--bg-deep) 100%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(125,165,133,0.12) 0%, transparent 50%);
}
.hero-floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  background: var(--accent);
}
.shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 10%; }

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 60px;
}
.hero-logo-wrap { margin-bottom: 28px; }
.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid rgba(201,169,110,0.35);
  object-fit: cover;
  padding: 4px;
  background: rgba(255,255,255,0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 60px rgba(201,169,110,0.18);
}
.hero-logo:hover { transform: scale(1.06) rotate(2deg); }

.hero-badge {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--accent-light);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-heading);
  color: var(--text);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title-line { display: block; font-weight: 300; }
.hero-title-accent {
  display: block;
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.hero-tagline {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.5rem;
}
.stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(244,238,227,0.15);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-deep);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(244,238,227,0.25);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-google {
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.88rem;
}
.btn-google:hover {
  border-color: var(--border);
  background: var(--surface-hover);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(244,238,227,0.22);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.wheel {
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 3px;
  animation: scroll-wheel 1.5s infinite;
}
@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ---- Sections ---- */
.section { padding: 100px 24px; }
.container { max-width: 1120px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}
.section-title em {
  color: var(--accent);
  font-style: italic;
}
.gold-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 16px 0 32px;
}
.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}
.section-header { text-align: center; }
.section-header .section-tag { margin-bottom: 8px; }
.section-header .section-title { margin-bottom: 0; }
.section-header .gold-line { margin-top: 14px; }
.section-desc {
  color: var(--muted);
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 0.92rem;
  line-height: 1.8;
}

/* Layered panels for depth between sections */
.section-about,
.section-pricing,
.section-team,
.section-contact {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section-services,
.section-gallery,
.section-amenities,
.section-reviews,
.section-map {
  background: transparent;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.about-tag {
  background: rgba(201,169,110,0.1);
  color: var(--accent-light);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.about-visual { position: relative; }
.about-accent-box {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  opacity: 0.35;
}
.about-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.about-card:hover {
  transform: translateY(-3px);
  background: var(--surface-hover);
  border-color: var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.about-card-icon {
  margin-bottom: 12px;
  color: var(--accent);
}
.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 8px;
}
.about-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s;
  border-top: 3px solid transparent;
}
.service-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-4px);
  background: var(--surface-hover);
  border-left-color: var(--border);
  border-right-color: var(--border);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201,169,110,0.14);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  transition: all 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: var(--accent);
  color: var(--bg-deep);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card ul { list-style: none; }
.service-card ul li {
  color: var(--muted);
  font-size: 0.82rem;
  padding: 4px 0;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.6;
}
.service-card ul li:last-child { border-bottom: none; }

/* ---- Pricing ---- */
.pricing-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 40px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 50px;
}
.pricing-tab {
  background: transparent;
  border: none;
  padding: 11px 26px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  border-radius: 50px;
  position: relative;
}
.pricing-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--bg-deep);
  box-shadow: 0 4px 14px rgba(201,169,110,0.35);
}
.pricing-tab:hover:not(.active) {
  color: var(--accent-light);
  background: var(--surface-hover);
}
.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: panel-in 0.4s ease; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.pricing-card {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 44px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  pointer-events: none;
}
.pricing-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: -6px auto 28px;
}
.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.pricing-card-ring {
  color: var(--accent);
  font-size: 0.7rem;
  animation: sparkle-spin 6s linear infinite;
  display: inline-block;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  position: relative;
}
.price-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 2px;
  transition: all 0.2s;
  border-radius: 6px;
}
.price-item:hover .price-name { color: var(--accent-light); transform: translateX(3px); }
.price-name {
  font-size: 0.88rem;
  color: var(--text-soft);
  transition: all 0.25s;
  white-space: nowrap;
}
.price-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(201,169,110,0.25);
  margin: 0 4px 5px;
  min-width: 18px;
}
.price {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: all 0.25s;
}
.price-item:hover .price { color: var(--accent-light); }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,26,22,0.85) 0%, rgba(11,26,22,0.15) 45%, transparent 75%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ---- Feature (Hair) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-text {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 16px;
}
.feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.feature-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s;
}
.feature-image:hover img { transform: scale(1.03); }
.feature-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(11,26,22,0.75);
  backdrop-filter: blur(10px);
  color: var(--accent-light);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ---- Amenities ---- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}
.amenity-item {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 30px 16px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 150px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.amenity-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.amenity-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--border);
  box-shadow: 0 14px 34px rgba(0,0,0,0.3);
}
.amenity-item:hover::after { opacity: 1; }
.amenity-medallion {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 6px;
}
.amenity-item:hover .amenity-medallion {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-color: var(--accent);
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 6px 20px rgba(201,169,110,0.4);
}
.amenity-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: all 0.35s;
  line-height: 1;
}
.amenity-item:hover .amenity-icon { color: var(--bg-deep); }
.amenity-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.amenity-item:hover .amenity-name { color: var(--accent-light); }
.amenity-line {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  position: relative;
  z-index: 1;
  transition: width 0.35s;
}
.amenity-item:hover .amenity-line { width: 44px; }

/* ---- Expert ---- */
.expert-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 56px;
  position: relative;
  box-shadow: 0 24px 70px rgba(0,0,0,0.3);
  overflow: hidden;
}
.expert-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.expert-portrait {
  position: relative;
  width: 280px;
  margin: 0 auto;
}
.expert-portrait img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 160px 160px 16px 16px;
  border: 3px solid var(--accent);
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}
.expert-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  z-index: 1;
}
.expert-ring-a {
  width: 300px;
  height: 300px;
  top: 8px;
  left: -10px;
  animation: pulse-ring 4s ease-in-out infinite;
}
.expert-ring-b {
  width: 260px;
  height: 260px;
  top: 30px;
  left: 10px;
  border-style: dashed;
  animation: spin-slow 28s linear infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.expert-spark {
  position: absolute;
  color: var(--accent);
  font-size: 0.9rem;
  z-index: 3;
  animation: sparkle-blink 2.4s ease-in-out infinite;
}
.expert-spark-1 { top: -8px; right: 20px; }
.expert-spark-2 { bottom: 30px; left: -16px; font-size: 0.7rem; animation-delay: 0.6s; }
.expert-spark-3 { top: 60px; right: -14px; font-size: 0.65rem; animation-delay: 1.2s; }
@keyframes sparkle-blink {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.15); }
}
.expert-info { position: relative; z-index: 2; }
.expert-monogram {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 16px;
  margin-bottom: 16px;
  background: rgba(201,169,110,0.08);
}
.expert-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 8px;
}
.expert-role {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.expert-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 16px;
}
.expert-divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--border));
}
.expert-divider b {
  color: var(--accent);
  font-size: 0.65rem;
  animation: sparkle-spin 6s linear infinite;
  display: inline-block;
}
.expert-bio {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 430px;
}
.expert-cert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(201,169,110,0.05));
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  color: var(--accent-light);
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 460px;
}
.expert-cert-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}
@keyframes sparkle-spin {
  to { transform: rotate(360deg); }
}

/* ---- Reviews ---- */
.section-reviews { text-align: center; }
.review-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 48px 40px;
  transition: all 0.3s;
}
.review-card:hover {
  border-color: var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.review-stars {
  font-size: 1.5rem;
  color: #f4b400;
  margin-bottom: 16px;
  letter-spacing: 4px;
}
.review-text {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(201,169,110,0.12);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-item p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.contact-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--accent); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  transition: all 0.25s;
}
.social-btn.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.social-btn.facebook { background: #1877f2; }
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: 8px;
  background: rgba(11,26,22,0.4);
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(244,238,227,0.3);
}
.form-group select option {
  background: var(--bg-mid);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(11,26,22,0.6);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  color: var(--sage);
  font-size: 0.86rem;
  margin-top: 10px;
  font-weight: 500;
}

/* Map */
.map-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  filter: grayscale(0.2) brightness(0.9);
}

/* ---- Footer ---- */
footer {
  position: relative;
  background: var(--bg-deep);
  color: var(--muted);
  padding: 44px 24px 26px;
  border-top: none;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--accent) 35%, var(--accent) 65%, transparent 95%);
  opacity: 0.45;
}
.footer-container { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px 48px;
  padding-bottom: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.07);
}
.footer-brand-text { line-height: 1.25; }
.footer-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--accent-light);
  font-weight: 500;
  white-space: nowrap;
}
.footer-tag {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-links a:hover::after { width: 100%; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.25s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,169,110,0.18);
}
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer-bottom p {
  font-size: 0.72rem;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ---- Back to Top ---- */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-deep);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--accent-light);
}

/* ---- Reveal Animations ---- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered children reveal */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.54s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.61s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.68s; }

/* ---- Custom Cursor ---- */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  body a, body button, body input, body select, body textarea, body label { cursor: none; }
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    will-change: transform;
  }
  .cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(201,169,110,0.8);
  }
  .cursor-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(201,169,110,0.6);
    transition: width 0.28s, height 0.28s, border-color 0.28s, background 0.28s;
  }
  .cursor-ring.is-active {
    width: 58px;
    height: 58px;
    border-color: var(--accent);
    background: rgba(201,169,110,0.12);
    transition: width 0.28s, height 0.28s, border-color 0.28s, background 0.28s;
  }
}

/* ---- Floating Particles ---- */
.fx-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.fx-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particle-rise linear infinite;
}
@keyframes particle-rise {
  0% { transform: translateY(105vh) translateX(0) scale(0.6); opacity: 0; }
  8% { opacity: 0.5; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) translateX(var(--sway, 30px)) scale(1.1); opacity: 0; }
}

/* ---- Button shine ---- */
.btn-primary, .nav-cta, .btn-google {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .nav-cta::after, .btn-google::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-primary:hover::after, .nav-cta:hover::after, .btn-google:hover::after {
  left: 130%;
}

/* ---- Gold text shimmer for em headings ---- */
.section-title em,
.hero-title-accent {
  background: linear-gradient(100deg, #c9a96e 20%, #f2e4bd 40%, #c9a96e 60%, #f2e4bd 80%, #c9a96e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

/* ----- WhatsApp pulse ----- */
.whatsapp-float {
  position: relative;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ---- Section shimmer on hover for gallery ---- */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  z-index: 2;
}
.gallery-item:hover::after { left: 150%; }

/* ---- Feature image glow ---- */
.feature-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,169,110,0.5), transparent 40%, transparent 60%, rgba(201,169,110,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(11, 26, 22, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-menu li a {
    display: block;
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--text-soft);
  }
  .nav-cta { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }

  .pricing-tabs {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
  }
  .pricing-tab { flex: 1; min-width: 110px; padding: 10px 12px; font-size: 0.72rem; }

  .pricing-card { padding: 30px 24px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 10px; }

  .expert-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 36px 24px;
  }
  .expert-portrait { width: 220px; }
  .expert-portrait img { height: 260px; }
  .expert-ring-a { width: 240px; height: 240px; top: 14px; left: -10px; }
  .expert-ring-b { width: 200px; height: 200px; top: 34px; left: 10px; }
  .expert-bio { margin-left: auto; margin-right: auto; }
  .expert-divider { justify-content: center; }
  .expert-divider b { flex-shrink: 0; }
  .expert-cert { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; text-align: center; gap: 22px; }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; gap: 18px; }
  .footer-social { justify-content: center; }
  .footer-links a { letter-spacing: 0.1em; }

  .hero-content { padding: 100px 16px 60px; }
  .hero-logo { width: 110px; height: 110px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .section { padding: 72px 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-container { padding: 0 16px; }
}