/* =====================================================
   BSS VILLA & RESORT – MIDNIGHT HILLS LUXURY (FINAL)
   ===================================================== */

/* ---------- VARIABLES ---------- */
:root {
  --bg-dark: #0e0e0e;
  --bg-secondary: #151515;
  --gold: #c9a24d;
  --text-white: #ffffff;
  --text-muted: #b0b0b0;
  --border-dark: #2a2a2a;
}

/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- BASE ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}

p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ---------- LAYOUT ---------- */
section {
  padding: 110px 0;
  position: relative;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 8%;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  max-width: 650px;
  margin-left: 8%;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content p {
  margin: 20px 0 35px;
}

/* ---------- DIVIDER ---------- */
.divider {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 30px;
}

/* ---------- BUTTONS ---------- */
.btn-gold,
.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-left: 15px;
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* ---------- FEATURED VILLAS ---------- */
.featured-villas h2 {
  text-align: center;
}

.villa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.villa-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  transition: transform 0.5s ease;
}

.villa-card:hover {
  transform: translateY(-12px);
}

.villa-img {
  overflow: hidden;
}

.villa-img img {
  transition: transform 0.6s ease;
}

.villa-card:hover img {
  transform: scale(1.1);
}

.villa-info {
  padding: 25px;
}

.villa-info h3 {
  margin-bottom: 8px;
}

.price {
  display: block;
  margin: 12px 0 22px;
  color: var(--gold);
}

/* ---------- AMENITIES ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.amenity-card {
  background: var(--bg-secondary);
  padding: 25px;
  border: 1px solid var(--border-dark);
  text-align: center;
  transition: transform 0.4s ease;
}

.amenity-card:hover {
  transform: translateY(-8px);
}

/* ---------- CTA ---------- */
.cta-section {
  background: url('../images/hero/hero1.png') center/cover no-repeat;
  text-align: center;
}

.cta-section .overlay-dark {
  background: rgba(0,0,0,0.7);
}

.cta-section h2 {
  font-size: 38px;
}

.cta-section p {
  margin: 20px 0 30px;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- FOOTER ---------- */
footer {
  background: #090909;
  padding: 40px 8%;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .villa-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    margin-left: 6%;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 15px;
  }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}






/* ---------- ABOUT PREVIEW UPGRADE ---------- */
.about-preview {
  background: linear-gradient(
    180deg,
    #0e0e0e 0%,
    #111111 100%
  );
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.about-image img {
  height: 420px;
  object-fit: cover;
  transition: transform 1s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

.about-content h2 {
  font-size: 34px;
}

.about-content p {
  margin: 22px 0 30px;
  max-width: 480px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 320px;
  }
}










/* ---------- VILLA DETAILS PAGE ---------- */
.villa-details-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.villa-gallery img {
  margin-bottom: 20px;
  border: 1px solid var(--border-dark);
}

.villa-info h1 {
  font-size: 38px;
}

.villa-meta {
  list-style: none;
  margin: 25px 0 35px;
}

.villa-meta li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .villa-details-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== VILLA DETAILS PAGE ===== */

.villa-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.villa-slider {
  position: relative;
}

.villa-slider img {
  height: 420px;
  object-fit: cover;
  border: 1px solid var(--border-dark);
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.slider-controls button {
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 20px;
  padding: 6px 14px;
  margin-left: 8px;
  cursor: pointer;
}

.villa-info h1 {
  font-size: 40px;
}

.villa-desc {
  margin: 20px 0;
}

.villa-meta {
  list-style: none;
  margin: 20px 0 30px;
}

.villa-meta li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

.villa-price {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 25px;
}

/* OTHER VILLAS */
.other-villas {
  background: #0e0e0e;
}

@media (max-width: 900px) {
  .villa-details-grid {
    grid-template-columns: 1fr;
  }

  .villa-slider img {
    height: 300px;
  }
}

/* ===============================
   OTHER VILLAS – WIDE PREMIUM CARDS
   =============================== */

.wide-section .container {
  max-width: 1400px;   /* USE MORE SCREEN */
}

.other-villas .villa-grid {
  grid-template-columns: repeat(2, 1fr); /* ONLY 2 BIG CARDS */
  gap: 60px;
  margin-top: 60px;
}

.other-villas .villa-card {
  background: #151515;
  border: 1px solid var(--border-dark);
  padding: 0;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.other-villas .villa-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* BIG IMAGE */
.other-villas .villa-card img {
  height: 360px;            /* BIGGER IMAGE */
  object-fit: cover;
}

/* CONTENT */
.other-villas .villa-card h3 {
  font-size: 22px;
  margin: 20px;
}

.other-villas .villa-card p {
  font-size: 16px;
  margin: 0 20px 20px;
  color: var(--gold);
}

.other-villas .villa-card .btn-outline {
  margin: 0 20px 25px;
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .other-villas .villa-grid {
    grid-template-columns: 1fr;
  }

  .other-villas .villa-card img {
    height: 260px;
  }
}


/* ===== OTHER VILLAS – RICH CARDS ===== */

.other-villas .villa-card {
  background: #151515;
  border: 1px solid var(--border-dark);
}

.other-villas .villa-card img {
  height: 360px;
  object-fit: cover;
}

.villa-card-content {
  padding: 30px;
}

.villa-card-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.villa-subtext {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.villa-mini-info {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: #d0d0d0;
  margin-bottom: 18px;
}

.other-villas .price {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 22px;
}






/* ===== HOME VILLA CARDS ===== */

.featured-villas .villa-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 70px;
}

.featured-villas .villa-card img {
  height: 240px;
  object-fit: cover;
}

.villa-card-content {
  padding: 28px;
}

.villa-subtext {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.villa-mini-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #d0d0d0;
  margin-bottom: 18px;
}

.featured-villas .price {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .featured-villas .villa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-villas .villa-grid {
    grid-template-columns: 1fr;
  }
}







/* ===== FEATURED VILLAS (UPGRADED) ===== */

.villa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 70px;
}

.villa-card {
  background: #151515;
  border: 1px solid #2a2a2a;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.villa-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.villa-image img {
  height: 260px;
  object-fit: cover;
}

.villa-content {
  padding: 30px;
}

.villa-content h3 {
  margin-bottom: 8px;
}

.villa-subtext {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 18px;
}

.villa-features {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #d0d0d0;
  margin-bottom: 22px;
}

.price {
  font-size: 20px;
  color: #c9a24d;
  margin-bottom: 25px;
}

.price span {
  font-size: 14px;
  color: #b0b0b0;
}

@media (max-width: 900px) {
  .villa-grid {
    grid-template-columns: 1fr;
  }

  .villa-image img {
    height: 220px;
  }
}


/* ===== VILLA DETAILS PAGE ===== */

.villa-hero {
  margin-top: 90px;
}

.villa-hero-slider {
  position: relative;
  height: 80vh;
}

.villa-hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 26px;
  padding: 10px 18px;
  cursor: pointer;
}

.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }

/* OVERVIEW */
.villa-overview h1 {
  font-size: 42px;
}

.villa-overview-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.villa-stats {
  display: flex;
  gap: 25px;
  margin-top: 20px;
}

.villa-price-box {
  text-align: right;
}

.villa-price-box p {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 15px;
}

/* ABOUT */
.villa-about p {
  max-width: 800px;
  margin-bottom: 30px;
}

.villa-details-list li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* HIGHLIGHTS */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.highlight-card {
  background: #151515;
  border: 1px solid var(--border-dark);
  padding: 30px;
  text-align: center;
  transition: transform 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
}

/* OTHER VILLAS */
.wide-section .container {
  max-width: 1400px;
}

@media (max-width: 900px) {
  .villa-overview-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .villa-hero-slider {
    height: 60vh;
  }
}
/* REMOVE NAVBAR GAP */
body, .villa-hero { margin-top: 0 !important; padding-top: 0 !important; }

/* HERO */
.villa-hero-slider { height: 85vh; position: relative; }
.villa-hero-slider img { width: 100%; height: 100%; object-fit: cover; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 26px;
  padding: 10px 18px;
}
.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }

/* OVERVIEW */
.villa-overview h1 { font-size: 42px; }
.villa-overview-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
}
.villa-stats { display: flex; gap: 25px; margin-top: 20px; }
.villa-price-box p { font-size: 26px; color: var(--gold); }

/* QUICK DETAILS */
.quick-details-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
.detail-box {
  background:#151515;
  border:1px solid var(--border-dark);
  padding:30px;
  text-align:center;
}
.detail-box span { font-size:28px; }

/* ABOUT ICONS */
.about-icons {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:30px;
}
.about-icons div {
  background:#151515;
  border:1px solid var(--border-dark);
  padding:18px;
  text-align:center;
}

/* HIGHLIGHTS */
.highlights-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}
.highlight-card {
  background:#151515;
  border:1px solid var(--border-dark);
  padding:30px;
  text-align:center;
}

/* OTHER VILLAS */
.wide-section .container { max-width:1400px; }

/* RESPONSIVE */
@media(max-width:900px){
  .villa-overview-grid,
  .quick-details-grid,
  .about-icons,
  .highlights-grid {
    grid-template-columns:1fr 1fr;
  }
  .villa-hero-slider { height:60vh; }
}
/* REMOVE GAP */
.villa-hero { margin-top: 0; }

/* HERO */
.villa-hero-slider {
  height: 90vh;
  position: relative;
}
.villa-hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.1)
  );
  display: flex;
  align-items: flex-end;
}

.hero-content {
  padding: 80px 8%;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 50px;
}

.hero-intro {
  font-size: 18px;
  margin: 20px 0;
}

.hero-sub {
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin: 25px 0;
}

.hero-price {
  font-size: 26px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 30px;
}

/* DESCRIPTION */
.villa-description p {
  max-width: 900px;
  line-height: 1.9;
}

/* SPECS */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
.spec-box {
  background:#151515;
  border:1px solid var(--border-dark);
  padding:30px;
  text-align:center;
}

/* AMENITIES */
.amenities-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.amenities-grid div {
  background:#151515;
  border:1px solid var(--border-dark);
  padding:18px;
  text-align:center;
}

/* RESPONSIVE */
@media(max-width:900px){
  .spec-grid,
  .amenities-grid {
    grid-template-columns:1fr 1fr;
  }
  .hero-content h1 {
    font-size:36px;
  }
}
/* ================= FEATURED VILLAS ================= */

.featured-villas {
  background: radial-gradient(circle at top, #141414, #070707);
}

/* Title */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 60px;
}

/* Grid */
.villa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

/* ================= GLASS CARD ================= */

.glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  transition: transform .6s ease, box-shadow .6s ease;
}

.glass-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.7);
}

/* Image */
.villa-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.villa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.glass-card:hover img {
  transform: scale(1.12);
}

/* Price badge */
.price-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 14px;
  font-size: 14px;
}

/* Content */
.villa-content {
  padding: 28px;
}

.villa-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Features */
.villa-features {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Specs */
.villa-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #ddd;
  margin-bottom: 26px;
}

.villa-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Button */
.btn-glass {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: background .4s ease, color .4s ease;
}

.btn-glass:hover {
  background: var(--gold);
  color: #000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .villa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .villa-grid {
    grid-template-columns: 1fr;
  }
}





/* ================= FEATURED VILLAS ================= */

.featured-villas {
  padding: 120px 0;
  background: radial-gradient(circle at top, #141414, #070707);
}

/* Title */
.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.7;
}

/* Grid */
.villa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* ================= GLASS CARD ================= */

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  transition: transform .6s ease, box-shadow .6s ease;
}

.glass-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.7);
}

/* Image */
.villa-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.villa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.glass-card:hover img {
  transform: scale(1.12);
}

/* Price badge */
.villa-price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 16px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Content */
.villa-content {
  padding: 30px;
}

/* Title */
.villa-title {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Features */
.villa-features {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Specs */
.villa-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #ddd;
  margin-bottom: 28px;
}

/* CTA */
.villa-actions {
  text-align: center;
}

.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: transform .4s ease, box-shadow .4s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .villa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .villa-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 34px;
  }
}
/* ===== FIXED HERO (NO EMPTY SPACE) ===== */

.villa-hero {
  margin: 0;
  padding: 0;
}

.villa-hero-image {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
}

.villa-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark gradient overlay */
.villa-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.85)
  );
  display: flex;
  align-items: flex-end;
}

/* Content ON IMAGE */
.villa-hero-content {
  padding: 70px 8%;
  max-width: 900px;
}

.villa-hero-content h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.villa-tagline {
  font-size: 15px;
  color: #d4af37;
  margin-bottom: 20px;
}

.villa-meta {
  display: flex;
  gap: 28px;
  font-size: 14px;
  margin-bottom: 28px;
}

.villa-cta {
  display: flex;
  align-items: center;
  gap: 30px;
}

.villa-price {
  font-size: 26px;
  color: var(--gold);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 900px) {
  .villa-hero-content h1 {
    font-size: 34px;
  }
  .villa-meta {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.villa-overview { margin-top: 100px; }
.villa-hero { padding-top: 120px; }
body { padding-top: something; }
/* ===== SCROLL INDICATOR ===== */

.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}
/* ===== GLOBAL SECTION FIX ===== */

.villa-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.villa-section.alt-bg {
  background: #0e0e0e;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* DETAILS GRID */
.details-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.detail-box {
  background: #151515;
  border: 1px solid #222;
  padding: 30px;
  text-align: center;
}

.detail-box span {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

/* AMENITIES */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.amenities-grid div {
  background: #151515;
  border: 1px solid #222;
  padding: 18px;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .details-grid,
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
}










/* ===== LUXURY AMENITIES ===== */

.luxury-amenities {
  padding: 120px 0;
  background: radial-gradient(circle at top, #141414, #0b0b0b);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.amenity-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.amenity-card span {
  font-size: 34px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.amenity-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Hover Effect */
.amenity-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(212,175,55,0.15);
}

/* CTA */
.amenities-cta {
  margin-top: 60px;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}












































/* ===== LUXURY FOOTER ===== */

.luxury-footer {
  background: linear-gradient(to top, #050505, #0c0c0c);
  padding: 90px 0 40px;
  color: #cfcfcf;
  border-top: 1px solid #1a1a1a;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #b5b5b5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #b5b5b5;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact li {
  font-size: 14px;
  margin-bottom: 14px;
}

/* CTA */
.footer-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.4s;
}

.footer-cta:hover {
  background: var(--gold);
  color: #000;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-social a {
  margin-left: 14px;
  font-size: 16px;
  color: #aaa;
  transition: 0.3s;
}

.footer-social a:hover {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}




















































































/* ===== ABOUT PAGE ===== */
/* ===== SPLIT HERO (ABOUT PAGE) ===== */

.split-hero {
  padding: 120px 0;
  background: linear-gradient(to right, #050505, #0b0b0b);
}

.split-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.hero-text {
  max-width: 600px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}

.hero-text h1 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 22px;
}

.hero-text h1 span {
  color: var(--gold);
}

.hero-subtext {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.9;
  margin-bottom: 36px;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  gap: 20px;
}

/* RIGHT IMAGE */
.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: 0.6s ease;
}

/* Subtle hover zoom */
.hero-image:hover img {
  transform: scale(1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .split-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* ===== LUXURY ABOUT HERO ===== */

.luxury-hero {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

/* Background image */
.luxury-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/villas/villa-6.jpg") center/cover no-repeat;
  transform: scale(1.05);
}

/* Dark cinematic overlay */
.luxury-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.85)
    );
  display: flex;
  align-items: center;
}

/* Content */
.hero-content {
  max-width: 900px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}

.luxury-hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 22px;
}

.luxury-hero h1 span {
  color: var(--gold);
}

.hero-subtext {
  font-size: 16px;
  color: #d0d0d0;
  max-width: 650px;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 20px;
}

/* Buttons */
.btn-outline-light {
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.4s;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* Responsive */
@media (max-width: 900px) {
  .luxury-hero h1 {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* Sections */
.about-section {
  padding: 100px 0;
}

.about-section.alt-bg {
  background: #0c0c0c;
}

.about-text {
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.9;
  max-width: 900px;
  margin-bottom: 25px;
}

/* Why Choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  margin-top: 60px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 35px;
  text-align: center;
  transition: 0.4s;
}

.why-card span {
  font-size: 32px;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

/* CTA */
.about-cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(to bottom, #050505, #0b0b0b);
}

.about-cta h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.about-cta p {
  font-size: 15px;
  margin-bottom: 30px;
  color: #bdbdbd;
}

/* Responsive */
@media(max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 34px;
  }
}







/* ===== OUR STORY (UPGRADED) ===== */

.about-story {
  padding: 120px 0;
  background: radial-gradient(circle at top, #141414, #0b0b0b);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT TEXT */
.story-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.story-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #cfcfcf;
  margin-bottom: 22px;
  max-width: 640px;
}

/* RIGHT CARD */
.story-highlight {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 50px 40px;
  position: relative;
}

.highlight-icon {
  font-size: 36px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.story-highlight h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.story-highlight p {
  font-size: 14px;
  color: #d0d0d0;
  line-height: 1.8;
}

.story-signature {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-highlight {
    padding: 40px 30px;
  }
}
/* ===== OUR PHILOSOPHY ===== */

.about-philosophy {
  padding: 120px 0;
  background: linear-gradient(to bottom, #0b0b0b, #050505);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.philosophy-text .lead {
  font-size: 17px;
  color: #e0e0e0;
  line-height: 1.9;
  margin-bottom: 22px;
}

.philosophy-text p {
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.9;
  margin-bottom: 24px;
}

.philosophy-text blockquote {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  font-style: italic;
  color: #d4af37;
}

/* RIGHT PILLARS */
.philosophy-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.pillar-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  transition: 0.4s;
}

.pillar-card span {
  font-size: 30px;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.pillar-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 14px;
  color: #cfcfcf;
}

/* Hover */
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== LOCATION SECTION (UPGRADED) ===== */

.about-location {
  padding: 120px 0;
  background: radial-gradient(circle at top, #141414, #0b0b0b);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT TEXT */
.location-text .lead {
  font-size: 17px;
  color: #e0e0e0;
  line-height: 1.9;
  margin-bottom: 20px;
}

.location-text p {
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.9;
  margin-bottom: 26px;
}

.location-highlights {
  list-style: none;
  padding: 0;
}

.location-highlights li {
  font-size: 14px;
  margin-bottom: 14px;
  color: #d0d0d0;
}

/* RIGHT VISUAL */
.location-visual {
  position: relative;
}

.map-placeholder {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}

.map-placeholder span {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 10px;
}

.map-placeholder p {
  font-size: 14px;
  color: #cfcfcf;
  text-align: center;
}

/* Hover */
.map-placeholder:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(212,175,55,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-placeholder {
    height: 260px;
  }
}







































/* ===== VILLAS PAGE ===== */

.villas-hero {
  height: 60vh;
  background: url("assets/images/villas-hero.jpg") center/cover no-repeat;
  position: relative;
}

.villas-hero-overlay {
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
}

.villas-hero h1 {
  font-size: 48px;
  margin-bottom: 14px;
}

.villas-hero p {
  max-width: 650px;
  color: #d0d0d0;
}

/* Intro */
.villas-intro {
  padding: 80px 0;
  text-align: center;
}

.villas-intro p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.9;
}

/* Grid */
.villas-grid-section {
  padding: 100px 0;
}

.villas-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

/* Card */
.villa-card.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s;
}

.villa-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.villa-image {
  position: relative;
}

.villa-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.villa-price {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.7);
  padding: 6px 14px;
  color: var(--gold);
  font-size: 14px;
}

/* Content */
.villa-content {
  padding: 30px;
}

.villa-tagline {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 16px;
}

.villa-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  margin-bottom: 22px;
}

/* CTA */
.villas-cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(to bottom, #050505, #0b0b0b);
}

.villas-cta h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.villas-cta p {
  color: #cfcfcf;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1000px) {
  .villas-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .villas-grid {
    grid-template-columns: 1fr;
  }

  .villas-hero h1 {
    font-size: 34px;
  }
}



/* ===== VILLAS EDITORIAL INTRO ===== */

.villas-editorial {
  padding: 120px 0 90px;
  text-align: center;
  background: radial-gradient(circle at top, #141414, #0b0b0b);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

.villas-editorial h2 {
  font-size: 44px;
  margin-bottom: 22px;
}

.editorial-lead {
  max-width: 820px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.9;
  color: #e0e0e0;
}

.editorial-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 30px;
}

.editorial-text {
  max-width: 900px;
  margin: auto;
  font-size: 15px;
  line-height: 1.9;
  color: #cfcfcf;
}

/* Responsive */
@media (max-width: 900px) {
  .villas-editorial h2 {
    font-size: 34px;
  }
}
/* ===== VILLAS HERO – LUXURY UPGRADE ===== */

.villas-hero-upgraded {
  position: relative;
  min-height: 65vh;
  overflow: hidden;
}

/* Subtle textured background */
.villas-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.08), transparent 60%),
    linear-gradient(to bottom, #0b0b0b, #050505);
}

/* Overlay */
.villas-hero-overlay {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
}

/* Centered content */
.hero-center {
  max-width: 900px;
  text-align: center;
}

/* Eyebrow */
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 18px;
}

/* Heading */
.villas-hero-upgraded h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

/* Lead */
.hero-lead {
  font-size: 17px;
  line-height: 1.9;
  color: #e0e0e0;
  margin-bottom: 34px;
}

/* Divider */
.hero-divider {
  width: 90px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 34px;
}

/* Supporting text */
.hero-support {
  font-size: 15px;
  line-height: 1.9;
  color: #cfcfcf;
}

/* Responsive */
@media (max-width: 900px) {
  .villas-hero-upgraded h1 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 16px;
  }
}
/* ===== VILLAS HERO (IMAGE LEFT, TEXT RIGHT) ===== */

.villas-hero-split {
  padding: 120px 0;
  background: linear-gradient(to right, #050505, #0b0b0b);
}

.villas-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.villas-hero-image {
  position: relative;
  overflow: hidden;
}

.villas-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  transform: scale(1.05);
  transition: 0.6s ease;
}

/* Subtle luxury zoom */
.villas-hero-image:hover img {
  transform: scale(1);
}

/* CONTENT */
.villas-hero-content {
  max-width: 600px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}

.villas-hero-content h1 {
  font-size: 46px;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 17px;
  line-height: 1.9;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 30px;
}

.hero-support {
  font-size: 15px;
  line-height: 1.9;
  color: #cfcfcf;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .villas-hero-grid {
    grid-template-columns: 1fr;
  }

  .villas-hero-image img {
    height: 300px;
  }

  .villas-hero-content h1 {
    font-size: 34px;
  }
}



























/* ===== AMENITIES PAGE ===== */

.amenities-hero-split {
  padding: 120px 0;
  background: linear-gradient(to right, #050505, #0b0b0b);
}

.amenities-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.amenities-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  transition: 0.6s;
}

.amenities-hero-image:hover img {
  transform: scale(1.03);
}

.amenities-hero-content h1 {
  font-size: 46px;
  margin-bottom: 22px;
}

/* GRID */
.amenities-grid-section {
  padding: 120px 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.amenity-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 30px;
  text-align: center;
  transition: 0.4s;
}

.amenity-card span {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.amenity-card p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

.amenity-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

/* EXPERIENCE */
.amenities-experience {
  padding: 120px 0;
  text-align: center;
  background: radial-gradient(circle at top, #141414, #0b0b0b);
}

.amenities-experience p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  line-height: 1.9;
  color: #cfcfcf;
}

/* CTA */
.amenities-cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(to bottom, #050505, #0b0b0b);
}

/* Responsive */
@media (max-width: 1000px) {
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amenities-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenities-hero-content h1 {
    font-size: 34px;
  }
}































/* ===== GALLERY PAGE ===== */

.gallery-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: radial-gradient(circle at top, #141414, #0b0b0b);
}

.gallery-hero h1 {
  font-size: 48px;
  margin-bottom: 18px;
}

.gallery-hero p {
  max-width: 720px;
  margin: auto;
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.8;
}

/* GRID */
.gallery-section {
  padding: 100px 0;
}

.gallery-grid {
  column-count: 4;
  column-gap: 20px;
}

.gallery-item {
  margin-bottom: 20px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    column-count: 1;
  }
}



























/* ===== CONTACT PAGE ===== */

.contact-hero {
  padding: 120px 0 90px;
  text-align: center;
  background: radial-gradient(circle at top, #141414, #0b0b0b);
}

.contact-hero h1 {
  font-size: 48px;
  margin-bottom: 18px;
}

.contact-hero p {
  max-width: 760px;
  margin: auto;
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.8;
}

/* GRID */
.contact-main {
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}

.contact-info h2 {
  font-size: 32px;
}

.contact-info p {
  margin: 20px 0 30px;
  color: #cfcfcf;
  line-height: 1.8;
}

.contact-details li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #e5e5e5;
}

.trust-note {
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}

/* FORM */
.contact-form-box {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 50px;
}

.contact-form-box h3 {
  margin-bottom: 30px;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 14px;
  color: #fff;
  outline: none;
}

.form-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 13px;
  pointer-events: none;
  transition: 0.3s;
  background: #0b0b0b;
  padding: 0 6px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 11px;
  color: var(--gold);
}

.btn-gold.full {
  width: 100%;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 40px 30px;
  }
}
/* ===== SELECT DROPDOWN FIX ===== */

.form-group select {
  background-color: #0b0b0b;
  color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Dropdown options */
.form-group select option {
  background: #0b0b0b;
  color: #ffffff;
}

/* Fix label position for select */
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
  top: -8px;
  font-size: 11px;
  color: var(--gold);
}

/* Arrow indicator (optional but premium) */
.form-group::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
}
/* ===== CONTACT FORM FIX ===== */

.form-group {
  position: relative;
  margin-bottom: 28px;
}

/* Inputs & textarea */
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px;
  color: #fff;
  outline: none;
  font-size: 14px;
}

/* Floating labels (inputs & textarea only) */
.form-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #aaa;
  background: #0b0b0b;
  padding: 0 6px;
  transition: 0.3s;
  pointer-events: none;
}

/* Float when active */
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 11px;
  color: var(--gold);
}

/* TEXTAREA FIX */
.textarea-group label {
  top: 18px;
  transform: none;
}

/* SELECT FIX */
.select-group {
  margin-top: 10px;
}

.select-group select {
  appearance: none;
  cursor: pointer;
}

.static-label {
  position: static;
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--gold);
}

/* Dropdown options */
select option {
  background: #0b0b0b;
  color: #fff;
}

/* Button */
.btn-gold.full {
  width: 100%;
  margin-top: 10px;
}
/* CONTACT FORM FIX */

.form-group {
  position: relative;
  margin-bottom: 26px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px;
  color: #fff;
}

.form-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #aaa;
  background: #0b0b0b;
  padding: 0 6px;
  pointer-events: none;
  transition: 0.3s;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 11px;
  color: var(--gold);
}

.static-label {
  position: static;
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--gold);
}

.btn-gold.full {
  width: 100%;
  margin-top: 10px;
}

/* SUCCESS */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.success-box {
  background: #0b0b0b;
  padding: 40px 50px;
  border: 1px solid var(--gold);
  text-align: center;
}

.checkmark {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 10px;
}




















/* ===== BOOKING PAGE ===== */

.booking-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: radial-gradient(circle at top, #141414, #0b0b0b);
}

.booking-hero h1 {
  font-size: 48px;
  margin-bottom: 18px;
}

.booking-hero p {
  max-width: 720px;
  margin: auto;
  color: #cfcfcf;
  font-size: 16px;
}

/* FORM */
.booking-section {
  padding: 120px 0;
}

.booking-box {
  max-width: 820px;
  margin: auto;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 60px;
}

.booking-box h2 {
  text-align: center;
}

.form-row {
  margin-bottom: 25px;
}

.form-row label {
  display: block;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px;
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-note {
  margin-top: 15px;
  font-size: 13px;
  text-align: center;
  color: #aaa;
}

/* Responsive */
@media (max-width: 700px) {
  .booking-box {
    padding: 40px 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
