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

:root {
  --bg: #f9f5ef;
  --bg2: #f3ede3;
  --glass: rgba(255, 250, 240, 0.65);
  --glass-border: rgba(255, 255, 240, 0.5);
  --gold: #c6a15b;
  --gold-dark: #a37e3a;
  --gold-light: #e6cf9a;
  --text: #2b241b;
  --text-soft: #4e4236;
  --shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
  --shadow-soft: 0 12px 30px -8px rgba(0, 0, 0, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  background: var(--bg);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
}

.section { 
  padding: 5rem 6vw; 
  position: relative; 
}

.section-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--text);
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
  border-radius: 10px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1300px;
  z-index: 1000;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  background: rgba(255, 250, 240, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 240, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  background: rgba(255, 250, 240, 0.8);
  box-shadow: var(--shadow-soft);
  top: 10px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

.logo span { 
  color: var(--gold-dark); 
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.25s;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { 
  width: 100%; 
}

.nav-book-btn {
  padding: 0.5rem 1.5rem !important;
  font-size: 0.85rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--text);
  border-radius: 5px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) { 
  transform: translateY(7px) rotate(45deg); 
}

.hamburger.active span:nth-child(2) { 
  opacity: 0; 
}

.hamburger.active span:nth-child(3) { 
  transform: translateY(-7px) rotate(-45deg); 
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  position: relative;
  padding: 2rem 6vw;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  font-weight: 600;
  letter-spacing: 8px;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.5rem;
  letter-spacing: 3px;
  font-weight: 300;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #f5e7d3;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.2rem;
  border-radius: 60px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.35s;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gold);
  color: #1f1a12;
  box-shadow: 0 12px 25px -5px rgba(198, 161, 91, 0.4);
}

.btn-primary:hover {
  background: #dbb874;
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -5px rgba(198, 161, 91, 0.5);
}

.btn-outline {
  background: rgba(43, 36, 27, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Special styling for email button to ensure visibility */
#sendEmail.btn-outline {
  background: #2b241b;
  color: white;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#sendEmail.btn-outline:hover {
  background: var(--gold-dark);
  color: white;
}

.glass-info-card {
  background: rgba(255, 250, 240, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 1.5rem 2rem;
  margin: 2rem auto 0;
  max-width: 500px;
  display: flex;
  gap: 20px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  flex-wrap: wrap;
}

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

.floating-beauty {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: float 6s infinite;
  z-index: 3;
  color: #fff4e0;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
}

.stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number { 
  font-size: 2.4rem; 
  font-weight: 700; 
  color: var(--gold-dark); 
  display: block;
}

.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.specialties span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.specialties i {
  color: var(--gold);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 240, 0.4);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 40px -10px rgba(0, 0, 0, 0.2);
  background: rgba(255, 250, 240, 0.8);
}

.service-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.service-card h3 { 
  font-weight: 600; 
  margin-bottom: 0.5rem; 
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.service-price { 
  color: var(--gold-dark); 
  font-weight: 700; 
  margin-top: auto;
  margin-bottom: 0.5rem;
}

.service-duration {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.book-service-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* GALLERY */
.gallery-filter {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--gold);
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s;
  color: var(--text);
}

.filter-btn.active, 
.filter-btn:hover {
  background: var(--gold);
  color: white;
}

.masonry {
  columns: 3 250px;
  column-gap: 1rem;
}

.masonry-item {
  margin-bottom: 1rem;
  break-inside: avoid;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.masonry-item img { 
  width: 100%; 
  display: block; 
  transition: transform 0.4s; 
}

.masonry-item:hover img { 
  transform: scale(1.04); 
}

/* LIGHTBOX */
.lightbox {
  position: fixed; 
  inset: 0; 
  background: rgba(0, 0, 0, 0.9);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  z-index: 2000;
  opacity: 0; 
  pointer-events: none; 
  transition: 0.3s;
}

.lightbox.active { 
  opacity: 1; 
  pointer-events: auto; 
}

.lightbox img { 
  max-width: 90%; 
  max-height: 90%; 
  border-radius: 20px; 
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* BOOKING */
.booking-steps {
  display: flex; 
  gap: 0.5rem; 
  margin-bottom: 2rem; 
  flex-wrap: wrap;
  justify-content: center;
}

.step-indicator {
  width: 40px; 
  height: 40px; 
  border-radius: 50%;
  background: #ddd; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-weight: 700; 
  cursor: pointer;
  transition: all 0.3s;
}

.step-indicator.active { 
  background: var(--gold); 
  color: white; 
  box-shadow: 0 5px 15px rgba(198, 161, 91, 0.4);
}

.step-panel { 
  display: none; 
}

.step-panel.active { 
  display: block; 
  animation: fadeUp 0.4s; 
}

.step-heading {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.form-group label { 
  font-weight: 500; 
  display: block; 
  margin-bottom: 5px; 
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%; 
  padding: 0.9rem 1.2rem; 
  border-radius: 30px;
  border: 1px solid #ddd; 
  background: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: border 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.2);
}

.service-checkboxes {
  display: flex; 
  flex-wrap: wrap; 
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-checkboxes label {
  display: flex; 
  align-items: center; 
  gap: 8px;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
}

.service-checkboxes label:hover {
  background: #f0e6d8;
}

.date-scroll { 
  display: flex; 
  gap: 1rem; 
  overflow-x: auto; 
  padding: 0.5rem 0; 
  margin-bottom: 1.5rem;
}

.date-card {
  min-width: 80px; 
  padding: 0.8rem; 
  text-align: center; 
  border-radius: 20px;
  background: white; 
  cursor: pointer; 
  border: 1px solid #ddd; 
  transition: 0.3s;
}

.date-card.selected { 
  background: var(--gold); 
  color: white; 
  border-color: var(--gold); 
  box-shadow: 0 5px 15px rgba(198, 161, 91, 0.3);
}

.time-slots { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.time-slot {
  padding: 0.7rem 1.5rem; 
  border-radius: 40px; 
  background: white; 
  border: 1px solid #ddd;
  cursor: pointer; 
  transition: 0.2s;
}

.time-slot.selected { 
  background: var(--gold); 
  color: white; 
  border-color: var(--gold); 
}

.time-slot.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
}

.payment-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem;
  background: rgba(198, 161, 91, 0.1);
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.payment-info i {
  color: var(--gold-dark);
  font-size: 1.5rem;
}

.booking-summary {
  background: rgba(255, 255, 255, 0.7); 
  backdrop-filter: blur(15px);
  border-radius: var(--radius-lg); 
  padding: 2rem; 
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.payment-note {
  padding: 1rem;
  background: rgba(198, 161, 91, 0.1);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.success-container {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(15px);
  animation: fadeUp 0.5s;
}

.success-icon {
  font-size: 4rem;
  color: #4CAF50;
  margin-bottom: 1rem;
}

.success-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* REVIEWS */
.reviews-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  gap: 2rem; 
}

.review-card {
  background: var(--glass); 
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md); 
  padding: 2rem; 
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.review-stars {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

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

.contact-info-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.contact-info-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-details a,
.contact-details span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  justify-content: center;
}

.contact-details i {
  color: var(--gold-dark);
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* FOOTER */
.footer {
  background: #e9dfd1; 
  padding: 3rem 6vw; 
  text-align: center;
}

.footer h3 {
  font-size: 2rem;
  letter-spacing: 2px;
}

.footer-tagline {
  font-style: italic;
  margin: 0.5rem 0;
}

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

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

.footer-social a {
  color: var(--text);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--gold-dark);
}

.copyright {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* FLOATING WHATSAPP */
.floating-wa {
  position: fixed; 
  bottom: 30px; 
  right: 25px; 
  z-index: 1500;
  background: #25D366; 
  width: 60px; 
  height: 60px; 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite; 
  color: white; 
  font-size: 1.8rem;
  text-decoration: none;
}

@keyframes pulse { 
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); } 
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } 
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } 
}

/* REVEAL ANIMATION */
.reveal { 
  opacity: 0; 
  transform: translateY(30px); 
  transition: opacity 0.7s ease, transform 0.7s ease; 
}

.reveal.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section {
    padding: 3rem 4vw;
  }
  
  .nav-links {
    position: fixed; 
    top: 80px; 
    right: 20px; 
    background: rgba(255, 250, 240, 0.95);
    backdrop-filter: blur(25px); 
    flex-direction: column; 
    padding: 2rem;
    border-radius: 30px; 
    gap: 1.5rem; 
    transform: translateX(120%);
    transition: 0.4s; 
    box-shadow: var(--shadow); 
    width: 220px;
  }
  
  .nav-links.show { 
    transform: translateX(0); 
  }
  
  .hamburger { 
    display: flex; 
  }
  
  .about-grid { 
    grid-template-columns: 1fr; 
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .glass-info-card {
    flex-direction: column;
    align-items: center;
  }
  
  .success-buttons {
    flex-direction: column;
    align-items: center;
  }
}