/* ============================================================
   THE CASTLETON MANSION — Premium CSS
   Colors: Ivory #F8F7F0 | Lime #D7FF3F | Navy #12324A
   Font: Manrope (sans) + Playfair Display (serif)
   ============================================================ */

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

:root {
  --ivory:        #F8F7F0;
  --ivory-dark:   #F0EFE6;
  --lime:         #D7FF3F;
  --lime-hover:   #C5EE2A;
  --lime-soft:    rgba(215, 255, 63, 0.15);
  --navy:         #12324A;
  --navy-deep:    #0C2238;
  --dark:         #101010;
  --muted:        #6B6B6B;
  --white-glass:  rgba(255, 255, 255, 0.55);
  --white-glass2: rgba(255, 255, 255, 0.72);
  --border-glass: rgba(255, 255, 255, 0.4);
  --shadow-sm:    0 4px 24px rgba(16,16,16,0.06);
  --shadow-md:    0 8px 40px rgba(16,16,16,0.10);
  --shadow-lg:    0 20px 60px rgba(16,16,16,0.14);
  --shadow-xl:    0 30px 90px rgba(16,16,16,0.18);
  --radius-pill:  999px;
  --radius-card:  32px;
  --radius-img:   28px;
  --radius-sec:   36px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --font-sans:    'Manrope', system-ui, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad {
  padding: 120px 0;
}

/* ── TYPOGRAPHY ── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}
.section-label.light { color: rgba(248,247,240,0.55); }

.section-heading {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}

.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ── GLASS CARD ── */
.glass-card {
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-lime {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 4px 24px rgba(215,255,63,0.3);
}
.btn-lime:hover {
  background: var(--lime-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(215,255,63,0.4);
}
.btn-lime:active { transform: translateY(-1px); }

.btn-navy {
  background: var(--navy);
  color: var(--ivory);
  box-shadow: 0 4px 24px rgba(18,50,74,0.25);
}
.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(18,50,74,0.35);
}

.btn-outline-ivory {
  background: transparent;
  color: var(--ivory);
  border: 2px solid rgba(248,247,240,0.5);
}
.btn-outline-ivory:hover {
  background: rgba(248,247,240,0.1);
  border-color: var(--ivory);
  transform: translateY(-3px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(18,50,74,0.35);
}
.btn-outline-navy:hover {
  background: rgba(18,50,74,0.06);
  border-color: var(--navy);
  transform: translateY(-3px);
}

.btn-hero {
  padding: 18px 38px;
  font-size: 1.05rem;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}


/* ============================================================
   NAVBAR — Fixed, Floating, Glassmorphism, Pill, Responsive
   ============================================================ */
.navbar-wrap {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1180px;
  pointer-events: none; /* let children receive clicks */
}

.navbar {
  pointer-events: all;
  display: flex;
  align-items: center;
  height: 76px;
  gap: 0;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.75);
  padding: 0 12px 0 20px;
  width: 100%;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

/* LEFT — Logo + Brand */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: 20px;
}

.logo-container {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #12324A;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(223, 255, 63, 0.55);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  flex-shrink: 0;
}

.logo-img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.navbar-brand-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.navbar-brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* CENTER — Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 12px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  opacity: 0.72;
  white-space: nowrap;
}
.nav-link:hover {
  opacity: 1;
  background: var(--lime-soft);
  color: var(--dark);
}
.nav-link.active {
  opacity: 1;
  background: var(--lime);
  color: var(--dark);
}

/* RIGHT — CTA */
.nav-cta {
  padding: 13px 26px;
  font-size: 0.88rem;
  font-weight: 800;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  border-radius: 50%;
  transition: var(--transition);
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO — Cinematic, Full-Screen, Responsive
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image layer */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Remove the heavy brightness filter — overlay handles darkening */
  filter: none;
}

/* Cinematic directional overlay — lighter on the right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 18, 24, 0.76) 0%,
    rgba(10, 18, 24, 0.48) 45%,
    rgba(10, 18, 24, 0.20) 100%
  );
  /* Plus a bottom fade into next section */
}
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, rgba(248,247,240,0.18) 100%);
  pointer-events: none;
}

/* Hero fallback if no image */
.hero-bg-img:not(:has(img[src$=".jpg"])):not(:has(img[src$=".png"])):not(:has(img[src$=".webp"])) {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #1a4a6e 100%);
}

/* Hero content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 40px 100px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #DFFF3F;
  color: #101010;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 999px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(223,255,63,0.4);
  animation: badgePulse 2.5s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #101010;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.72); }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(223,255,63,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(223,255,63,0); }
}

/* Headline */
.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #ffffff;
  margin-bottom: 28px;
  max-width: 720px;
}

/* Lime accent on "Luxury" */
.hero-lime {
  color: #DFFF3F;
  display: inline;
}

/* Subheadline */
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 44px;
  font-weight: 400;
}

/* Action buttons row */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  align-items: center;
}

/* Glass call-now override for hero */
.hero-actions .btn-outline-ivory {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.45);
  min-height: 58px;
}
.hero-actions .btn-outline-ivory:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-3px);
}

/* Hero lime button in hero */
.hero-actions .btn-lime {
  background: #DFFF3F;
  min-height: 58px;
}

/* Stat cards */
.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-stat {
  padding: 18px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  transition: var(--transition);
  min-width: 110px;
}
.hero-stat:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-5px);
  border-color: rgba(223,255,63,0.35);
}

.stat-num {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  color: #DFFF3F;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  margin-top: 5px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 5px;
  height: 28px;
  background: rgba(255,255,255,0.35);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* Fallback shimmer */
.hero-bg-photo.no-image-yet {
  background: linear-gradient(135deg, #0c2238 0%, #12324A 60%, #1a4f70 100%);
  filter: none;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--ivory);
  padding: 120px 32px;
}

.about-inner {
  display: flex;
  gap: 72px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  width: 48%;
  flex-shrink: 0;
}

.about-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223, 255, 63, 0.08);
  border: 1px solid rgba(223, 255, 63, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: #12324A;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.about-section-label .label-dot {
  width: 6px;
  height: 6px;
  background: #DFFF3F;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #DFFF3F;
}

.about-text .section-heading {
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #101010;
  margin-bottom: 28px;
}
.about-text .section-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: #12324A;
  position: relative;
  display: inline-block;
}
.about-text .section-heading em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(223, 255, 63, 0.45);
  z-index: -1;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(223, 255, 63, 0.4);
}

.about-desc {
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.75;
  color: #4F5A5F;
  max-width: 620px;
  font-weight: 500;
  margin-bottom: 32px;
}
.about-desc strong {
  color: #101010;
  font-weight: 700;
}

/* Premium highlight box */
.about-highlight-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(223, 255, 63, 0.4);
  border-radius: 24px;
  padding: 18px 22px;
  margin-bottom: 36px;
  max-width: 620px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.about-highlight-box .highlight-icon {
  width: 38px;
  height: 38px;
  background: #DFFF3F;
  color: #12324A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(223, 255, 63, 0.4);
}
.about-highlight-box .highlight-text {
  font-size: 0.98rem;
  font-weight: 700;
  color: #101010;
  line-height: 1.5;
  margin: 0;
}

.about-highlights {
  display: flex;
  flex-flow: row wrap;
  gap: 12px;
  margin: 32px 0 40px;
  max-width: 620px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #101010;
  background: rgba(223, 255, 63, 0.16);
  border: 1px solid rgba(223, 255, 63, 0.65);
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.about-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(223, 255, 63, 0.25);
}
.about-pill svg {
  color: #C5EE2A;
  stroke-width: 3.5;
  flex-shrink: 0;
}

.btn-about-learn {
  background: #12324A;
  color: #ffffff;
  padding: 18px 34px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(18, 50, 74, 0.2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.btn-about-learn:hover {
  transform: translateY(-3px);
  background: #0c2238;
  box-shadow: 0 12px 30px rgba(18, 50, 74, 0.3), 0 0 15px rgba(223, 255, 63, 0.4);
}
.btn-about-learn svg {
  transition: transform 0.3s ease;
}
.btn-about-learn:hover svg {
  transform: translateX(4px);
}

.about-visual {
  width: 52%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-img);
  overflow: hidden;
  height: 420px;
}
.about-main-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-img);
  transition: transform 0.6s ease;
  background: linear-gradient(135deg, #d5d5cb, #e8e7e0);
}
.about-img-wrap:hover .about-main-img { transform: scale(1.03); }

.about-img-accent {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 16px 24px;
  border-radius: 24px;
  text-align: center;
  background: var(--white-glass2);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 5;
}
.accent-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #C5EE2A;
  line-height: 1;
}
.accent-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.about-img-secondary {
  border-radius: var(--radius-img);
  overflow: hidden;
  position: relative;
  height: clamp(360px, 42vw, 520px);
  background: linear-gradient(135deg, #e0dfda, #d5d5cb);
}
/* About Section Carousel overrides */
.about-img-secondary .carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-img-secondary .carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.about-img-secondary .carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: unset;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-secondary:hover .carousel-slide img {
  transform: scale(1.03);
}

/* Hide carousel controls when there's only 1 slide */
.carousel-track:not(:has(:nth-child(2))) ~ .carousel-btn,
.carousel-track:not(:has(:nth-child(2))) ~ .carousel-dots {
  display: none !important;
}


/* ============================================================
   ROOMS
   ============================================================ */
.rooms { background: var(--ivory-dark); }

.room-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  overflow: hidden;
  border-radius: 36px;
  margin-bottom: 48px;
  min-height: 540px;
  background: #ffffff;
  border: 1px solid rgba(18, 50, 74, 0.08);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.room-card:hover { 
  box-shadow: var(--shadow-xl); 
  transform: translateY(-4px); 
}

.room-card-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.room-card-reverse .room-carousel { order: 2; }
.room-card-reverse .room-info { order: 1; }

/* Carousel */
.room-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 36px 0 0 36px;
  background: #d5d5cb;
  height: 100%;
  min-height: 480px;
}
.room-card-reverse .room-carousel {
  border-radius: 0 36px 36px 0;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  border-radius: inherit;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  background: linear-gradient(135deg, #d5d5cb, #c8c7c0);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white-glass2);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  color: var(--dark);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-btn:hover {
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-50%) scale(1.08);
}

.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.carousel-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dots .dot.active {
  background: var(--lime);
  width: 22px;
  border-radius: 4px;
}

/* Room info */
.room-info {
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
  width: 100%;
}

.room-title-area {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.room-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.04em;
}

.room-subtitle {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #12324A;
  text-transform: uppercase;
}

.room-price-badge {
  background: #DFFF3F;
  color: #12324A;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.room-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #5C6468;
  max-width: 520px;
  margin-bottom: 28px;
}

.amenities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: #101010;
  background: #F3F6F6;
  border: 1px solid rgba(18, 50, 74, 0.14);
  padding: 10px 16px;
  border-radius: 999px;
  transition: var(--transition);
}
.amenity-chip:hover {
  background: var(--lime-soft);
  border-color: rgba(215,255,63,0.4);
}

.btn-room {
  align-self: flex-start;
  padding: 14px 28px;
}

/* ============================================================
   STAY SELECTOR & APARTMENTS ADDITIONS
   ============================================================ */
.stay-selector-area {
  margin-bottom: 40px;
}
.stay-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.stay-card {
  padding: 40px;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.stay-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.stay-card.selected {
  border-color: var(--lime);
  background: rgba(215, 255, 63, 0.05);
  box-shadow: 0 10px 40px rgba(215, 255, 63, 0.15), var(--shadow-md);
}
.stay-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.stay-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 10px 0 5px;
}
.stay-card-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}
.btn-stay-select {
  margin-top: auto;
}

.stay-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  margin-top: 20px;
}
.stay-tabs-wrap.hidden {
  display: none !important;
}
.stay-tab {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stay-tab.active {
  background: #DFFF3F;
  color: #101010;
  border: 2px solid #DFFF3F;
}
.stay-tab:not(.active) {
  background: rgba(255, 255, 255, 0.6);
  color: var(--dark);
  border: 2px solid rgba(18, 50, 74, 0.2);
}
.btn-share-stay {
  background: rgba(18, 50, 74, 0.05) !important;
  color: var(--navy) !important;
  border: 2px dashed rgba(18, 50, 74, 0.3) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.btn-share-stay:hover {
  background: var(--navy) !important;
  color: #ffffff !important;
  border-color: var(--navy) !important;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 50px);
  background: rgba(18, 50, 74, 0.95);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.toast-notification.show {
  transform: translate(-50%, 0);
  opacity: 1;
}
.stay-tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(18, 50, 74, 0.4);
}

.room-stay-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--navy);
  color: var(--lime);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.apartment-subsection {
  margin-top: 60px;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
  padding-top: 48px;
}
.subsection-header {
  margin-bottom: 36px;
}
.subsection-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.subsection-desc {
  font-size: 0.95rem;
  color: var(--muted);
}

.property-details-box {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(18, 50, 74, 0.08);
  padding: 10px 24px;
  border-radius: 999px; /* premium pill shape */
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px auto 0;
  font-size: 0.85rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 100%;
  flex-wrap: wrap;
}
.property-details-box .detail-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.property-details-box .detail-separator {
  color: rgba(18, 50, 74, 0.25);
  font-weight: 900;
}
.phone-link {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 700;
}

/* Modal step additions */
.modal-step {
  transition: opacity 0.25s ease;
}
.modal-step.hidden {
  display: none !important;
}
.modal-property-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.modal-prop-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 20px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .stay-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stay-card {
    padding: 28px 24px;
  }
  .stay-tabs-wrap {
    flex-wrap: wrap;
    gap: 10px;
  }
  .stay-tab {
    flex: 1;
    min-width: 140px;
    padding: 10px 16px;
    font-size: 0.84rem;
    text-align: center;
  }
  .property-details-box {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
  }
  .property-details-box .detail-item {
    white-space: normal;
    text-align: left;
  }
  .property-details-box .detail-separator {
    display: none;
  }
}


/* ============================================================
   LAUNCH OFFER
   ============================================================ */
.offer-section {
  background: var(--ivory);
}
.offer-section .container { padding-top: 0; }

.offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--lime);
  border-radius: var(--radius-sec);
  padding: 72px 80px;
  overflow: hidden;
  position: relative;
}

.offer-inner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  pointer-events: none;
}
.offer-inner::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  pointer-events: none;
}

.offer-left { flex: 1; position: relative; z-index: 1; }

.offer-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--lime);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.offer-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 20px;
}

.offer-text {
  font-size: 1.05rem;
  color: rgba(16,16,16,0.75);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 40px;
}

.offer-right {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.offer-discount-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.discount-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.04em;
}
.discount-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: 0.12em;
}


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

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px 28px;
  border-radius: 28px;
  transition: var(--transition);
  cursor: default;
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: white;
}

.amenity-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--dark);
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon-wrap {
  background: var(--navy);
  color: var(--lime);
  transform: scale(1.1);
}

.amenity-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}


/* ============================================================
   GALLERY — Palm 715 Bento Grid Sizing
   ============================================================ */
.gallery {
  background: var(--ivory);
  padding: 120px 32px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}
.gallery-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223, 255, 63, 0.08);
  border: 1px solid rgba(223, 255, 63, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: #12324A;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.gallery-header .section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #DFFF3F;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #DFFF3F;
}
.gallery-header .section-heading {
  font-weight: 900;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #101010;
  margin-bottom: 20px;
}
.gallery-header .section-desc {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 18, 24, 0.72) 0%, rgba(10, 18, 24, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px 32px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  background: #DFFF3F;
  color: #12324A;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.gallery-caption {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Bento Sizing classes */
.gallery-full {
  grid-column: span 2;
  height: clamp(360px, 45vw, 680px);
}
.gallery-tall {
  grid-column: span 1;
  height: clamp(420px, 48vw, 620px);
}
.gallery-medium {
  grid-column: span 1;
  height: clamp(280px, 35vw, 460px);
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--ivory); }

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

.why-card {
  padding: 40px 36px;
  border-radius: var(--radius-card);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  background: white;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--lime-soft);
  border: 1px solid rgba(215,255,63,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--navy);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--lime);
  border-color: var(--lime);
  transform: scale(1.1);
}

.why-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}


/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram { background: var(--ivory-dark); }

.insta-header-meta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.insta-handle {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insta-handle-btn {
  margin-top: 0;
}

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

.insta-tile-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white-glass2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 450px;
}

.insta-tile-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Fallback Card Style */
.insta-fallback-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 24px;
  background: var(--white-glass2);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  flex-grow: 1;
}

.insta-fallback-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--lime);
  box-shadow: 0 12px 30px rgba(215, 255, 63, 0.2);
}

.insta-fallback-icon {
  color: var(--navy);
  background: var(--lime-soft);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.insta-fallback-card:hover .insta-fallback-icon {
  background: var(--lime);
  transform: scale(1.1);
}

.insta-fallback-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
}

.insta-fallback-btn {
  pointer-events: none; /* Click propagates to card link */
}

/* Embed Container */
.insta-embed-container {
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Toggle displays when iframe exists */
.insta-tile-wrapper:has(iframe) {
  aspect-ratio: auto;
  min-height: auto;
}

.insta-tile-wrapper:has(iframe) .insta-embed-container {
  display: block;
}

.insta-tile-wrapper:has(iframe) .insta-fallback-card {
  display: none !important;
}

/* Make sure the generated iframe fits beautifully and has border-radius */
.insta-embed-container iframe {
  margin: 0 !important;
  border-radius: 28px !important;
  box-shadow: none !important;
  width: 100% !important;
  height: 100% !important;
  display: block;
}


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

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  margin-top: 60px;
  align-items: stretch;
}

.location-info {
  padding: 48px 44px;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loc-section-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.loc-address {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 28px;
}

.loc-divider {
  height: 1px;
  background: rgba(16,16,16,0.08);
  margin-bottom: 28px;
}

.loc-contact-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.loc-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.loc-contact-item:hover { color: var(--navy); }

.loc-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
}

.loc-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
}

.location-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 440px;
  padding: 0;
  border: none;
}
.location-map iframe {
  display: block;
  border-radius: var(--radius-card);
}


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(215,255,63,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-heading {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--ivory);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(248,247,240,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 52px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ivory-dark);
  border-top: 1px solid rgba(16,16,16,0.07);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(18,50,74,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--lime);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-links-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links ul a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.footer-links ul a:hover { color: var(--dark); padding-left: 6px; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-item {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
  padding: 6px 0;
  line-height: 1.5;
}
.footer-contact-item:hover { color: var(--dark); }
.footer-contact-item.addr { margin-top: 8px; font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid rgba(16,16,16,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.footer-made {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}


/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover {
  background: #1ebe57;
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.5);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0.03em;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="450"] { transition-delay: 0.45s; }


/* ============================================================
   IMAGE FALLBACK (when room photos not yet added)
   ============================================================ */
.carousel-slide img[src*="gf-balcony"],
.carousel-slide img[src*="gf-nobalcony"],
.carousel-slide img[src*="ff-balcony"],
.carousel-slide img[src*="ff-nobalcony"] {
  background: linear-gradient(135deg, #d5d5cb 0%, #e0dfd9 50%, #c8c7c0 100%);
}

/* Placeholder shimmer for missing images */
img:not([src]), img[src=""] {
  background: linear-gradient(90deg, #e0dfd9 25%, #ebe9e2 50%, #e0dfd9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


/* ============================================================
   RESPONSIVE — LAPTOP (1024px – 1199px)
   ============================================================ */
@media (max-width: 1199px) and (min-width: 1024px) {
  /* Navbar */
  .navbar-wrap { width: calc(100% - 48px); }
  .navbar { height: 72px; }
  .navbar-brand-name { font-size: 0.78rem; }
  .navbar-brand-tag { display: none; }
  .logo-img { height: 46px; }
  .nav-link { padding: 8px 13px; font-size: 0.84rem; }
  .nav-cta { padding: 11px 22px; }

  /* Hero */
  .hero-content { padding: 148px 36px 90px; }
  .hero-headline { font-size: clamp(3rem, 6.5vw, 7rem); }
  .hero-sub { max-width: 460px; }
  .hero-stats { gap: 12px; }
  .hero-stat { padding: 16px 22px; min-width: 100px; }
}

/* ============================================================
   RESPONSIVE — TABLET (768px – 1023px)
   ============================================================ */
@media (max-width: 1023px) {
  /* Other sections */
  .about-inner { flex-direction: column; gap: 48px; }
  .about-text { width: 100%; }
  .about-visual { width: 100%; }
  .room-card {
    grid-template-columns: 1fr;
    min-height: unset;
    margin-bottom: 32px !important;
  }
  .room-card-reverse { grid-template-columns: 1fr; }
  .room-card-reverse .room-carousel { order: 0; }
  .room-card-reverse .room-info { order: 0; }
  .room-carousel, .apartment-card .room-carousel {
    border-radius: 36px 36px 0 0 !important;
    height: clamp(420px, 45vh, 520px) !important;
    min-height: 420px !important;
  }
  .carousel-slide img {
    min-height: 420px !important;
  }
  .room-info { padding: 32px !important; }
  .room-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }
  .room-title {
    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { gap: 20px; }
  .gallery-full { height: clamp(320px, 40vw, 480px); }
  .gallery-tall { height: clamp(380px, 42vw, 500px); }
  .gallery-medium { height: clamp(260px, 32vw, 380px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .offer-inner { padding: 56px 56px; }
  .location-inner { grid-template-columns: 1fr; }
  .location-map { min-height: 380px; }
}

@media (max-width: 1023px) and (min-width: 768px) {
  /* Navbar — tablet */
  .navbar-wrap { width: calc(100% - 32px); top: 14px; }
  .navbar { height: 68px; padding: 0 10px 0 16px; }
  .logo-img { height: 44px; }
  .navbar-brand-tag { display: none; }
  .navbar-brand-name { font-size: 0.76rem; }
  .nav-link { padding: 8px 11px; font-size: 0.82rem; }
  .nav-cta { padding: 10px 20px; font-size: 0.84rem; }

  /* Hero — tablet */
  .hero-content {
    padding: 140px 28px 80px;
  }
  .hero-headline {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 0.92;
    max-width: 90%;
  }
  .hero-sub { max-width: 440px; font-size: 1rem; }
  .hero-actions { gap: 14px; }
  .hero-stats {
    gap: 12px;
    display: grid;
    grid-template-columns: repeat(2, auto);
    width: fit-content;
  }
  .hero-stat { min-width: 130px; padding: 16px 20px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section-pad { padding: 80px 0; }
  .container { padding: 0 20px; }

  /* ── Navbar ── */
  .navbar-wrap {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    z-index: 1000;
    pointer-events: none;
  }
  .navbar {
    pointer-events: all;
    height: 68px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  
  /* Hide brand name for mobile */
  .navbar-brand {
    display: none !important;
  }

  /* Compact actions on right */
  .nav-cta {
    display: flex !important;
    background: #DFFF3F;
    color: #101010;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(223, 255, 63, 0.35);
    margin-left: auto;
    margin-right: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  .nav-cta:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
  }

  /* Hamburger & Close button style */
  .hamburger {
    display: flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(18, 50, 74, 0.18) !important;
    background: rgba(255, 255, 255, 0.65) !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
    padding: 0;
    margin-left: 0;
    transition: var(--transition);
  }
  .hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #101010;
    border-radius: 2px;
    transition: var(--transition);
  }
  .hamburger:hover, .hamburger.open {
    background: #DFFF3F;
    border-color: #DFFF3F;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Nav links dropdown */
  .nav-links {
    position: fixed;
    top: 80px;
    right: 12px;
    left: auto;
    width: calc(100% - 24px);
    max-width: 420px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    align-items: stretch;
    margin: 0;
    transform: translateY(-10px) scale(0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    display: block;
    text-align: center;
    padding: 14px 18px;
    font-size: 0.98rem;
    font-weight: 800;
    color: #101010;
    border-radius: 999px;
    opacity: 1;
    margin-bottom: 6px;
    transition: var(--transition);
  }
  .nav-link:hover, .nav-link.active {
    background: #DFFF3F;
    color: #101010;
    opacity: 1;
  }

  /* ── Hero ── */
  .hero-content {
    padding: 140px 20px 72px;
    width: 100%;
  }
  .hero-headline {
    font-size: clamp(3rem, 15vw, 4.8rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    max-width: 100%;
    margin-bottom: 22px;
  }
  .hero-sub {
    font-size: 0.98rem;
    max-width: 100%;
    margin-bottom: 36px;
  }
  .hero-badge {
    padding: 10px 16px;
    font-size: 0.75rem;
    margin-bottom: 24px;
  }
  /* Stack buttons full width */
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 44px;
    width: 100%;
  }
  .hero-actions .btn,
  .hero-actions .btn-hero {
    width: 100%;
    justify-content: center;
    min-height: 54px;
    font-size: 1rem;
  }
  /* Stats — 2×2 grid, no overflow */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }
  .hero-stat {
    min-width: unset;
    width: 100%;
    padding: 16px 12px;
  }
  .stat-num { font-size: 1.25rem; }
  .stat-label { font-size: 0.68rem; white-space: normal; }

  /* Other sections */
  .about { padding: 80px 20px; }
  .about-inner { flex-direction: column; gap: 40px; }
  .about-text .section-heading { font-size: clamp(2.5rem, 11vw, 4rem); }
  .about-desc { font-size: 16.5px; line-height: 1.65; margin-bottom: 24px; }
  .about-highlight-box { padding: 16px 18px; margin-bottom: 28px; }
  .about-img-wrap { height: 320px; }
  .stay-tabs-wrap {
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 24px !important;
    margin-top: 12px !important;
  }
  .stay-tab {
    padding: 10px 18px !important;
    font-size: 0.82rem !important;
  }

  /* Compact Mobile Cards & Spacings */
  .room-card, .apartment-card, #roomBeeDeeLodge {
    height: auto !important;
    min-height: unset !important;
    margin-bottom: 24px !important;
  }
  .room-carousel, .apartment-card .room-carousel {
    height: clamp(280px, 48vh, 420px) !important;
    min-height: unset !important;
  }
  #roomBeeDeeLodge .room-carousel, .bee-dee-carousel {
    height: clamp(300px, 52vh, 440px) !important;
  }
  .carousel-slide img {
    min-height: unset !important;
    height: 100% !important;
  }
  .room-info {
    padding: 20px !important;
    gap: 14px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .room-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
    width: 100% !important;
  }
  .room-title-area {
    gap: 4px !important;
  }
  .room-price-badge {
    font-size: 15px !important;
    padding: 6px 12px !important;
    margin-top: 4px !important;
  }
  .room-desc {
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin-bottom: 0 !important;
  }
  .amenities-row {
    margin-bottom: 0 !important;
    gap: 6px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
  }
  .amenity-chip {
    font-size: 12px !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    gap: 6px !important;
    line-height: 1.2 !important;
  }
  .mobile-hide {
    display: none !important;
  }
  .apartment-divider {
    margin: 12px 0 !important;
  }
  .apt-price-display {
    margin-bottom: 0 !important;
    gap: 8px !important;
    display: flex !important;
    align-items: baseline !important;
  }
  .apt-price-display .price-final {
    font-size: 28px !important;
  }
  .pref-selector-wrap {
    margin-bottom: 0 !important;
    gap: 6px !important;
    width: 100% !important;
  }
  .pref-label {
    font-size: 11px !important;
    margin-bottom: 0 !important;
  }
  .pref-buttons {
    gap: 8px !important;
  }
  .pref-btn {
    height: 46px !important;
    font-size: 12px !important;
    padding: 8px 12px !important;
    line-height: 1.2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .pref-note {
    font-size: 12px !important;
    margin-bottom: 0 !important;
  }
  .btn-confirm-whatsapp {
    height: 52px !important;
    margin-top: 4px !important;
    font-size: 13px !important;
    padding: 12px 24px !important;
  }
  .room-actions-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 4px !important;
  }
  .room-actions-row .btn-room {
    width: 100% !important;
    height: 50px !important;
    font-size: 13px !important;
    padding: 10px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
  }
  .additional-charges-box {
    margin-bottom: 0 !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
  }
  .charges-title-wrap {
    margin-bottom: 8px !important;
  }
  .charges-title {
    font-size: 13px !important;
  }
  .charges-list {
    gap: 8px !important;
  }
  .charge-label, .charge-value {
    font-size: 12px !important;
  }
  .charge-note {
    font-size: 11px !important;
    margin-top: 2px !important;
  }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .gallery-card {
    border-radius: 24px;
  }
  .gallery-full {
    grid-column: span 2;
    height: clamp(300px, 45vw, 420px);
  }
  .gallery-tall {
    grid-column: span 1;
    height: clamp(220px, 35vw, 320px);
  }
  .gallery-medium {
    grid-column: span 1;
    height: clamp(220px, 35vw, 320px);
  }
  .why-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .instagram .insta-embed-container { display: none !important; }
  .instagram .insta-fallback-card { display: flex !important; }
  .instagram .insta-tile-wrapper { aspect-ratio: 1 !important; min-height: unset !important; }
  .offer-inner { flex-direction: column; padding: 48px 32px; text-align: center; }
  .offer-right { display: flex; justify-content: center; }
  .location-info { padding: 32px 28px; }
  .loc-buttons { flex-direction: column; }
  .loc-buttons .btn { width: 100%; justify-content: center; }
  .location-map { min-height: 300px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: unset; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .wa-tooltip { display: none; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (< 480px)
   ============================================================ */
@media (max-width: 480px) {
  /* Navbar */
  .navbar-wrap { width: calc(100% - 24px); top: 12px; }
  .navbar { height: 68px; padding: 8px 10px; gap: 8px; }
  .logo-container { width: 52px; height: 52px; }
  .navbar-brand { display: none !important; }
  .nav-cta { display: flex !important; }
  .nav-links { top: 80px; right: 12px; width: calc(100% - 24px); }

  /* Hero */
  .hero-content { padding: 120px 16px 64px; }
  .hero-headline {
    font-size: clamp(2.8rem, 16vw, 4rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
  }
  .hero-sub { font-size: 0.92rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.72rem; padding: 9px 14px; }
  .hero-actions .btn,
  .hero-actions .btn-hero { min-height: 52px; font-size: 0.95rem; }
  /* Stats stay 2-col but tighter */
  .hero-stats { gap: 10px; }
  .hero-stat { padding: 14px 10px; border-radius: 18px; }
  .stat-num { font-size: 1.15rem; }
  .stat-label { font-size: 0.65rem; }

  /* Other */
  .insta-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PERFORMANCE & BOOKING MODAL OPTIMIZATIONS
   ============================================================ */

/* CSS Containment to limit layout & repaint cycles */
.room-card,
.gallery-card,
.why-card {
  contain: layout paint;
}

/* Defer rendering of off-screen content below-the-fold */
section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

/* ── BOOKING MODAL SYSTEM ── */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px;
}

.booking-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  border-radius: 32px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
  padding: 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  transform: translate3d(0, 20px, 0) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.booking-modal-overlay.active .booking-modal {
  transform: translate3d(0, 0, 0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.modal-close-btn:hover {
  background: #DFFF3F;
  transform: rotate(90deg);
}

.modal-badge-row {
  margin-bottom: 16px;
}

.modal-badge-lime {
  display: inline-block;
  background: #DFFF3F;
  color: #12324A;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.modal-header {
  margin-bottom: 28px;
}

.modal-brand {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.modal-title-text {
  font-family: var(--font-sans);
  font-size: 1.85rem;
  font-weight: 800;
  color: #12324A;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.modal-subtext {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-opt-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 24px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.modal-opt-btn:hover {
  transform: translate3d(0, -4px, 0);
}

.btn-whatsapp {
  background: #DFFF3F;
  color: #101010;
  box-shadow: 0 8px 30px rgba(223, 255, 63, 0.25);
}

.btn-whatsapp:hover {
  background: #d4f52e;
  box-shadow: 0 12px 36px rgba(223, 255, 63, 0.35);
}

.btn-call {
  background: #12324A;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(18, 50, 74, 0.2);
}

.btn-call:hover {
  background: #0d273a;
  box-shadow: 0 12px 36px rgba(18, 50, 74, 0.35);
}

.btn-opt-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp .btn-opt-icon {
  background: rgba(18, 50, 74, 0.08);
  color: #12324A;
}

.btn-call .btn-opt-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.btn-opt-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn-opt-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.btn-opt-subtitle {
  font-size: 0.78rem;
  opacity: 0.8;
  margin-top: 2px;
  font-weight: 500;
}

/* Room action rows */
.room-actions-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.room-actions-row .btn-room {
  flex: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.room-actions-row .btn-outline-navy {
  border: 2px solid rgba(18, 50, 74, 0.35);
}

/* Launch Offer section action buttons */
.offer-actions {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: 10px;
}

/* Hardware accelerated transition will-change overrides */
.carousel-track {
  will-change: transform;
}

/* Reduced Motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile responsive styles for modal */
@media (max-width: 768px) {
  .booking-modal {
    padding: 24px;
    border-radius: 28px;
    width: calc(100% - 24px);
    max-width: 420px;
  }
  .modal-title-text {
    font-size: 1.6rem;
  }
  .modal-subtext {
    font-size: 0.9rem;
  }
  .modal-opt-btn {
    padding: 16px 20px;
    border-radius: 20px;
  }
  .btn-opt-title {
    font-size: 0.98rem;
  }
  .btn-opt-subtitle {
    font-size: 0.75rem;
  }
  .btn-opt-icon {
    width: 38px;
    height: 38px;
  }
  
  /* Disable heavy hover effects and shadows on mobile */
  .gallery-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-sm) !important;
  }
  .gallery-card:hover img {
    transform: none !important;
  }
  .why-card:hover, .amenity-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-md) !important;
  }
  .modal-opt-btn:hover {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .booking-modal {
    max-width: 100%;
  }
  .room-actions-row {
    flex-direction: column;
    gap: 8px;
  }
  .room-actions-row .btn-room {
    width: 100%;
  }
  .offer-actions {
    flex-direction: column;
    gap: 8px;
  }
  .offer-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE — VERY SMALL MOBILE (< 380px) & BASE CTA SPANS
   ============================================================ */
.cta-text-full {
  display: inline;
}
.cta-text-short {
  display: none;
}

@media (max-width: 380px) {
  .nav-cta {
    font-size: 13px !important;
    padding: 10px 14px !important;
  }
  .cta-text-full {
    display: none !important;
  }
  .cta-text-short {
    display: inline !important;
  }
}

/* ============================================================
   APARTMENT REBUILD ADDITIONS
   ============================================================ */

/* Apartment Card & Carousel Layout Overrides */
.apartment-card {
  height: auto;
  min-height: 640px;
}

.apartment-card .room-info {
  height: 100%;
  justify-content: space-between;
  padding: 44px 44px; /* slightly smaller padding for layout balance */
}

.apartment-card .room-carousel {
  height: 100%;
  min-height: 100%;
}

.apartment-card .carousel-track {
  height: 100%;
}

.apartment-card .carousel-slide {
  height: 100%;
}

/* Photo Placeholders for Apartment Carousels */
.photo-placeholder {
  width: 100%;
  height: 100%;
  background: #F6F5EE; /* soft, premium ivory */
  border: 1px solid rgba(18, 50, 74, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px;
  box-sizing: border-box;
  text-align: center;
  border-radius: inherit;
  color: var(--navy);
  transition: all var(--transition);
}

.photo-placeholder:hover {
  background: #FAF9F5;
  border-color: rgba(18, 50, 74, 0.12);
}

.photo-placeholder .placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(18, 50, 74, 0.15);
  color: #ffffff;
  transition: transform 0.4s ease;
}

.photo-placeholder:hover .placeholder-icon {
  transform: scale(1.08);
}

/* Small lime dot/icon inside the placeholder icon */
.photo-placeholder .placeholder-icon::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  position: absolute;
  top: 2px;
  right: 2px;
  box-shadow: 0 0 10px var(--lime);
}

.photo-placeholder .placeholder-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.65;
}

/* Apartment Divider */
.apartment-divider {
  border: none;
  border-top: 1px solid rgba(18, 50, 74, 0.12);
  margin: 18px 0;
  width: 100%;
}

/* Price Display Area */
.apt-price-display {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.apt-price-display .price-old {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 500;
}

.apt-price-display .price-final-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.apt-price-display .price-final {
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 900;
  color: var(--navy);
  position: relative;
  line-height: 1;
  display: inline-block;
  background: linear-gradient(180deg, transparent 65%, rgba(223, 255, 63, 0.85) 65%);
  padding: 0 2px;
}

.apt-price-display .price-unit {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

/* Preference Selector */
.pref-selector-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 12px;
}

.pref-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.pref-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.pref-btn {
  background: #ffffff;
  color: var(--navy);
  border: 2px solid rgba(18, 50, 74, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  outline: none;
}

.pref-btn:hover {
  border-color: var(--navy);
  background: var(--ivory-dark);
}

.pref-btn.active {
  background: #0E1724;
  border-color: #0E1724;
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

/* Preference Note */
.pref-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 18px;
  font-style: italic;
}

/* Confirm WhatsApp Button */
.btn-confirm-whatsapp {
  background: #DFFF3F !important;
  color: #101010 !important;
  border-radius: 999px !important;
  padding: 16px 28px !important;
  font-weight: 900 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 20px rgba(223, 255, 63, 0.35) !important;
  transition: all var(--transition) !important;
  width: 100% !important;
  justify-content: center !important;
  display: flex !important;
  align-items: center !important;
}

.btn-confirm-whatsapp:hover {
  background: #C5EE2A !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(223, 255, 63, 0.5) !important;
}

.btn-confirm-whatsapp:active {
  transform: translateY(-1px) !important;
}

/* Responsive Overrides for Apartments */
@media (max-width: 1023px) {
  .apartment-card {
    height: auto;
    min-height: unset;
  }
  .apartment-card .room-carousel {
    height: 380px; /* height around 300px to 420px */
    min-height: 300px;
    border-radius: 36px 36px 0 0 !important;
  }
  .apartment-card .room-info {
    padding: 32px 24px;
  }
  .apartment-card .btn-room {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pref-buttons {
    grid-template-columns: 1fr 1fr; /* segmented preference buttons must be two-column on mobile */
    gap: 8px;
  }
  .pref-btn {
    padding: 10px 8px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }
}


/* ============================================================
   ADDITIONAL CHARGES SYSTEM FOR MANSION ROOMS
   ============================================================ */
.additional-charges-box {
  background: rgba(255, 255, 255, 0.65); /* soft white/glass background */
  border: 1px solid rgba(18, 50, 74, 0.08);
  border-radius: 22px;
  padding: 18px 20px;
  width: 100%;
  margin-bottom: 24px; /* spacing before booking buttons */
  box-sizing: border-box;
}

.charges-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.charges-accent-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  display: inline-block;
}

.charges-title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.charges-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.charge-item.row-style {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.charge-item.column-style {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.charge-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.charge-label {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}

.charge-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.charge-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 480px) {
  .charge-item.row-style,
  .charge-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .charge-value {
    font-size: 0.88rem;
  }
  .additional-charges-box {
    border-radius: 20px;
    padding: 16px;
  }
}

/* ============================================================
   BEE DEE LODGE MOBILE LAYOUT & OVERRIDES
   ============================================================ */
#roomBeeDeeLodge {
  min-height: 600px;
}
@media (max-width: 1023px) {
  #roomBeeDeeLodge .room-carousel {
    height: 460px !important;
  }
}
@media (max-width: 768px) {
  /* Reduce outer section padding on mobile for rooms section */
  #rooms.section-pad {
    padding: 60px 0 !important;
  }
  #rooms .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Bee Dee Lodge Card and Carousel mobile overrides */
  #roomBeeDeeLodge {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important; /* carousel first, content below */
    height: auto !important;
    min-height: unset !important;
    border-radius: 32px !important; /* keep rounded corners */
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  #roomBeeDeeLodge .room-carousel {
    width: 100% !important;
    height: clamp(300px, 52vh, 440px) !important;
    min-height: unset !important;
    border-radius: 32px 32px 0 0 !important; /* image carousel first, top rounded corners */
    overflow: hidden !important;
    position: relative !important;
  }
  
  .bee-dee-carousel {
    width: 100% !important;
    overflow: hidden !important;
  }
  
  .bee-dee-carousel-track {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    transition: transform 0.35s ease !important;
    border-radius: inherit !important;
  }
  
  .bee-dee-carousel-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: inherit !important;
    overflow: hidden !important;
  }
  
  .bee-dee-carousel-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border-radius: inherit !important;
  }
  
  #roomBeeDeeLodge .room-info {
    width: 100% !important;
    padding: 20px !important; /* content below */
    box-sizing: border-box !important;
  }

  /* Make sure dots do not shift layout and sit on top of the image */
  #roomBeeDeeLodge .carousel-dots {
    position: absolute !important;
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
  }
}

/* SEO Anchor Scroll Margin */
#rooms,
#mansion-rooms,
#apartment-rooms,
#bee-dee-lodge {
  scroll-margin-top: 120px;
}

/* Local SEO text paragraph inside Location card */
.loc-seo-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 24px;
  font-weight: 500;
}

/* General hidden helper utility */
.hidden {
  display: none !important;
}
