/* ========================================
   LAURY LASHES BEAUTY — STYLE
   Colores: Negro y Dorado
   ======================================== */

: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
   ======================================== */
#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.5s ease, visibility 0.5s ease;
}

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

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

.loader-logo-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: pulseGlow 1.5s ease infinite;
  overflow: hidden;
  padding: 15px;
}

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

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

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

.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(201, 168, 76, 0.2);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderFill 2.5s ease forwards;
}

@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.6);
  }
}

/* ========================================
   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: 2px solid var(--gold);
  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);
}

.lang-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 5px;
  background: rgba(201, 168, 76, 0.1);
  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: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  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;
}

/* ========================================
   HOME SERVICE POPUP
   ======================================== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  animation: fadeIn 0.4s ease;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-card.coupon {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 2px solid var(--gold);
  border-radius: 8px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.2), inset 0 0 30px rgba(201, 168, 76, 0.03);
  padding: 2rem 1.5rem;
}

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

.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 3;
}

.popup-close:hover {
  background: var(--gold);
  color: var(--black);
}

.coupon-header {
  padding-bottom: 1.25rem;
}

.coupon-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 5px;
  background: rgba(201, 168, 76, 0.1);
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.3); }
  50% { box-shadow: 0 0 35px rgba(201, 168, 76, 0.6); }
}

.coupon-title-new {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.coupon-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.coupon-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0.75rem auto;
}

.coupon-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.coupon-discount-box {
  background: rgba(201, 168, 76, 0.08);
  border: 1px dashed var(--gold);
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.coupon-discount-box.coupon-free {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
}

.coupon-discount-ribbon {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.coupon-free .coupon-discount-ribbon {
  color: #25D366;
  text-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.coupon-discount-text {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.coupon-area {
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.coupon-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  padding: 0.9rem 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s;
}

.coupon-cta:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.popup-skip {
  display: block;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.8rem;
  cursor: pointer;
  margin: 1rem auto 0;
  padding: 0.5rem;
  transition: color 0.3s;
}

.popup-skip:hover {
  color: var(--white);
}

@media (max-width: 480px) {
  .popup-card.coupon {
    max-width: 320px;
    padding: 1.5rem 1rem;
  }

  .coupon-title-new {
    font-size: 0.95rem;
  }

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

  .coupon-discount-ribbon {
    font-size: 1.8rem;
  }

  .coupon-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }
}

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
   ======================================== */
.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.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.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: cover;
  border: 2px solid var(--gold);
}

.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-ig-btn {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.header-ig-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.header-book-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

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

.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: rgba(0, 0, 0, 0.6);
  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;
}

.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.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  border-radius: 2px;
}

.gold-btn:hover {
  background: transparent;
  color: var(--gold);
}

.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.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  border-radius: 2px;
}

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

.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
   ======================================== */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  padding: 2rem;
  background: var(--black-light);
}

.trust-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-bar-item i {
  color: var(--gold);
  font-size: 1.5rem;
}

.trust-bar-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.trust-bar-item span {
  font-size: 0.8rem;
  color: var(--gray);
}

.trust-bar-sep {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
}

/* ========================================
   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: 80px;
  height: 2px;
  background: var(--gold);
  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: 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.price-category {
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

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

.price-category.home-service {
  border-color: var(--gold);
  position: relative;
}

.home-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

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

.home-service-discount {
  font-size: 0.85rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home-service-free {
  margin-top: 1rem;
  text-align: center;
}

.home-free-badge {
  display: inline-block;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  animation: freeGlow 2s ease-in-out infinite;
}

@keyframes freeGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 30px rgba(37, 211, 102, 0.7); }
}

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

.category-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

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

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

.item-name {
  font-size: 0.9rem;
  color: var(--white);
  white-space: nowrap;
}

.item-name em {
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
  display: block;
  margin-top: 2px;
}

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

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

/* ========================================
   DEPOSIT SECTION
   ======================================== */
.deposit-section {
  padding: 3rem 2rem;
}

.deposit-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  padding: 2.5rem;
  text-align: center;
}

.deposit-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

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

.deposit-container h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.deposit-container p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.deposit-container strong {
  color: var(--gold);
}

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

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

.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}

.info-item:hover {
  border-color: var(--gold);
  transform: translateX(5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.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);
}

/* ========================================
   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: var(--black-light);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  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: cover;
  border: 2px solid var(--gold);
}

.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);
}

/* ========================================
   BOOKING FORM
   ======================================== */
.booking-form-container {
  max-width: 500px;
  margin: 0 auto;
}

.booking-form {
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.form-group label i {
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 136, 136, 0.6);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--black);
  color: var(--white);
}

.form-group select optgroup {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-submit-btn {
  width: 100%;
  padding: 1rem;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.booking-submit-btn:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.booking-deposit-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 1rem;
  font-style: italic;
}

.booking-deposit-note i {
  color: var(--gold);
  margin-right: 0.3rem;
}

/* ========================================
   RESPONSIVE - TABLET (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  .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.75rem;
  }

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

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

  .item-name em {
    font-size: 0.65rem;
  }

  .item-icon {
    font-size: 0.65rem;
    width: 14px;
  }

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

  .deposit-section {
    padding: 2rem 1.25rem;
  }

  .deposit-container {
    padding: 1.5rem 1.25rem;
  }

  .deposit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .deposit-icon i {
    font-size: 1.2rem;
  }

  .deposit-container h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .deposit-container p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  #booking {
    padding: 3rem 1.25rem;
  }

  .booking-form {
    padding: 1.5rem 1.25rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
  }

  .booking-submit-btn {
    padding: 0.9rem;
    font-size: 0.9rem;
  }

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

  .info-details {
    gap: 1rem;
  }

  .info-item {
    padding: 1.25rem;
    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) {
  .header {
    padding: 0.6rem 0.75rem;
  }

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

  .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.5rem;
  }

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

  .item-name em {
    font-size: 0.6rem;
  }

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

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

  .home-service-badge {
    font-size: 0.6rem;
    padding: 0.25rem 0.6rem;
  }

  .home-service-note {
    font-size: 0.7rem;
  }

  .home-service-discount {
    font-size: 0.75rem;
  }

  .deposit-container {
    padding: 1.25rem 1rem;
  }

  .deposit-container h3 {
    font-size: 1rem;
  }

  .deposit-container p {
    font-size: 0.8rem;
  }

  .booking-form {
    padding: 1.25rem 1rem;
  }

  .form-group label {
    font-size: 0.75rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem 0.8rem;
    font-size: 0.8rem;
  }

  .info-item {
    padding: 1rem;
    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;
  }

  .wa-bubble {
    font-size: 0.65rem;
    padding: 0.4rem 0.7rem;
  }

  .footer {
    padding: 1.5rem 1rem 4rem;
  }

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

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

  .popup-card.coupon {
    max-width: 300px;
    padding: 1.5rem 1rem;
  }

  .coupon-logo {
    width: 65px;
    height: 65px;
  }

  .coupon-title-new {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .coupon-title {
    font-size: 1.2rem;
  }

  .coupon-discount-ribbon {
    font-size: 1.6rem;
  }

  .coupon-cta {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .popup-close {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }
}

/* Safe area for iPhone notch */
@supports (padding-top: env(safe-area-inset-top)) {
  .header {
    padding-top: calc(0.75rem + env(safe-area-inset-top));
    padding-left: calc(1rem + env(safe-area-inset-left));
    padding-right: calc(1rem + env(safe-area-inset-right));
  }

  .footer {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }
}
