/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8951F;
  --charcoal: #1A1A1A;
  --charcoal2: #2C2C2C;
  --marble: #F7F5F0;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #555555;
  --text-light: #888888;
  --border: rgba(212, 175, 55, 0.25);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
  --max-w: 1200px;
}

body {
  font-family: var(--font-body);
  background: var(--marble);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: white;
}

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

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes rotateSpin {
  to {
    transform: rotate(360deg);
  }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}

#navbar.scrolled {
  background: rgba(26, 26, 26, 0.97);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
  backdrop-filter: blur(10px);
}

#navbar.menu-open {
  background: transparent;
  box-shadow: none;
  padding: 20px 0;
  backdrop-filter: none;
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-apex {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 4px;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-cta-link {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 8px 18px;
  border-radius: 50px;
}

.nav-cta-link:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(26, 26, 26, 0.8) 100%),
    url('/assets/images/hero_banner_1773500143525.png') center/cover no-repeat;
  background-color: var(--charcoal);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-price {
  display: inline-block;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 50px;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}

.hero-price strong {
  color: var(--gold);
  font-size: 1.15rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px 40px;
  backdrop-filter: blur(10px);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  text-align: center;
  padding: 0 30px;
}

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}

.hero-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.07);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.8), transparent);
  animation: scrollBounce 2s infinite;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(212, 175, 55, 0.1);
  transition: background var(--transition);
}

.strip-item:last-child {
  border-right: none;
}

.strip-item:hover {
  background: rgba(212, 175, 55, 0.06);
}

.strip-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.strip-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.strip-item strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.strip-item span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag.light {
  color: rgba(212, 175, 55, 0.9);
  background: rgba(212, 175, 55, 0.12);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-title.light {
  color: var(--white);
}

.section-title.light em {
  color: var(--gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.65);
}

.section-header.light .section-title em {
  color: var(--gold);
}

/* ===== OVERVIEW ===== */
.overview-section {
  background: var(--marble);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.overview-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.overview-image-card:hover .overview-img {
  transform: scale(1.04);
}

.overview-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.project-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.spec-item:hover {
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
}

.spec-icon {
  font-size: 1.2rem;
}

.spec-item div {
  display: flex;
  flex-direction: column;
}

.spec-item strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-item span {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 2px;
}

.highlights-list h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.highlights-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.check-icon {
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ===== AMENITIES ===== */
.amenities-section {
  background: var(--charcoal);
}

.amenities-section .section-header {
  margin-bottom: 56px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  animation: fadeInUp 0.5s ease both;
  animation-delay: var(--delay, 0s);
}

.amenity-card:hover {
  background: rgba(212, 175, 55, 0.07);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.amenity-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.amenities-pool-showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
}

.pool-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.6s ease, filter 0.3s ease;
}

.amenities-pool-showcase:hover .pool-img {
  transform: scale(1.04);
  filter: brightness(0.7);
}

.pool-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 100%);
}

.pool-caption h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.pool-caption p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  background: var(--charcoal2);
  padding: 0;
  overflow: hidden;
}

/* ===== LISTINGS ===== */
.listings-section {
  background: var(--charcoal2);
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.listing-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.listing-image-wrap {
  position: relative;
  height: 320px;
}

.listing-slider {
  height: 360px;
  background: #f0f0f0;
}

.listing-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.listing-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.listing-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.listing-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  z-index: 3;
  font-size: 1rem;
  line-height: 1;
}

.listing-arrow.prev {
  left: 10px;
}

.listing-arrow.next {
  right: 10px;
}

.listing-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 12px;
  border-radius: 40px;
  text-transform: uppercase;
}

.listing-content {
  padding: 14px;
}

.listing-content h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.listing-area {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.listing-points li {
  font-size: 0.95rem;
}

.listing-points {
  list-style: none;
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.listing-points li {
  color: var(--text-mid);
  font-size: 0.85rem;
  position: relative;
  padding-left: 15px;
}

.listing-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.85);
  cursor: zoom-in;
}

/* ===== IMAGE LIGHTBOX ===== */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(10, 10, 10, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-lightbox.open {
  display: flex;
}

.image-lightbox img {
  max-width: 96vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav.prev {
  left: 16px;
}

.lightbox-nav.next {
  right: 16px;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-count-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
}

.gallery-count-overlay span {
  font-size: 0.85rem;
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  letter-spacing: 1px;
  color: var(--gold);
}

/* ===== FLOOR PLANS ===== */
.floorplan-section {
  background: var(--marble);
}

.plan-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.plan-tab {
  padding: 12px 40px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: all var(--transition);
}

.plan-tab.active,
.plan-tab:hover {
  background: var(--charcoal);
  color: var(--gold);
  border-color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.plan-content {
  display: block;
}

.plan-content.hidden {
  display: none;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.plan-image-wrap {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 20px;
}

.plan-img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.plan-type-badge {
  display: inline-block;
  background: var(--charcoal);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.plan-size {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.plan-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 28px;
}

.plan-rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.room-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.room-icon {
  font-size: 1.1rem;
}

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

/* ===== LOCATION ===== */
.location-section {
  background: var(--charcoal);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-category h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.location-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-category li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.dist-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--marble);
}

.rating-summary {
  display: flex;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 48px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}

.overall-rating {
  text-align: center;
  flex-shrink: 0;
}

.big-rating {
  display: block;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}

.rating-stars {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.rating-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
}

.rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 500;
}

.rating-bar-item>span:first-child {
  width: 120px;
  flex-shrink: 0;
}

.rating-bar-item>span:last-child {
  width: 28px;
  text-align: right;
  font-weight: 700;
  color: var(--gold-dark);
}

.bar-outer {
  flex: 1;
  height: 8px;
  background: #E8E0D0;
  border-radius: 50px;
  overflow: hidden;
}

.bar-inner {
  height: 100%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  border-radius: 50px;
  transition: width 1.2s ease;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.review-stars {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer div {
  display: flex;
  flex-direction: column;
}

.reviewer strong {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.reviewer span {
  font-size: 0.775rem;
  color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-top: 20px;
}

.contact-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-title em {
  color: var(--gold);
}

.contact-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cd-icon {
  width: 42px;
  height: 42px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-item>div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail-item strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.contact-detail-item a,
.contact-detail-item span {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.contact-detail-item a:hover {
  color: var(--gold);
}

.contact-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-hours svg {
  color: var(--gold);
}

/* FORM */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E0DDD5;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--marble);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
  background: var(--white);
}

.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
}

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  min-height: 0;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.9rem;
  margin-top: 6px;
}

.btn-spinner {
  animation: rotateSpin 0.6s linear infinite;
}

.form-status {
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-status.is-error {
  color: #ef4444;
}

.form-status.is-success {
  color: #15803d;
}

.form-disclaimer {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 20px;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.form-success h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-mid);
}

/* ===== FOOTER ===== */
.footer {
  background: #0D0D0D;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.footer-links-col h5 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col li,
.footer-links-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer-links-col a:hover {
  color: var(--gold);
}

.footer-hours {
  margin-top: 18px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-hours strong {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
}

.disclaimer {
  font-size: 0.7rem !important;
}

/* ===== FLOATING + SCROLL TOP ===== */
.float-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.float-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.55);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.5s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

/* ===== HIDDEN ===== */
.hidden {
  display: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .listings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-img {
    height: 360px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map-wrap {
    height: 360px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .strip-item:nth-child(2) {
    border-right: none;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .listing-image-wrap {
    height: 300px;
  }

  .listing-slider {
    height: 340px;
  }

  .gallery-grid {
    grid-template-rows: 240px 240px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .hero-divider {
    width: 60px;
    height: 1px;
  }

  .hero-stat {
    padding: 0;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rating-summary {
    flex-direction: column;
    padding: 24px;
    gap: 28px;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .float-cta {
    display: block;
  }

  .project-specs {
    grid-template-columns: 1fr;
  }

  .plan-rooms {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .listing-content {
    padding: 14px;
  }

  .listing-content h3 {
    font-size: 1rem;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }
}
