/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0F172A;
  --navy2:  #1E293B;
  --navy3:  #334155;
  --amber:  #D97706;
  --gold:   #FBBF24;
  --green:  #25D366;
  --slate:  #64748B;
  --light:  #F8FAFC;
  --white:  #FFFFFF;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(15,23,42,.10);
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

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

.section { padding: 88px 0; }
.section-alt { background: var(--light); }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
}

.section-sub {
  font-size: 15px;
  color: var(--slate);
  margin-top: 10px;
  max-width: 600px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, opacity .18s;
}
.btn:hover { transform: translateY(-2px); opacity: .92; }
.btn:active { transform: translateY(0); }

.btn-whatsapp { background: var(--green); color: #fff; }
.btn-amber    { background: var(--amber); color: #fff; }
.btn-outline  { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.08); }

/* ── Top Bar ───────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 12px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.topbar a:hover { color: var(--gold); }
.topbar a i { color: var(--gold); font-size: 13px; }
.topbar .wa-link i { color: var(--green); }
.topbar .wa-link { color: rgba(255,255,255,.75); }

/* ── Header / Nav ──────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy2);
  border-bottom: 1px solid var(--navy3);
  transition: box-shadow .25s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.25); }

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img { height: 44px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: background .15s, color .15s;
}
.nav a:hover, .nav a.active { background: rgba(255,255,255,.07); color: #fff; }

.nav-cta {
  margin-left: 12px;
  padding: 10px 22px !important;
  background: var(--amber) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,23,42,.55) 0%, rgba(15,23,42,.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--gold); }

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }

.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.80);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  overflow: hidden;
  width: fit-content;
}
.hero-stat {
  padding: 16px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat span {
  font-size: 11px;
  color: rgba(255,255,255,.55);
}

/* ── Rooms ─────────────────────────────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(15,23,42,.13); }

.room-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.room-card:hover .room-img img { transform: scale(1.04); }

.room-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(251,191,36,.4);
}

.room-body { padding: 22px; }
.room-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.room-body p  { font-size: 13px; color: var(--slate); line-height: 1.6; margin-bottom: 16px; }

.room-amenities {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--slate);
}
.room-amenities span { display: flex; align-items: center; gap: 5px; }
.room-amenities i   { color: var(--amber); font-size: 13px; }

.room-body .btn { width: 100%; justify-content: center; }

/* ── About ─────────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 0;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img img { width: 100%; height: 480px; object-fit: cover; }

.about-text .section-title { margin-bottom: 16px; }
.about-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 24px;
}
.about-points { list-style: none; margin-bottom: 32px; }
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy2);
}
.about-points li i { color: var(--amber); margin-top: 2px; flex-shrink: 0; }

/* ── Amenities ─────────────────────────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.amenity-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow);
  transition: transform .22s;
}
.amenity-card:hover { transform: translateY(-4px); }
.amenity-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(217,119,6,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  color: var(--amber);
}
.amenity-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.amenity-card p  { font-size: 13px; color: var(--slate); line-height: 1.6; }

/* ── Gallery ───────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(15,23,42,.8));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform .25s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow);
}
.testi-quote { font-size: 36px; color: var(--amber); line-height: 1; margin-bottom: 12px; }
.testi-card p {
  font-size: 14px;
  font-style: italic;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 18px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong { font-size: 13px; font-weight: 700; color: var(--navy); }
.stars { color: var(--gold); font-size: 11px; margin-top: 2px; }

/* ── CTA Banner ────────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-top: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.cta-section p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Map ───────────────────────────────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow);
  margin-top: 40px;
  height: 460px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: #0D1B2A;
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { height: 44px; margin-bottom: 16px; }
.footer-about { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 20px; }

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a i { font-size: 11px; color: var(--amber); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  align-items: flex-start;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.55); transition: color .15s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold); }
.dev-link { display: flex; align-items: center; gap: 5px; }
.dev-link i { color: #ef4444; font-size: 11px; }

/* ── WhatsApp Float ────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.7); }
}

/* ── Lightbox ──────────────────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 10px; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  opacity: .7;
  transition: opacity .15s;
}
.lightbox-close:hover { opacity: 1; }

/* ── Scroll to top ─────────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 998;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s;
  box-shadow: 0 4px 16px rgba(217,119,6,.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); }

/* ── Animations ────────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy2); padding: 12px 0; gap: 0; border-bottom: 1px solid var(--navy3); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 24px; border-radius: 0; width: 100%; }
  .nav-cta { margin: 8px 24px 4px; border-radius: 10px !important; }
  .hamburger { display: flex; }
  .header { position: sticky; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img img { height: 320px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-stats { flex-wrap: wrap; }
  .topbar-left .topbar-email { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
