/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0B1D2E;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4 { font-weight: 700; letter-spacing: 0.02em; }

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.gold-text { color: #C9A96E; }
.gold-divider {
  border: none; height: 1px; max-width: 200px; margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, #C9A96E, transparent);
}
.subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; color: #B8C4CE; font-size: 1.1rem;
}
.section { padding: 5rem 0; }
.section-alt { background: rgba(15,42,61,0.5); }
.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading h2 { font-size: 2rem; color: #C9A96E; margin-bottom: 0.5rem; }

/* ─── Buttons ─── */
.btn-gold {
  display: inline-block;
  background: linear-gradient(90deg, #A68B4B, #C9A96E, #D4BA82);
  color: #0B1D2E; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; border: none; border-radius: 3px;
  cursor: pointer; transition: opacity 0.2s; text-align: center;
}
.btn-gold:hover { opacity: 0.9; }
.btn-outline {
  display: inline-block; border: 1px solid rgba(201,169,110,0.5);
  color: #C9A96E; font-weight: 500; letter-spacing: 0.02em;
  border-radius: 3px; cursor: pointer; transition: background 0.2s; text-align: center;
}
.btn-outline:hover { background: rgba(201,169,110,0.1); }
.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.95rem; }
.btn-block { display: block; width: 100%; padding: 0.9rem; font-size: 0.85rem; }

/* ─── Navbar ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}
nav.scrolled { background: rgba(11,39,45,0.95); backdrop-filter: blur(12px); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 5rem;
}
.nav-logo { height: 4rem; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.nav-links a:hover { color: #C9A96E; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: 0.3s; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: rgba(11,29,46,0.98);
  backdrop-filter: blur(16px); display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-weight: 300; letter-spacing: 0.15em; color: #fff; }
.mobile-menu a:hover { color: #C9A96E; }

/* ─── Hero ─── */
.hero { position: relative; height: 100vh; width: 100%; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,29,46,0.9), rgba(11,29,46,0.4) 50%, rgba(11,29,46,0.2));
}
.hero-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; padding-bottom: 8rem;
  text-align: center; padding-left: 1rem; padding-right: 1rem;
}
.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; color: #C9A96E; font-size: 1.15rem;
  margin-bottom: 1rem; letter-spacing: 0.02em;
}
.hero-content h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
.hero-sub { color: #B8C4CE; font-size: 1rem; max-width: 550px; margin-bottom: 2rem; }
.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 999px; border: none;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: 0.3s; padding: 0;
}
.dot.active { background: #C9A96E; width: 2rem; }
@media (min-width: 640px) { .hero-content h1 { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-content h1 { font-size: 4rem; } }

/* ─── Villa Cards ─── */
.villas-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .villas-grid { grid-template-columns: 1fr 1fr; } }
.villa-card {
  background: #0F2A3D; border-radius: 8px; overflow: hidden;
  transition: box-shadow 0.3s;
}
.villa-card:hover { box-shadow: 0 0 30px rgba(201,169,110,0.15); }
.villa-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.villa-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.villa-card:hover .villa-img img { transform: scale(1.05); }
.villa-body { padding: 1.5rem 2rem 2rem; }
.villa-body h3 { color: #C9A96E; font-size: 1.4rem; margin-bottom: 0.25rem; }
.villa-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; color: #B8C4CE; font-size: 0.85rem; margin-bottom: 1rem;
}
.villa-desc { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.pills span {
  font-size: 0.75rem; font-weight: 500; color: #C9A96E;
  border: 1px solid rgba(201,169,110,0.3); border-radius: 999px;
  padding: 0.25rem 0.75rem;
}
.villa-ctas { display: flex; gap: 0.75rem; }
.badge {
  position: absolute; top: 1rem; padding: 0.35rem 1rem; border-radius: 3px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.badge-gold { left: 1rem; background: rgba(201,169,110,0.9); color: #0B1D2E; }
.badge-green { left: 1rem; background: rgba(46,139,87,0.9); color: #fff; }

/* ─── Reviews ─── */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: 1fr 1fr 1fr; } }
.review-card {
  background: #0B1D2E; border-left: 2px solid rgba(201,169,110,0.5);
  border-radius: 0 8px 8px 0; padding: 1.5rem;
}
.stars { color: #C9A96E; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; color: rgba(255,255,255,0.8);
  font-size: 0.85rem; line-height: 1.7; margin-bottom: 1rem;
}
.review-footer { display: flex; align-items: center; justify-content: space-between; }
.review-footer strong { font-size: 0.85rem; }
.review-footer small { color: #6B7D8D; font-size: 0.75rem; }
.review-source {
  font-size: 0.75rem; font-weight: 500; color: rgba(201,169,110,0.7);
  text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.2s;
}
.review-source:hover { color: #C9A96E; }

/* ─── Book Page ─── */
.book-page { padding-top: 7rem; padding-bottom: 4rem; min-height: 80vh; }
.back-link { color: #C9A96E; font-size: 0.85rem; display: inline-block; transition: color 0.2s; }
.back-link:hover { color: #D4BA82; }
.book-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .book-grid { grid-template-columns: 1fr 1fr; } }
.book-card { background: #0F2A3D; border-radius: 8px; overflow: hidden; }
.book-img { position: relative; aspect-ratio: 16/9; }
.book-img img { width: 100%; height: 100%; object-fit: cover; }
.book-body { padding: 1.5rem 2rem 2rem; }
.book-body h3 { color: #C9A96E; font-size: 1.4rem; margin-bottom: 0.5rem; }
.book-note { text-align: center; color: #6B7D8D; font-size: 0.75rem; margin-top: 0.75rem; }

.progress-bar-wrap { margin-bottom: 1.25rem; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.75rem; color: #B8C4CE; margin-bottom: 0.5rem; }
.progress-track { width: 100%; height: 8px; background: #0B1D2E; border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, #A68B4B, #C9A96E, #D4BA82); }

/* ─── Footer ─── */
footer { background: #0F2A3D; padding: 4rem 0 2rem; }
footer h4 { color: #C9A96E; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
footer ul { display: flex; flex-direction: column; gap: 0.75rem; }
footer a { color: #B8C4CE; font-size: 0.85rem; transition: color 0.2s; }
footer a:hover { color: #C9A96E; }
footer li { color: #B8C4CE; font-size: 0.85rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-logo { height: 4rem; width: auto; margin-bottom: 1rem; }
.footer-slogan { font-family: 'Playfair Display', Georgia, serif; font-style: italic; color: #B8C4CE; font-size: 0.85rem; }
.footer-loc { color: #6B7D8D; font-size: 0.75rem; margin-top: 0.75rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.75rem; color: #6B7D8D; }
.footer-motto { letter-spacing: 0.15em; text-transform: uppercase; }

.booking-banner {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  padding: 1.5rem; background: #0B1D2E; border-radius: 8px;
  border: 1px solid rgba(201,169,110,0.1);
}
@media (min-width: 768px) { .booking-banner { grid-template-columns: 1fr 1fr; } }
.booking-item h4 { margin-bottom: 0.5rem; }
.booking-item p { color: #B8C4CE; font-size: 0.85rem; margin-bottom: 0.5rem; }
.booking-item a { color: #C9A96E; font-size: 0.85rem; }
.booking-item a:hover { color: #D4BA82; }

/* ─── FAB ─── */
.fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  background: linear-gradient(90deg, #A68B4B, #C9A96E, #D4BA82);
  color: #0B1D2E; box-shadow: 0 4px 20px rgba(201,169,110,0.3);
  transition: transform 0.2s;
}
.fab:hover { transform: scale(1.1); }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0B1D2E; }
::-webkit-scrollbar-thumb { background: #6B7D8D; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #C9A96E; }
