/* =========================================================
   RLD ALTIMA — Premium Landing Page
   Color Palette: Deep blue + Vibrant yellow + White
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CUSTOM PROPERTIES ── */
:root {
  --gold: #FFB800;
  --gold-light: #FFCC33;
  --gold-dark: #E6A600;
  --charcoal: #051A3B;
  --charcoal-mid: #0A2550;
  --charcoal-soft: #14356A;
  --off-white: #FFFFFF;
  --text-muted: #8D9EB8;
  --white: #F8F6F0;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

.section-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  width: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--charcoal);
  color: var(--off-white);
  overflow-x: hidden !important;
  line-height: 1.7;
  width: 100%;
  position: relative;
}

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

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

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

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

/* ── TYPOGRAPHY ── */
p {
  text-align: justify;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.gold-rule {
  display: block;
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 36px;
}

.gold-rule.center {
  margin: 20px auto 36px;
}

/* ── UTILITY ── */
.section-pad {
  padding: 120px 0;
}

.bg-charcoal-mid {
  background: var(--charcoal-mid);
}

/* ========================================================
   PRELOADER
   ======================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 8px;
  animation: pulse-gold 1.6s ease-in-out infinite;
}

.preloader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
  animation: expand-line 1.8s var(--ease-out) forwards;
}

@keyframes pulse-gold {

  0%,
  100% {
    opacity: .4
  }

  50% {
    opacity: 1
  }
}

@keyframes expand-line {
  to {
    width: 160px;
  }
}

/* ========================================================
   NAVIGATION
   ======================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: var(--white);
  transition: padding 0.5s var(--ease-out), background 0.5s var(--ease-out), box-shadow 0.5s;
}

.site-nav.scrolled {
  padding: 14px 0;
  background: var(--white);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
}

.nav-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 6px;
  color: var(--text-muted);
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  background: #0b2142;
  color: var(--white);
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-nav:hover {
  background: var(--gold);
  color: var(--charcoal);
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  padding-top: 100px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--off-white);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ========================================================
   HERO — CINEMATIC SLIDER
   ======================================================== */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: 85px;
}

.hero-swiper {
  width: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-img {
  width: 100%;
  display: block;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(5, 26, 59, 0.82) 0%,
      rgba(5, 26, 59, 0.45) 55%,
      rgba(5, 26, 59, 0.1) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 9%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 640px;
  color: var(--off-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  margin-bottom: 16px;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 44px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 44px;
}

.hero-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  padding: 16px 40px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.35s, color 0.35s, box-shadow 0.35s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 30px rgba(255, 184, 0, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  padding: 16px 40px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: border-color 0.35s, color 0.35s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero Form — absolute right */
.hero-form-wrap {
  position: absolute;
  top: 5%;
  right: 7%;
  transform: translateY(-50%);
  z-index: 20;
  width: 370px;
}

.hero-form-card {
  justify-items: center;
  background: #fff;
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 184, 0, 0.2);
  padding: 20px 15px;
}

.hero-form-card img {
  background-color: #fff;
  padding: 10px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.input-group-custom {
  margin-bottom: 18px;
  position: relative;
}

.input-group-custom input,
.input-group-custom select {
  width: 100%;
  background: rgba(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.4);
  color: #000;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  appearance: none;
}

.input-group-custom input::placeholder {
  color: #00000073;
}

.input-group-custom input:focus,
.input-group-custom select:focus {
  border-color: var(--gold);
  background: rgba(255, 184, 0, 0.05);
}

.input-group-custom select option {
  background: var(--charcoal-mid);
}

.btn-form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  margin-top: 6px;
}

.btn-form-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.form-disclaimer {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* Hero Navigation */
.hero-nav-bullets {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 14px;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 28px;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: background 0.3s, width 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  width: 54px;
}

.swiper-btn-hero-prev,
.swiper-btn-hero-next {
  position: absolute;
  top: 50%;
  z-index: 20;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 26, 59, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  color: var(--off-white);
  font-size: 1rem;
}

.swiper-btn-hero-prev {
  left: 30px;
}

.swiper-btn-hero-next {
  right: 460px;
}

.swiper-btn-hero-prev:hover,
.swiper-btn-hero-next:hover {
  border-color: var(--gold);
  background: rgba(255, 184, 0, 0.15);
  color: var(--gold);
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  right: 7%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-cue-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {

  0%,
  100% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50% {
    transform: scaleY(0.4);
  }
}

/* ========================================================
   STATS RIBBON
   ======================================================== */
.stats-ribbon {
  background: var(--gold-dark);
  padding: 28px 0;
  overflow: hidden;
}

.stats-ribbon-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 52px;
  border-right: 1px solid rgba(5, 26, 59, 0.2);
}

.stat-pill:last-child {
  border-right: none;
}

.stat-pill-icon {
  font-size: 1.5rem;
  color: rgba(5, 26, 59, 0.55);
}

.stat-pill-val {
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.stat-pill-label {
  text-align: center;
  margin-top: 10px;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(5, 26, 59, 0.75);
}

/* ========================================================
   OVERVIEW / PARALLAX SECTION
   ======================================================== */
.overview-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.overview-parallax-bg {
  position: absolute;
  inset: -80px;
  background: url('../images/gallery/NightDrone_RLD.jpg') center/cover no-repeat;
  background-position: left;
  will-change: transform;
  opacity: 0.5;
  filter: grayscale(30%);
}

.overview-content {
  position: relative;
  z-index: 2;
}

.overview-text p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
}

.spec-item i {
  color: var(--gold);
  width: 18px;
}

.overview-image-wrap {
  position: relative;
}

.overview-image-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border: 1px solid rgba(255, 184, 0, 0.15);
}

.overview-image-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid var(--charcoal);
  outline: 1px solid rgba(255, 184, 0, 0.4);
}

.overview-badge-price {
  position: absolute;
  top: 32px;
  right: -20px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.overview-badge-price .price-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.overview-badge-price .price-sub {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ========================================================
   HIGHLIGHTS — HORIZONTAL MARQUEE CARDS
   ======================================================== */
.highlights-section {
  padding: 120px 0;
  overflow: hidden;
}

.highlights-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.highlights-track {
  display: flex;
  gap: 28px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.highlights-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.highlight-card {
  min-width: 280px;
  padding: 44px 36px;
  background: var(--charcoal-mid);
  border: 1px solid rgba(255, 184, 0, 0.12);
  border-top: 2px solid var(--gold);
  transition: border-color 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.highlight-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  border-top-color: var(--gold);
}

.highlight-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.highlight-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--off-white);
}

.highlight-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================================
   AMENITIES — CREATIVE SWIPER (COVERFLOW)
   ======================================================== */
.amenities-section {
  padding: 80px 0;
  position: relative;
  background: url('../images/gallery/duskcam_RLD.jpg') center/cover no-repeat fixed;
  color: var(--charcoal);
  overflow: hidden;
}

.amenities-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

.amenities-section .container {
  position: relative;
  z-index: 5;
}

.amenities-section .amenity-swiper-wrap {
  position: relative;
  z-index: 5;
}

.amenities-section h2 {
  color: var(--charcoal);
}

.amenity-swiper-wrap {
  position: relative;
  /* padding: 40px 0 80px; */
}

.amenity-swiper {
  overflow: visible !important;
  padding: 20px 0 60px !important;
}

.amenity-swiper .swiper-slide {
  transition: all 0.5s var(--ease-out);
}



.amenity-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(5, 26, 59, 0.05);
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
  z-index: 5;
}

.swiper-slide-active .amenity-card {
  box-shadow: 0 25px 50px rgba(5, 26, 59, 0.25);
  border-color: var(--gold);
}

.swiper-slide-active .amenity-card::before {
  transform: scaleX(1);
}

.amenity-img-box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.amenity-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 26, 59, 0.8) 0%, transparent 50%);
  z-index: 2;
  transition: opacity 0.4s;
}

.swiper-slide-active .amenity-img-box::after {
  opacity: 0.9;
}

.amenity-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.amenity-card:hover .amenity-img-box img {
  transform: scale(1.08);
}

.amenity-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  z-index: 3;
  text-align: right;
}

.amenity-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.amenity-card p {
  display: none;
}

.amenity-swiper-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.amenity-btn {
  width: 46px;
  height: 46px;
  /* border: 1px solid rgba(255, 184, 0, 0.3); */
  background: #0b2142;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

/* .amenity-btn:hover {
  background: rgba(255, 184, 0, 0.12);
  border-color: var(--gold);
} */

.amenity-fraction {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  opacity: 0.6;
}

/* Tabs */
.amenity-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.amenity-tab {
  padding: 10px 28px;
  border: 1px solid #0b2142;
  background: transparent;
  color: #0b2142;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.amenity-tab.active,
.amenity-tab:hover {
  color: var(--white);
  background: #0b2142;
}

/* ========================================================
   CLUBHOUSE — PARALLAX FULLSCREEN
   ======================================================== */
.clubhouse-section {
  position: relative;
  min-height: 90vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.clubhouse-parallax-bg {
  position: absolute;
  inset: -120px;
  background: url('../images/gallery/Clubtopview_RLD.jpg') center/cover no-repeat;
  will-change: transform;
}

.clubhouse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(5, 26, 59, 1) 0%,
      rgba(5, 26, 59, 0.9) 35%,
      rgba(5, 26, 59, 0.4) 60%,
      transparent 80%);
}

.clubhouse-content {
  position: relative;
  z-index: 2;
}

.clubhouse-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.cf-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--gold);
  transition: background 0.3s;
}

.cf-item:hover {
  background: rgba(255, 184, 0, 0.07);
}

.cf-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.cf-item-text h5 {
  color: var(--off-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.cf-item-text p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ========================================================
   WALKTHROUGH VIDEO
   ======================================================== */
.video-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.video-parallax-bg {
  position: absolute;
  inset: -80px;
  background: url('../images/gallery/NightDrone_RLD.jpg') center/cover no-repeat;
  opacity: 0.07;
  will-change: transform;
}

.video-frame {
  position: relative;
  border: 1px solid rgba(255, 184, 0, 0.2);
  overflow: hidden;
}

/* .video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 12px solid var(--charcoal);
} */

.video-frame iframe {
  display: block;
  position: relative;
  z-index: 0;
}

/* ========================================================
   GALLERY — CREATIVE SWIPER (THUMBS)
   ======================================================== */
.gallery-section {
  padding: 80px 0;
  background: var(--white);
  color: var(--charcoal);
}

.gallery-section h2 {
  color: var(--charcoal);
}

/* Main large gallery swiper */
.gallery-main-swiper {
  width: 100%;
  height: 540px;
  overflow: hidden;
  border: none;
}

.gallery-main-swiper .swiper-slide {
  overflow: hidden;
  position: relative;
}

.gallery-main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  transform: scale(1.05);
}

.gallery-main-swiper .swiper-slide-active img {
  transform: scale(1);
}

.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 40px;
  background: linear-gradient(to top, rgba(5, 26, 59, 0.9), transparent);
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery-slide-caption h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--off-white);
}

.gallery-count {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Side navigation buttons for gallery */
.gallery-side-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(11, 33, 66, 0.7);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 20;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out);
  border-radius: 50%;
}

.gallery-side-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.gallery-side-btn i {
  font-size: 1.2rem;
}

.gallery-side-btn.prev {
  left: 30px;
}

.gallery-side-btn.next {
  right: 30px;
}

@media (max-width: 767px) {
  .clubhouse-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(5, 26, 59, 1) 0%,
        rgba(5, 26, 59, 0.9) 35%,
        rgba(5, 26, 59, 0.4) 100%,
        transparent 10%);
  }

  .gallery-side-btn {
    width: 44px;
    height: 44px;
  }

  .gallery-side-btn.prev {
    left: 15px;
  }

  .gallery-side-btn.next {
    right: 15px;
  }
}

/* Gallery thumbs */
.gallery-thumbs-swiper {
  height: 110px;
  margin-top: 14px;
}

.gallery-thumbs-swiper .swiper-slide {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
  overflow: hidden;
  border: 1px solid transparent;
}

.gallery-thumbs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--gold);
}

/* Gallery open in fancybox button */
.gallery-fancybox-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(255, 184, 0, 0.15) !important;
  transition: opacity 0.3s;
}

.swiper-slide-active:hover .gallery-fancybox-link {
  opacity: 1;
}

.gallery-fancybox-link i {
  font-size: 2rem;
  color: var(--gold);
  padding: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

/* ========================================================
   FLOOR PLANS
   ======================================================== */
.plans-section {
  padding: 80px 0;
  background: var(--white);
  color: var(--charcoal);
}

.plans-section h2 {
  color: var(--charcoal);
}

.plans-section p {
  color: rgba(5, 26, 59, 0.6) !important;
}

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

.plan-tab {
  padding: 14px 50px;
  border: 1px solid rgba(5, 26, 59, 0.15);
  background: transparent;
  color: rgba(5, 26, 59, 0.6);
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.plan-tab.active {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  font-weight: 700;
}

.plan-content {
  display: none;
}

.plan-content.active {
  display: block;
}

.plan-swiper {
  overflow: hidden;
}

.plan-card {
  background: #fcfcfc;
  border: 1px solid rgba(5, 26, 59, 0.05);
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.plan-img-wrap {
  height: 280px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.plan-card-img {
  max-height: 100%;
  object-fit: contain;
}

.plan-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.plan-meta {
  font-size: 0.78rem;
  color: rgba(5, 26, 59, 0.6);
  margin-bottom: 16px;
}

.plan-price {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-plan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 24px;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-plan:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ========================================================
   LOCATION
   ======================================================== */
.location-section {
  padding: 80px 0;
  background: #051a3b;
}

.location-map-wrap {
  border: 1px solid rgba(255, 184, 0, 0.2);
  overflow: hidden;
  filter: grayscale(40%) sepia(30%);
  transition: filter 0.4s;
}

.location-map-wrap:hover {
  filter: grayscale(0%) sepia(0%);
}

.location-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-right: 14px;
  flex-shrink: 0;
}

.accordion-custom {
  column-count: 2;
  column-gap: 12px;
}

@media (max-width: 991px) {
  .accordion-custom {
    column-count: 1;
  }
}

.acc-item {
  break-inside: avoid;
  margin-bottom: 12px;
  background: var(--charcoal-soft);
  border: 1px solid rgba(255, 184, 0, 0.1);
  overflow: hidden;
}

.acc-header {
  display: flex;
  align-items: center;
  padding: 16px 22px;
  cursor: pointer;
  transition: background 0.3s;
}

.acc-header:hover {
  background: rgba(255, 184, 0, 0.06);
}

.acc-header-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--off-white);
  flex: 1;
}

.acc-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.acc-item.open .acc-arrow {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-in-out);
  padding: 0 22px;
}

.acc-item.open .acc-body {
  max-height: 220px;
  padding: 0 22px 16px;
}

.acc-list {
  list-style: none;
  padding-left: 0px;
}

.acc-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.72);
}

.acc-list li:last-child {
  border: none;
}

.acc-dist {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

/* ========================================================
   ABOUT RLD
   ======================================================== */
.about-section {
  position: relative;
  padding: 80px 0;
  background: var(--white);
  color: var(--charcoal);
  text-align: center;
}

.about-section h2 {
  color: var(--charcoal);
}

.about-parallax-bg {
  display: none;
}

.about-content {
  position: relative;
  z-index: 2;
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
  background: #051a3b;
  padding: 60px 0 40px;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.footer-disclaimer-text {
  font-size: 0.72rem;
  line-height: 1.8;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-rera {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .footer-bottom-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Sticky WhatsApp / call */
.sticky-float {
  position: fixed;
  bottom: 30px;
  left: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-wa {
  background: #25D366;
}

.float-call {
  background: var(--gold-dark);
}

/* ========================================================
   AOS CUSTOM OVERRIDES
   ======================================================== */
[data-aos="fade-up"] {
  transform: translateY(40px);
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1199px) {
  .hero-form-wrap {
    right: 3%;
  }

  .swiper-btn-hero-next {
    right: 400px;
  }
}

@media (max-width: 991px) {

  .nav-links,
  .nav-toggle {
    display: none;
  }

  .btn-nav {
    display: flex;
    padding: 8px 12px;
    /* font-size: 0.65rem; */
    letter-spacing: 1px;
  }

  .btn-nav i {
    line-height: 1.5 !important;
  }

  .hero-content {
    left: 5%;
    max-width: 70%;
  }

  .hero-form-wrap {
    right: 4%;
    width: 340px;
  }

  .swiper-btn-hero-next {
    right: 370px;
  }

  .overview-image-accent {
    display: none;
  }

  .overview-badge-price {
    right: 0;
  }

  .nav-inner {
    padding: 0 12px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 80px 0;
  }

  .hero {
    height: auto;
    min-height: unset;
  }

  .hero-swiper {
    height: auto;
    min-height: unset;
  }

  .hero-slide-img {
    position: relative;
    height: auto;
    transform: none !important;
    /* Zoom might break layout for auto-height */
  }

  .swiper-slide-active .hero-slide-img {
    transform: none !important;
  }

  .hero-content {
    position: relative;
    inset: unset;
    transform: none;
    padding: 50px 24px 40px;
    max-width: 100%;
    background: var(--charcoal-mid);
  }

  .hero-form-wrap {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    padding: 0 16px 16px;
  }

  .hero-form-card {
    border: none;
    margin: 0 -16px;
  }

  .swiper-btn-hero-prev,
  .swiper-btn-hero-next,
  .scroll-cue {
    display: none;
  }

  .stat-pill {
    padding: 12px 22px;
  }

  .gallery-main-swiper {
    height: 300px;
  }

  .overview-image-main {
    height: 300px;
  }

  .clubhouse-section {
    padding: 40px 0;
    min-height: 60vh;
  }

  .plan-tab {
    padding: 12px 24px;
  }

  .stats-ribbon {
    padding: 15px 0;
  }

  .stats-ribbon-inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .stat-pill {
    width: 50%;
    max-width: 50%;
    border-right: 1px solid rgba(5, 26, 59, 0.15);
    border-bottom: 1px solid rgba(5, 26, 59, 0.15);
    justify-content: center;
    padding: 24px 10px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }

  .stat-pill-icon {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .stat-pill-val {
    font-size: 1.6rem;
  }

  .stat-pill-label {
    margin-top: 4px;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }

  /* Second item in each row has no right border */
  .stat-pill:nth-child(2n) {
    border-right: none;
  }

  /* Remove bottom border for the last two items (last row) */
  .stat-pill:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .nav-brand-top {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }

  .nav-brand-sub {
    font-size: 0.5rem;
    letter-spacing: 4px;
  }

  .hero-stats {
    gap: 24px;
  }

  /* .clubhouse-feature-list {
    grid-template-columns: 1fr;
  } */
}

/* ========================================================
   MOBILE STICKY FOOTER
   ======================================================== */
.mobile-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-btn {
  flex: 1;
  padding: 15px 10px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--off-white);
  transition: background 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 3px solid transparent;
}

.sticky-btn i {
  font-size: 1.1rem;
}

.sticky-call {
  background: var(--charcoal-soft);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-call:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.sticky-enquire {
  background: var(--gold);
  color: var(--charcoal);
}

.sticky-enquire:hover {
  background: var(--gold-light);
}

@media (max-width: 991px) {
  body {
    padding-bottom: 56px;
    /* Space for the sticky footer so content isn't covered */
  }
}