/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --black-light: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #f0c75e;
  --white: #f5f5f5;
  --gray: #b0b0b0;
  --whatsapp: #25D366;
  --instagram: #E1306C;
  --font-main: 'Montserrat', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gold-text {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* WhatsApp button */
.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  border-color: var(--whatsapp);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: transparent;
  color: var(--whatsapp);
  border-color: var(--whatsapp);
  transform: translateY(-2px);
}

.wa-icon {
  font-size: 1.2rem;
}

/* ========== HEADER / NAVIGATION ========== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  gap: 5px;
  padding: 10px;
  z-index: 1001; /* Ensure it's above the menu */
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  display: block;
}

/* ========== HERO ========== */
.hero {
  height: 100vh;
  min-height: 700px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d4af37" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,181.3C384,203,480,213,576,186.7C672,160,768,96,864,90.7C960,85,1056,139,1152,154.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center/cover,
              linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--gray);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-img {
  width: 100%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--gray);
}

.glory-second-photo {
  text-align: center;
  margin-top: 2rem;
}

.glory-img-2 {
  max-width: 400px;
  width: 100%;
  border: 1px solid var(--gold);
  border-radius: 8px;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--black-light);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.service-img {
  width: 100%;
  border-radius: 6px;
  margin-top: 1rem;
  border: 1px solid var(--gold);
}

/* ========== TRANSFORMATIONS ========== */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  flex: 1 1 300px;
}

.gallery-item.double {
  flex: 2 1 600px;
}

.gallery-img {
  width: 100%;
  display: block;
  border: 2px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-img:hover {
  transform: scale(1.02);
}

.before-after {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.before-after .half {
  width: calc(50% - 0.5rem);
}

.arrow {
  font-size: 2rem;
  color: var(--gold);
}

.caption {
  text-align: center;
  margin-top: 0.5rem;
  color: var(--gray);
  font-weight: 600;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  text-align: center;
  padding: 2rem;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  margin-top: 5vh;
  border: 2px solid var(--gold);
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: var(--gold);
  cursor: pointer;
}

/* ========== BOOKING (WhatsApp + Google Form cards) ========== */
.booking-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
  font-size: 1.1rem;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.booking-card {
  background: var(--black-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.booking-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.booking-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.booking-card h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.booking-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.booking-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--gray);
  background: rgba(212, 175, 55, 0.05);
  padding: 1rem;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}

.booking-note p {
  margin: 0;
}

/* ========== COMMUNITY ========== */
.community-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--gray);
}

.community-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  padding: 0.75rem 1rem;
  background: var(--black-light);
  border: 1px solid var(--gold);
  color: var(--white);
  border-radius: 4px;
  min-width: 250px;
  outline: none;
  transition: border var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--gold-light);
}

/* ========== TESTIMONIALS ========== */
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  min-height: 150px;
}

.testimonial {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--gray);
}

.testimonial cite {
  font-weight: 700;
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray);
  cursor: pointer;
  transition: background var(--transition);
}

.dot.active {
  background: var(--gold);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black-light);
  padding: 3rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.5rem;
}

.footer-logo .logo-img {
  height: 50px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

/* Contact row (WhatsApp + Instagram) */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  background: var(--black);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  border: 1px solid var(--gold);
}

.contact-link:hover {
  background: var(--gold);
  color: var(--black);
}

.contact-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-copy {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
  fill: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  /* Mobile navigation */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    /* Hidden by default, shown via JS */
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s ease;
    z-index: 1000;
  }

  .nav.show {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s 0s, opacity 0.3s ease;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .gallery-item.double {
    flex: 1 1 300px;
  }

  .before-after {
    flex-direction: column;
  }

  .before-after .half {
    width: 100%;
  }

  .booking-options {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 55px;
    height: 55px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .floating-whatsapp svg {
    width: 32px;
    height: 32px;
  }
}