/* ========================================
   ANI BEAUTY SALON & SPA — STYLE
   Colors: Black & Gold
   ======================================== */

:root {
  --black: #0a0a0a;
  --black-light: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #d4b85c;
  --gold-dark: #b8943f;
  --white: #f5f5f5;
  --gray: #888;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
}

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

a {
  text-decoration: none;
}

/* ========================================
   LOADING SCREEN — Play Store wave style
   ======================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo-circle {
  width: 160px;
  height: 160px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  overflow: hidden;
  padding: 0;
}

.loader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 8px;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.loader-subtext {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

/* Play Store wave progress bar */
.loader-wave-wrap {
  width: 200px;
  height: 28px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.1);
}

.loader-wave-fill {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  border-radius: 14px;
  animation: waveLoad 3s ease-in-out forwards;
}

.loader-wave-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255,255,255,0.2) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.3) 0%, transparent 50%);
  animation: waveShimmer 1.5s ease-in-out infinite;
}

.loader-wave-fill::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 30px;
  height: calc(100% + 4px);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  border-radius: 50%;
  animation: waveGlow 1s ease-in-out infinite;
}

@keyframes waveLoad {
  0% { left: -100%; }
  100% { left: 0%; }
}

@keyframes waveShimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes waveGlow {
  0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1.2); }
}

/* Wave border animation */
.loader-wave-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  pointer-events: none;
  animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% { border-color: rgba(201, 168, 76, 0.2); }
  50% { border-color: rgba(201, 168, 76, 0.5); }
}

/* Percentage text */
.loader-percent {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 0.75rem;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* ========================================
   LANGUAGE SELECTOR
   ======================================== */
.lang-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 1rem;
}

.lang-overlay.hidden {
  display: none;
}

.lang-card {
  background: var(--black-light);
  border: none;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 320px;
  width: 100%;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.lang-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.lang-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  border: none;
  background: #000;
  padding: 5px;
  margin-bottom: 1.5rem;
}

.lang-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.lang-subtitle {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.lang-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: 1px;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ========================================
   HEADER
   ======================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: contain;
  border: none;
  background: #000;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.logo-text span {
  color: var(--white);
  font-weight: 300;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--gold);
}

.nav-instagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.1);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  transition: all 0.3s;
}

.nav-instagram:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-instagram i {
  font-size: 1.2rem;
}

.close-menu {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-book-btn {
  background: var(--gold);
  border: none;
  color: var(--black);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.header-book-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.header-book-btn.pulse-glow {
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(201, 168, 76, 0.6);
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--black);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 50%, rgba(10,10,10,1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-word {
  display: block;
  color: var(--white);
  font-weight: 300;
}

.hero-word.gold {
  color: var(--gold);
  font-weight: 700;
  font-size: 5rem;
}

.hero p {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gold-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s;
  border-radius: 6px;
}

.gold-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.5);
  transition: all 0.3s;
  border-radius: 6px;
}

.ghost-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-vagaro-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1s both;
  z-index: 2;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.5; transform: translateX(-50%) translateY(6px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ========================================
   GOLD DIVIDER — Dotted style
   ======================================== */
.gold-divider {
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 4px,
    transparent 4px,
    transparent 12px
  );
  margin: 0;
  opacity: 0.5;
}

/* ========================================
   VIDEO TOUR
   ======================================== */
.video-tour-section {
  padding-bottom: 3rem;
}

.video-tour-container {
  max-width: 900px;
  margin: 0 auto;
}

.video-tour-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: #000;
  aspect-ratio: 9 / 16;
}

.tour-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-tour-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.highlight-icon i {
  color: var(--gold);
  font-size: 1rem;
}

.highlight-item span {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.highlight-item:hover .highlight-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.highlight-item:hover .highlight-icon i {
  color: var(--black);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.title-underline {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

.section-sub {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-style: italic;
}

/* ========================================
   PRICE LIST
   ======================================== */
.price-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.price-category {
  background: linear-gradient(145deg, var(--black-light) 0%, #111 100%);
  border: none;
  border-radius: 8px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.price-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.price-category::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.price-category.visible {
  opacity: 1;
  transform: translateY(0);
}

.price-category:nth-child(2) {
  transition-delay: 0.1s;
}

.price-category:nth-child(3) {
  transition-delay: 0.2s;
}

.price-category:nth-child(4) {
  transition-delay: 0.3s;
}

.price-category:nth-child(5) {
  transition-delay: 0.4s;
}

.price-category:nth-child(6) {
  transition-delay: 0.5s;
}

.price-category:nth-child(7) {
  transition-delay: 0.6s;
}

.price-category:nth-child(8) {
  transition-delay: 0.7s;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.category-icon {
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.category-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.category-icon:hover i {
  color: var(--black);
}

.category-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}

.category-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.price-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.5rem;
  border-radius: 4px;
  transition: background 0.3s;
}

.price-item:hover {
  background: rgba(201, 168, 76, 0.05);
}

.item-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}

.item-icon {
  color: var(--gold);
  font-size: 0.65rem;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.7;
}

.item-name {
  font-size: 0.85rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.price-item:hover .item-name {
  color: var(--gold);
}

.item-line {
  flex: 1;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  margin: 0 0.75rem;
  min-width: 20px;
}

.item-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

/* Category Book Now Button */
.category-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.7rem 1.25rem;
  background: var(--gold);
  border: none;
  border-radius: 6px;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.category-book-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.category-book-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.vagaro-icon-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========================================
   VAGARO BOOKING SECTION
   ======================================== */
.vagaro-section {
  background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 76, 0.03) 50%, transparent 100%);
}

.vagaro-cta-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.vagaro-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.vagaro-logo-main {
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
}

.vagaro-logo-hero {
  height: 30px;
  object-fit: contain;
}

.vagaro-validated {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  background: rgba(201, 168, 76, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.vagaro-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.vagaro-main-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
}

.vagaro-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 1rem;
  font-style: italic;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-info-container {
  max-width: 600px;
  margin: 0 auto;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
}

.info-item:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.3);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.info-item:hover .info-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.info-item:hover .info-icon i {
  color: var(--black);
}

.info-icon i {
  color: var(--gold);
  font-size: 1rem;
}

.vagaro-icon-bg {
  background: rgba(201, 168, 76, 0.15);
}

.vagaro-icon-bg svg {
  color: var(--gold);
}

.info-item strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.info-item span {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ========================================
   MAP
   ======================================== */
.map {
  width: 100%;
  height: 300px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) contrast(1.1);
}

/* ========================================
   SOCIAL PROOF COUNTER
   ======================================== */
.social-proof {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 998;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: fadeSlideIn 0.8s ease 4s both;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-dot {
  width: 6px;
  height: 6px;
  background: #25D366;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(37, 211, 102, 0); }
}

.social-items {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  color: var(--gray);
  white-space: nowrap;
}

.social-item i {
  color: var(--gold);
  font-size: 0.6rem;
}

.social-item strong {
  color: var(--white);
  font-weight: 600;
}

.social-divider {
  width: 1px;
  height: 14px;
  background: rgba(201, 168, 76, 0.3);
}

/* ========================================
   WHATSAPP FLOAT WITH BUBBLE
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  animation: floatBounce 3s ease-in-out infinite;
  text-decoration: none;
}

.wa-bubble {
  background: var(--white);
  color: var(--black);
  padding: 0.6rem 1rem;
  border-radius: 12px 12px 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  position: relative;
  opacity: 0;
  transform: translateX(20px);
  animation: bubbleIn 0.5s ease 3s forwards;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.wa-bubble-text {
  text-decoration: none;
}

.wa-bubble-arrow {
  display: none;
}

@keyframes bubbleIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wa-icon {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s;
}

.whatsapp-float:hover .wa-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: transparent;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-bottom: 5rem;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: contain;
  border: none;
  background: #000;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.footer-loc {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--gold);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ========================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .price-list-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

/* ========================================
   RESPONSIVE - TABLET (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  .social-proof {
    bottom: 15px;
    left: 15px;
    padding: 0.5rem 0.7rem;
  }

  .social-item {
    font-size: 0.6rem;
  }

  .social-item i {
    font-size: 0.55rem;
  }

  .social-items {
    gap: 0.5rem;
  }

  .video-tour-highlights {
    gap: 1rem;
  }

  .highlight-icon {
    width: 40px;
    height: 40px;
  }

  .highlight-icon i {
    font-size: 0.85rem;
  }

  .highlight-item span {
    font-size: 0.65rem;
  }

  .header {
    padding: 0.75rem 1rem;
  }

  .logo-img {
    height: 42px;
    width: 42px;
  }

  .logo-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(201, 168, 76, 0.3);
    gap: 0;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  .nav-instagram {
    margin-top: 1.5rem;
    justify-content: center;
  }

  .close-menu {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(201, 168, 76, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
  }

  .close-menu i {
    font-size: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .header-book-btn {
    display: none;
  }

  .hero {
    padding: 5rem 1.25rem 3rem;
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-word.gold {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }

  .eyebrow-line {
    width: 40px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .gold-btn, .ghost-btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }

  .section {
    padding: 3rem 1.25rem;
  }

  .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .title-underline {
    width: 60px;
    margin: 1rem auto;
  }

  .section-sub {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .price-list-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .price-category {
    padding: 1.25rem;
  }

  .category-header {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .category-icon {
    width: 40px;
    height: 40px;
  }

  .category-icon i {
    font-size: 1rem;
  }

  .category-header h3 {
    font-size: 1rem;
  }

  .price-items {
    gap: 0.5rem;
  }

  .price-item {
    padding: 0.4rem 0;
  }

  .item-name {
    font-size: 0.8rem;
  }

  .item-icon {
    font-size: 0.6rem;
    width: 12px;
  }

  .item-price {
    font-size: 0.9rem;
  }

  .category-book-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
  }

  .vagaro-main-btn {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  .vagaro-logo-main {
    width: 160px;
    height: 48px;
  }

  .contact-info-container {
    padding: 0 1.25rem;
  }

  .info-details {
    gap: 0.75rem;
  }

  .info-item {
    padding: 1rem;
    gap: 1rem;
  }

  .info-icon {
    width: 44px;
    height: 44px;
  }

  .info-icon i {
    font-size: 1rem;
  }

  .info-item strong {
    font-size: 0.85rem;
  }

  .info-item span {
    font-size: 0.8rem;
  }

  .map {
    height: 250px;
  }

  .whatsapp-float {
    bottom: 65px;
    right: 15px;
  }

  .wa-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .wa-bubble {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }

  .footer {
    padding: 2rem 1.25rem 4.5rem;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-brand img {
    height: 45px;
    width: 45px;
  }

  .footer-name {
    font-size: 0.85rem;
    text-align: center;
  }

  .footer-loc {
    font-size: 0.7rem;
    text-align: center;
  }

  .footer-links {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .footer-links a {
    font-size: 1.1rem;
  }
}

/* ========================================
   RESPONSIVE - MOBILE SMALL (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
  .social-proof {
    bottom: 12px;
    left: 12px;
    padding: 0.4rem 0.6rem;
    gap: 0.4rem;
  }

  .social-item {
    font-size: 0.55rem;
  }

  .social-item i {
    font-size: 0.5rem;
  }

  .social-dot {
    width: 5px;
    height: 5px;
  }

  .social-divider {
    height: 12px;
  }

  .header {
    padding: 0.6rem 0.75rem;
  }

  .logo-img {
    height: 36px;
    width: 36px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero {
    padding: 4.5rem 1rem 2.5rem;
    min-height: 85vh;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-word.gold {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .hero-cta-group {
    padding: 0;
  }

  .gold-btn, .ghost-btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.75rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-sub {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .price-category {
    padding: 1rem;
  }

  .category-header {
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    gap: 0.75rem;
  }

  .category-icon {
    width: 36px;
    height: 36px;
  }

  .category-icon i {
    font-size: 0.85rem;
  }

  .category-header h3 {
    font-size: 0.9rem;
  }

  .price-items {
    gap: 0.4rem;
  }

  .item-name {
    font-size: 0.75rem;
  }

  .item-icon {
    font-size: 0.55rem;
    width: 10px;
  }

  .item-price {
    font-size: 0.8rem;
  }

  .category-book-btn {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    margin-top: 1rem;
  }

  .vagaro-main-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }

  .vagaro-logo-main {
    width: 130px;
    height: 40px;
  }

  .vagaro-validated {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
  }

  .info-item {
    padding: 0.9rem;
    gap: 0.75rem;
  }

  .info-icon {
    width: 38px;
    height: 38px;
  }

  .info-item strong {
    font-size: 0.8rem;
  }

  .info-item span {
    font-size: 0.75rem;
  }

  .map {
    height: 200px;
  }

  .whatsapp-float {
    bottom: 58px;
    right: 12px;
  }

  .wa-icon {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
}
