/* ============ VARIABLES ============ */
:root {
  --bg-dark: #0b0b0d;
  --bg-dark-2: #131316;
  --bg-card: #1a1a1e;
  --gold: #cda434;
  --gold-light: #e8c766;
  --white: #f5f5f2;
  --gray: #a3a3ab;
  --border: rgba(205, 164, 52, 0.18);
  --shadow: 0 20px 50px rgba(0,0,0,0.45);
  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; padding: 120px 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1400;
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(205, 164, 52, 0.4);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
}
.btn--outline:hover {
  background: var(--gold);
  color: #1a1400;
  transform: translateY(-3px);
}

.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.icon { width: 20px; height: 20px; fill: currentColor; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}
.logo span { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after { width: 100%; }

.nav__cta { padding: 10px 22px; font-size: 0.88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.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 {
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat fixed;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.75) 0%, rgba(11,11,13,0.55) 45%, rgba(11,11,13,0.95) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__eyebrow {
  color: var(--gold-light);
  letter-spacing: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero__title span { color: var(--gold); }

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 26px; }
}

/* ============ SECTION HEAD ============ */
.section__eyebrow {
  color: var(--gold-light);
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}

/* ============ ABOUT ============ */
.about { background: var(--bg-dark-2); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about__image img {
  border-radius: var(--radius);
  filter: grayscale(15%);
}
.about__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(11,11,13,0.85);
  border: 1px solid var(--gold);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 14px 22px;
  text-align: center;
}
.about__badge strong {
  display: block;
  font-size: 1.6rem;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}
.about__badge span { font-size: 0.75rem; color: var(--gray); }

.about__text {
  color: var(--gray);
  margin-bottom: 18px;
}
.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}
.stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}
.stat span { font-size: 0.82rem; color: var(--gray); }

/* ============ SERVICES ============ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.service-card__img {
  height: 200px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service-card:hover .service-card__img img { transform: scale(1.1); }

.service-card__body { padding: 28px; }
.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(205,164,52,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  margin-top: -60px;
  border: 1px solid var(--gold);
  position: relative;
  z-index: 2;
}
.service-card__icon svg { width: 22px; height: 22px; fill: var(--gold-light); }
.service-card__body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card__body p { color: var(--gray); font-size: 0.92rem; }

/* ============ GALLERY ============ */
.gallery { background: var(--bg-dark-2); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery__item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  position: relative;
}
.gallery__item::after {
  content: '\002B';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--gold-light);
  background: rgba(11,11,13,0.55);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery__item:hover img { transform: scale(1.12); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: zoomIn 0.35s ease;
}
@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox__close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none;
  color: var(--white); font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox__close:hover { color: var(--gold); }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox__nav:hover { background: var(--gold); color: #1a1400; }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ============ TESTIMONIALS ============ */
.testimonial-carousel {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65,0,0.35,1);
}
.testimonial-card {
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px;
  text-align: center;
}
.stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.7;
}
.testimonial-author { color: var(--gold-light); font-weight: 600; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.testimonial-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dots button.active { background: var(--gold); width: 28px; border-radius: 6px; }

/* ============ BOOKING ============ */
.booking { background: var(--bg-dark-2); }
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.booking__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form__row { margin-bottom: 20px; }
.form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__row label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 8px;
}
.form__row input,
.form__row select,
.form__row textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205,164,52,0.15);
}
.form__row textarea { resize: vertical; }
.form__success {
  display: none;
  margin-top: 16px;
  color: var(--gold-light);
  text-align: center;
  font-size: 0.9rem;
}
.form__success.show { display: block; animation: fadeIn 0.4s ease; }

/* ============ LOCATION ============ */
.location__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border);
}
.location__map iframe { height: 100%; min-height: 420px; filter: grayscale(30%) invert(92%) contrast(90%); }
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 18px;
}
.info-card h3 { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 10px; }
.info-card p { color: var(--gray); font-size: 0.92rem; }

.social-links { display: flex; gap: 14px; margin-top: 10px; }
.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-icon svg { width: 18px; height: 18px; fill: var(--gold-light); }
.social-icon:hover {
  background: var(--gold);
  transform: translateY(-4px);
}
.social-icon:hover svg { fill: #1a1400; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer p { color: var(--gray); font-size: 0.85rem; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 999;
  animation: pulse 2.4s infinite;
  transition: var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5), 0 8px 24px rgba(0,0,0,0.35); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 8px 24px rgba(0,0,0,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 24px rgba(0,0,0,0.35); }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal[data-reveal="fade"] { }
.reveal[data-reveal="fade-up"] { transform: translateY(40px); }
.reveal[data-reveal="fade-right"] { transform: translateX(-50px); }
.reveal[data-reveal="fade-left"] { transform: translateX(50px); }
.reveal[data-reveal="zoom"] { transform: scale(0.85); }

.reveal.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .about__grid, .booking__grid, .location__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  section { padding: 90px 0; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-dark-2);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border);
  }
  .nav.active { right: 0; }
  .nav__list { flex-direction: column; gap: 24px; }
  .nav__cta { width: 100%; justify-content: center; }
  .hamburger { display: flex; }

  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .about__stats { flex-wrap: wrap; gap: 24px; }
  .form__row--split { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  section { padding: 70px 0; }
  .booking__form { padding: 26px; }
  .testimonial-card { padding: 32px 24px; }
}
