

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* Font Awesome - ensure icons display */
.fa, .fa-solid, .fa-regular, .fa-brands, .fab {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
}

/* Scroll & entrance animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.animate-scale {
  transform: translateY(30px) scale(0.95);
}
.animate-on-scroll.animate-scale.in-view {
  transform: translateY(0) scale(1);
}

:root {
  /* Skyi Songbirds logo theme - grey */
  --color-primary: #5a5a5a;
  --color-primary-dark: #3a3a3a;
  --color-primary-light: #7a7a7a;
  --color-accent: #8a8a8a;
  --color-ridge-teal: #6a6a6a;
  /* Legacy aliases for compatibility */
  --color-forest-dark: #5a5a5a;
  --color-forest: #7a7a7a;
  --color-forest-light: #3d7fa3;
  --color-forest-accent: #8a8a8a;
  --color-cream: #f5f7f8;
  --color-warm-white: #f8fafb;
  --color-charcoal: #1e2d3a;
  --color-muted: #4a5f6f;
  --color-border: #dce4ea;
  --color-gold: #c9a227;
  --color-gold-light: #e4c04a;
  --color-btn: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
  --color-btn-hover: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  --color-btn-accent: #ea580c;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 4px 24px rgba(90, 90, 90, 0.08);
  --shadow-elevated: 0 12px 48px rgba(90, 90, 90, 0.12);
  /* Typography scale - consistent across all pages */
  --heading-section: clamp(2.5rem, 6vw, 4.5rem);
  --heading-section-mobile: 24px;
  --subheading: clamp(1.25rem, 2.5vw, 2rem);
  --subheading-mobile: 20px;
  --para-size: 1rem;
  --para-size-small: 0.95rem;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-charcoal);
  background: var(--color-warm-white);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0 0 0.5em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin: 0 0 1em; color: var(--color-muted); font-size: var(--para-size); }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Page Wrapper */
.page-wrapper { position: relative; overflow-x: hidden; }

/* ==========================================================================
   Header - Pill style (reference: floating white bar)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  transition: var(--transition);
}
.header-pill-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.5rem 0.6rem 1.25rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.header.scrolled .header-pill-wrap {
  box-shadow: 0 6px 32px rgba(0,0,0,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 0;
}

/* Logo - circular badge + two-line text */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.header-logo:hover { opacity: 0.9; }
.header-logo-badge {
  width: 120px;
  height: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.header-logo-img {
  height: auto;
  width: auto;
  /* object-fit: contain; */
  /* filter: brightness(0) invert(1); */
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.1rem;
}
.header-logo-line1 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201, 162, 39, 0.6);
}
.header-logo-line2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary-dark);
}

/* Vertical separator between logo and nav */
.header-logo-nav-sep {
  width: 1px;
  height: 24px;
  background: #d1d1d1;
  flex-shrink: 0;
}

/* Center nav - evenly spaced links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
  margin: 0 0.5rem;
}
.header-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active { color: var(--color-forest); }

/* Right - Call + Get In Touch */
.header-right-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.header-call-btn:hover {
  color: var(--color-btn-accent);
}
.header-call-btn i {
  font-size: 0.9rem;
}
.header-call-text {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  white-space: nowrap;
}
.header-call-number {
  color: var(--color-charcoal) !important;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #c9a227;
}
.header-call-number:hover { color: var(--color-forest) !important; }
.header-contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  background: var(--color-btn);
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(90, 90, 90, 0.35);
  position: relative;
  overflow: hidden;
}
.header-contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header-contact-btn:hover {
  background: var(--color-btn-hover);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(90, 90, 90, 0.4);
}
.header-contact-btn:hover::before { opacity: 1; }

/* Hamburger - hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-forest-dark);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open { overflow: hidden; }
body.lightbox-open { overflow: hidden; }

/* Mobile overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  z-index: 1001;
  transition: right var(--transition);
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-nav-overlay.open { right: 0; }
.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--color-charcoal);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.mobile-nav-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-btn-accent);
}
.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-menu a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-charcoal);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}
.mobile-nav-menu a:hover,
.mobile-nav-menu .mobile-contact-link,
.mobile-nav-menu .mobile-get-in-touch {
  color: #fff !important;
}
.mobile-get-in-touch {
  margin-top: 1rem;
  padding: 0.75rem 1.25rem !important;
  background: var(--color-btn);
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  display: block;
  transition: var(--transition);
}
.mobile-get-in-touch:hover {
  background: var(--color-btn-hover);
  color: #fff !important;
}
.mobile-contact-link {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem !important;
  background: var(--color-btn);
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  border: none !important;
}

/* Tablet/Mobile - only logo and hamburger visible */
@media (max-width: 1024px) {
  .header-nav,
  .header-logo-nav-sep,
  .header-right-cta { display: none !important; }
  .nav-toggle { display: flex; }
  .mobile-nav-overlay { display: block; }
  .header-pill-wrap { padding: 0.5rem 1rem 0.5rem 1.25rem; }
  .header-inner { gap: 0; }
}

/* Mobile - compact layout */
@media (max-width: 576px) {
  .header { padding: 0.75rem 1rem; }
  .header-pill-wrap { padding: 0.5rem 0.75rem 0.5rem 1rem; }
  .header-logo-badge { width: 100px; height: auto; }
  .header-logo-img { height: auto; }
  .header-logo-line1 { font-size: 0.75rem; letter-spacing: 0.12em; }
  .header-logo-line2 { font-size: 0.95rem; letter-spacing: 0.08em; }
}

/* ==========================================================================
   Hero Section - Video-style banner, content below
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 0;
}
/* Full-viewport video-like banner - no content overlay */
.hero-banner.hero-banner-video-style {
  display: block;
  min-height: 100vh;
  background: url('../images/g1.jpg') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
}

/* Hero banner carousel */
.hero-banner.hero-banner-carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
.hero-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s ease;
}
.hero-carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
/* Arrows - refined glass style */
.hero-carousel-prev,
.hero-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.hero-carousel-prev:hover,
.hero-carousel-next:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--color-forest);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.05);
}
.hero-carousel-prev:active,
.hero-carousel-next:active {
  transform: translateY(-50%) scale(0.98);
}
.hero-carousel-prev {
  left: 2rem;
}
.hero-carousel-next {
  right: 2rem;
}
/* Dots navigation */
.hero-carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.hero-dot.active {
  width: 28px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
/* Mobile / small screens - banner fully visible, width 100% */
@media (max-width: 991px) {
  .hero-section {
    width: 100%;
    overflow: hidden;
    padding: 0;
  }
  .hero-banner.hero-banner-carousel {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  .hero-carousel,
  .hero-carousel-track,
  .hero-carousel-slide {
    width: 100%;
    max-width: 100vw;
  }
  .hero-banner.hero-banner-carousel .hero-carousel-slide {
    background-size: contain;
    background-position: center;
    background-color: #1a1a1a;
  }
}
@media (max-width: 768px) {
  .hero-carousel-prev,
  .hero-carousel-next {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    left: 1rem;
    right: 1rem;
  }
  .hero-carousel-dots { bottom: 1.5rem; gap: 0.5rem; }
  .hero-dot { width: 8px; height: 8px; }
  .hero-dot.active { width: 22px; }
}
@media (max-width: 480px) {
  .hero-banner.hero-banner-carousel {
    min-height: 0;
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .hero-carousel,
  .hero-carousel-track,
  .hero-carousel-slide {
    min-height: 0;
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .hero-carousel-prev,
  .hero-carousel-next {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    left: 0.75rem;
    right: 0.75rem;
  }
  .hero-carousel-dots { bottom: 1.25rem; }
  .hero-dot { width: 6px; height: 6px; }
  .hero-dot.active { width: 18px; }
}

/* Desktop XL (1200px+) - banner fully visible, no cropping on large screens */
@media (min-width: 1200px) {
  .hero-banner.hero-banner-carousel {
    overflow: hidden;
  }
  .hero-banner.hero-banner-carousel .hero-carousel-slide {
    background-size: cover;
    background-position: center;
  }
  .hero-banner.hero-banner-carousel .hero-carousel-slide::before {
    content: '';
    position: absolute;
    inset: -30px;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(14px);
    transform: scale(1.1);
    z-index: 0;
  }
  .hero-banner.hero-banner-carousel .hero-carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.98);
  padding: 2.5rem 2.75rem;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(44, 44, 44, 0.12);
  backdrop-filter: blur(8px);
  margin: 0 auto;
}

/* Hero banner- full width, 6 feature grid */
.hero-theme .hero-uf-inner {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}
.hero-uf-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 2.5rem;
  line-height: 1.3;
}
.hero-uf-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}
.hero-uf-feature h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .hero-uf-features { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
  .hero-uf-features { grid-template-columns: 1fr; }
}
.hero-inner .tagline {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.hero-inner h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
}
.hero-inner .hero-subtitle {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.hero-inner .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.hero-inner .hero-features li {
  font-size: 0.9rem;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.hero-inner .hero-features li::before {
  content: '—';
  color: var(--color-forest);
  font-weight: 600;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--color-btn);
  color: #fff;
  border: 2px solid var(--color-btn-accent);
}
.btn-primary:hover {
  background: var(--color-btn-hover);
  border-color: var(--color-btn-accent);
  color: #fff;
}
/* Creative button - shine effect, icon animation */
.btn-creative {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(90, 90, 90, 0.35);
}
.btn-creative::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-creative:hover::after {
  left: 100%;
}
.btn-creative .btn-icon {
  transition: transform 0.3s ease;
}
.btn-creative:hover .btn-icon {
  transform: translateY(-2px) scale(1.1);
}
.btn-outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 2px solid var(--color-charcoal);
}
.btn-outline:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: #fff;
}
/* Flashy NEW LAUNCH badge - top left of banner */
.new-launch-badge {
  position: absolute;
  top: 5.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.5), 0 0 0 2px rgba(255,255,255,0.4);
  z-index: 2;
  animation: newLaunchPulse 2s ease-in-out infinite;
}
.new-launch-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4a4a4a 0%, #1a1a1a 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.75rem;
  animation: newLaunchStar 1.5s ease-in-out infinite;
}
.new-launch-text {
  text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}
@keyframes newLaunchPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(255, 255, 255, 0.5), 0 0 0 2px rgba(197, 181, 181, 0.4); }
  50% { box-shadow: 0 6px 32px rgba(255, 255, 255, 0.7), 0 0 0 3px rgba(134, 125, 125, 0.6); }
}
@keyframes newLaunchStar {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(15deg); }
}

.rera-badge {
  position: absolute;
  top: 5.5rem;
  right: 2rem;
  background: var(--color-btn);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.5rem 1rem;
  letter-spacing: 0.05em;
  border-radius: 6px;
  z-index: 2;
}

/* Mobile - disable parallax, reduce banner height */
@media (max-width: 768px) {
  .hero-banner.hero-banner-video-style {
    min-height: 100vh;
    background-attachment: scroll;
  }
  .new-launch-badge { top: 1rem; left: 1rem; padding: 0.5rem 1rem; font-size: 0.65rem; letter-spacing: 0.15em; }
  .new-launch-star { width: 24px; height: 24px; font-size: 0.65rem; }
  .rera-badge { top: 1rem; right: 1rem; font-size: 0.6rem; padding: 0.4rem 0.75rem; }
}
@media (max-width: 480px) {
  .hero-banner.hero-banner-video-style { min-height: 100vh; }
  .new-launch-badge { font-size: 0.6rem; padding: 0.4rem 0.75rem; }
  .rera-badge { font-size: 0.55rem; padding: 0.35rem 0.6rem; }
}

/* What you get - Clean, creative, large imagery & text (reference) */
.what-you-get-section {
  position: relative;
  background: #f8fafb;
  padding: 0;
  overflow: visible;
}

.what-you-get-inner {
  position: relative;
  z-index: 1;
}
.what-you-get-inner .section-heading-tag {
  display: block;
  text-align: center;
}
.what-you-get-heading {
  font-size: var(--heading-section);
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.what-you-get-subtitle {
  font-size: var(--subheading);
  text-align: center;
  color: var(--color-muted);
  margin: 0 0 2.5rem;
  font-weight: 400;
  line-height: 1.5;
}
.what-you-get-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}
.what-you-get-tab {
  padding: 0.9rem 1rem;
  background: transparent;
  border: 1px solid #e0e5e0;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  color: #5a5a5a;
  cursor: pointer;
  transition: var(--transition);
}
.what-you-get-tab:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-forest);
}
.what-you-get-tab.active {
  background: #5a5a5a;
  color: #fff;
  border-color: #5a5a5a;
}
.what-you-get-content-wrap {
  position: relative;
}
.what-you-get-cards-deco {
  position: absolute;
  top: 70%;
    left: 50%;
    transform: translate(-50%, -46%);
  width: 100%;
  max-width: 1400px;
  height: 380px;
  background: url(../images/bg.jpg) no-repeat center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: -1;
}

.what-you-get-panels {
  position: relative;
  min-height: 420px;
  z-index: 1;
}
.what-you-get-panel {
  display: none;
  animation: whatYouGetFadeIn 0.5s ease forwards;
}
.what-you-get-panel.active {
  display: block;
}
@keyframes whatYouGetFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.what-you-get-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.what-you-get-card {
  flex: 0 0 380px;
  max-width: 420px;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}
.what-you-get-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.what-you-get-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 56px rgba(90, 90, 90, 0.18);
}
.what-you-get-card-img-wrap {
  position: relative;
  min-height: 320px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.relative{
  position: relative;
}
.what-you-get-card-curve {
  --spacer-size: 80px;
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  max-width: 80px;
  height: var(--spacer-size);
  background-color: #fff;
  border-radius: 0 0 0 40px;
  z-index: 2;
  pointer-events: none;
  border: none;
}
.what-you-get-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
}
.what-you-get-card:hover .what-you-get-card-img-wrap img {
  transform: scale(1.08);
  border: none;
}
.what-you-get-card-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  z-index: 3;
  background: #f4e88a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.what-you-get-card:hover .what-you-get-card-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: #efe050;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.what-you-get-card h4 {
  margin: 0;
  padding: 1.75rem 2rem;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  background: #fff;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.what-you-get-link {
  display: block;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.what-you-get-link:hover {
  color: var(--color-primary-dark);
  transform: scale(1.03);
}
@media (max-width: 1024px) {
  .what-you-get-card { flex: 0 0 calc(50% - 1.25rem); max-width: none; }
}
@media (max-width: 768px) {
  .what-you-get-card { flex: 0 0 100%; max-width: 100%; min-height: auto; }
  .what-you-get-card-img-wrap { min-height: 280px; }
  .what-you-get-curve-top,
  .what-you-get-curve-bottom { height: 50px; }
  .what-you-get-heading { font-size: var(--heading-section-mobile); }
  .what-you-get-subtitle { font-size: var(--subheading-mobile); }
  .what-you-get-cards { gap: 1.5rem; }
}

/* Plans & Pricing - Warm cream bg, dark teal header, white cards */
.pricing-section.pricing-theme {
  background: linear-gradient(180deg, #f5f7f9 0%, #e8eef2 100%);
  padding: 0;
  max-width: none;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.pricing-section .pricing-header {
  background: linear-gradient(135deg, #000000 0%, #7a7a7a 100%);
  padding: 4.5rem 0;
  text-align: center;
  margin-bottom: 0;
}
.pricing-header .section-heading-tag {
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}
.pricing-header {
  margin-bottom: 0;
}
.pricing-title {
  font-size: var(--heading-section);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}
.pricing-subtitle {
  font-size: var(--subheading);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.pricing-section .pricing-layout {
  padding: 4rem 0 2rem;
}
@media (max-width: 576px) {
  .pricing-section .pricing-header { padding: 3rem 0; }
}
.pricing-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}
.pricing-cards-grid .pricing-card-uf:nth-child(n) {
  grid-column: auto;
  grid-row: 1;
  justify-self: stretch;
  min-width: 0;
}
.pricing-card-uf {
  position: relative;
  display: flex;
  flex-direction: column;
  color: inherit;
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  min-width: 280px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(90, 90, 90, 0.08);
  border: 1px solid rgba(90, 90, 90, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card-uf:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(90, 90, 90, 0.15);
  border-color: rgba(90, 90, 90, 0.12);
}
@keyframes pricing-whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); transform: scale(1); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.2); transform: scale(1.05); }
}
.pricing-card-whatsapp {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 2;
  animation: pricing-whatsapp-pulse 2s ease-in-out infinite;
}
.pricing-card-whatsapp:hover {
  color: #fff;
}
.pricing-card-title {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.25rem;
  line-height: 1.35;
  padding-right: 2.5rem;
}
.pricing-card-price {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: #5a5a5a;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}
.pricing-card-price .price-suffix {
  font-size: 0.85em;
  font-weight: 600;
  color: #5a5a5a;
}
.pricing-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: #2c2c2c;
  font-weight: 400;
}
.pricing-card-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-card-features li i {
  color: #5a5a5a;
  font-size: 1rem;
  flex-shrink: 0;
}
.pricing-downloads {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}
.pricing-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  background: var(--color-btn);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.pricing-download-btn:hover {
  background: var(--color-btn-hover);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}
.pricing-download-btn i {
  font-size: 1rem;
  opacity: 0.95;
}
@media (max-width: 1100px) {
  .pricing-layout {
    flex-direction: column;
  }
  .pricing-downloads {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    min-width: auto;
  }
}
@media (max-width: 992px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pricing-download-btn {
    font-size: 0.9rem !important;
    padding: 0.95rem 1.5rem;
  }
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .pricing-cards-grid .pricing-card-uf:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
  }
  .pricing-card-uf { min-width: 0; max-width: 100%; padding: 2rem 1.5rem; }
}
@media (max-width: 576px) {
  .pricing-title { font-size: var(--heading-section-mobile); }
  .pricing-subtitle { font-size: var(--subheading-mobile); }
  .pricing-card-uf { max-width: 100%; padding: 1.75rem 1.25rem; }
  .pricing-download-btn { font-size: 0.85rem !important; padding: 0.85rem 1.25rem; }
  .contact-uf-title-stack { font-size: var(--heading-section-mobile); }
  .section-heading-location h2 { font-size: var(--heading-section-mobile); }
  .section-heading-location .section-subtitle { font-size: var(--subheading-mobile); }
}

/* ==========================================================================
   Section Common - Reference: container-fluid, full-width sections
   ========================================================================== */
.container-fluid {
  width: 100%;
  /* padding-left: 2rem;
  padding-right: 2rem; */
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .container-fluid { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 576px) {
  .container-fluid { padding-left: 1rem; padding-right: 1rem; }
}
@media (max-width: 380px) {
  .container-fluid { padding-left: 0.75rem; padding-right: 0.75rem; }
}
.section {
  padding: 5rem 0;
  width: 100%;
  max-width: none;
}
.section > .container-fluid {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .section { padding: 4rem 0; }
}
@media (max-width: 576px) {
  .section { padding: 3rem 0; }
}
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading-location {
  margin-bottom: 2rem;
}
.section-heading-tag {
  /* display: inline-block; */
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: black;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
@media (max-width: 991px) {
  .section-heading { margin-bottom: 3rem; }
}
@media (max-width: 576px) {
  .section-heading { margin-bottom: 2rem; }
}
.section-heading h2 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
  font-size: var(--heading-section);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.section-heading h2:last-of-type { margin-bottom: 0; }
.section-heading .section-subtitle {
  font-size: var(--subheading);
  color: var(--color-muted);
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .section-heading h2,
  .projects-section .section-heading h2,
  .overview-Unique .section-heading h2,
  .amenities-expand .section-heading h2 { font-size: var(--heading-section-mobile); }
  .section-heading .section-subtitle { font-size: var(--subheading-mobile); }
}

/* ==========================================================================
   Overview - The Art of Measured Living 
   ========================================================================== */

.overview-Unique .section-heading h2 {
  margin-bottom: 0.15em;
  font-size: var(--heading-section);
}
/* Parent needs stacking context so deco stays behind card, not behind section */
.projects-section.projects-overview-theme > .relative {
  isolation: isolate;
}
.overview-deco {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  height: 300px;
  background: linear-gradient(135deg, #000000 0%, #7a7a7a 100%);
  padding: 4.5rem 0 12rem;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 991px) {
  .overview-deco {
    top: 30%;
    height: 220px;
    width: calc(100% - 2rem);
    left: 50%;
  }
}
@media (max-width: 576px) {
  .overview-deco {
    top: 9%;
    height: 216px;
    width: calc(100% - 0rem);
  }
}
.overview-grid-Unique {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.overview-card-Unique {
  background: #fff;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}
.overview-card-Unique:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}
.overview-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-border);
}
.overview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overview-card-Unique h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 1.25rem 1.5rem 0.5rem;
  color: var(--color-charcoal);
  text-transform: none;
  letter-spacing: 0;
}
.overview-card-Unique p {
  font-size: 0.9rem;
  margin: 0 1.5rem 1.5rem;
  color: var(--color-muted);
  line-height: 1.6;
}
@media (max-width: 991px) {
  .overview-grid-Unique { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .overview-grid-Unique { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
  .overview-card-Unique h4 { margin: 1rem 1.25rem 0.4rem; font-size: 1rem; }
  .overview-card-Unique p { margin: 0 1.25rem 1.25rem; font-size: 0.875rem; }
}

/* Legacy overview (if used elsewhere) */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.overview-card {
  padding: 2rem;
  background: #fff;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   Projects / Specification 
   ========================================================================== */
.projects-section {
  background: var(--color-cream);
  padding: 0;
}

/* Overview theme - dark green header like Pricing, cream card below */
.projects-section.projects-overview-theme {
  background: var(--color-cream);
}
.projects-overview-header {
  background: linear-gradient(135deg, #000000 0%, #7a7a7a 100%);
  padding: 4.5rem 0 4rem;
  text-align: center;
}
.projects-overview-header .section-heading-tag {
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}
.projects-overview-title {
  font-size: var(--heading-section);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.15em;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.projects-overview-subtitle {
  font-size: var(--subheading);
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 1rem auto 0;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .projects-overview-header { padding: 3.5rem 0 10rem; }
  .projects-overview .projects-block { margin-top: -8rem; }
}
@media (max-width: 576px) {
  .projects-overview-header { padding: 3rem 0 3rem; }
  .projects-overview .projects-block { margin-top: -6rem; }
  .projects-overview-title { font-size: var(--heading-section-mobile); }
  .projects-overview-subtitle { font-size: var(--subheading-mobile); }
}

.projects-section .section-heading h2 {
  margin-bottom: 0.15em;
  font-size: var(--heading-section);
}
.projects-section .section-subtitle {
  font-size: var(--subheading);
  color: var(--color-muted);
  max-width: 700px;
  margin: 0 auto;
}
.projects-block {
 margin: 0 auto;
 
}
.projects-overview .projects-block {
  padding: 0 0 5rem;
  margin-top: -10rem;
}
.projects-block:last-child { margin-bottom: 0; }
.projects-block-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-forest);
  display: inline-block;
}
.project-card-overview {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(90, 90, 90, 0.12);
  border: 1px solid rgba(90, 90, 90, 0.08);
}
.project-card-overview:hover {
  box-shadow: 0 20px 56px rgba(90, 90, 90, 0.18);
}
.overview-image {
  overflow: hidden;
  min-height: 320px;
}
.overview-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.project-card-overview .overview-image {
  position: relative;
}
.project-card-overview .overview-image img { height: 100%; }
.overview-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 1rem;
  background: rgba(90, 90, 90, 0.95);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 8px;
}
.project-card-overview .project-card-content {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.overview-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.overview-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0 0 1rem;
}
.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.overview-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.overview-highlight-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  color: var(--color-btn-accent);
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 1rem;
}
.overview-highlight-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}
.overview-highlight-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
}
.overview-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.overview-cta-btn {
  padding: 1rem 2rem;
  font-size: 0.95rem;
  border-radius: 50px;
}
.overview-note {
  font-size: 0.85rem;
  color: var(--color-muted);
}
.overview-payment-highlight {
  display: inline-block;
  margin: 1rem 0 0;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-forest-light) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(90, 90, 90, 0.35);
}
@media (max-width: 768px) {
  .project-card-overview { grid-template-columns: 1fr; }
  .overview-image { order: -1; min-height: 260px; }
  .overview-image img { min-height: 260px; }
  .project-card-overview .project-card-content { padding: 2rem; }
  .overview-highlights { margin: 1.25rem 0; padding: 1.25rem 0; gap: 0.875rem; }
  .overview-cta { flex-direction: column; align-items: stretch; text-align: center; }
}
.project-card {
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.project-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}
.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.project-card-content {
  padding: 2rem;
}
.project-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0 0 1.25rem;
}
.project-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
/* Unit Specifications card – no image */
.project-card-specs {
  display: flex;
  flex-direction: column;
}
.project-card-specs .project-card-content { padding: 0; }
.specs-intro-wrap {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, #FAF8F5 0%, #F5F2ED 100%);
  border-bottom: 1px solid var(--color-border);
}
.specs-intro-wrap h4 {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
}
.specs-intro-wrap .specs-tagline {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0 0 1rem !important;
  letter-spacing: 0.02em;
}
.specs-starting {
  font-size: 1rem;
  color: var(--color-muted);
  margin: 0 !important;
}
.specs-starting span {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--color-forest);
  display: block;
  margin-top: 0.25rem;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border);
}
.spec-card {
  padding: 1.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: var(--transition);
}
.spec-card:last-child { border-right: none; }
.spec-card:hover {
  background: #FAF8F5;
}
.spec-type {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-charcoal);
}
.spec-area {
  font-size: 0.95rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}
.spec-price {
  font-size: 1.7em;
  font-weight: 600;
  color: var(--color-forest);
  margin-top: 0.25rem;
}
.specs-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.specs-footer .card-note {
  margin: 0;
  font-size: 0.9rem;
}
.specs-footer .primary-btn {
  font-size: 0.95rem;
  padding: 1rem 1.85rem;
}
@media (max-width: 768px) {
  .specs-intro-wrap { padding: 1.5rem; }
  .specs-grid { grid-template-columns: 1fr; }
  .spec-card {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem;
  }
  .spec-card:last-child { border-bottom: none; }
  .specs-footer { flex-direction: column; align-items: stretch; text-align: center; padding: 1.5rem; }
}
.project-card table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.project-card th,
.project-card td {
  padding: 0.75rem 0;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.project-card th {
  font-weight: 600;
  color: var(--color-charcoal);
}
.project-card td {
  color: var(--color-muted);
}
.project-card .primary-btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  background: var(--color-btn);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}
.project-card .primary-btn:hover {
  background: var(--color-btn-hover);
  color: #fff;
}
.project-card .card-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: right;
  margin: 1rem 0 0;
}
@media (max-width: 991px) {
  .projects-block { margin-bottom: 2.5rem; }
}
@media (max-width: 576px) {
  .projects-block { margin-bottom: 2rem; }
  .projects-block-title { font-size: 1.25rem; margin-bottom: 1rem; }
  .project-card-overview { padding: 0; }
  .project-card-overview .project-card-content { padding: 1.75rem; }
  .specs-intro-wrap h4 { font-size: 1.4rem; }
  .spec-type { font-size: 1.2rem; }
  .spec-area { font-size: 0.9rem; }
  .spec-price { font-size: 1.1rem; }
}

/* ==========================================================================
   Unit Plans / Floor Plans
   ========================================================================== */
.plans-section {
  background: var(--color-cream);
  padding: 0;
}
.plans-section.plans-floorplan-redesign {
  background: var(--color-cream);
}

/* Floor plan header - dark green like Overview & Pricing */
.plans-floorplan-header {
  background: linear-gradient(135deg, #000000 0%, #7a7a7a 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.plans-floorplan-header .section-heading-tag {
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}
.plans-floorplan-title {
  font-size: var(--heading-section);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.15em;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.plans-floorplan-subtitle {
  font-size: var(--subheading);
  color: rgba(255,255,255,0.9);
  max-width: 500px;
  margin: 1rem auto 0;
  font-weight: 400;
}
@media (max-width: 576px) {
  .plans-floorplan-header { padding: 3rem 0; }
  .plans-floorplan-title { font-size: var(--heading-section-mobile); }
  .plans-floorplan-subtitle { font-size: var(--subheading-mobile); }
}

.plans-tabs-section .section-heading { margin-bottom: 2.5rem; }
.plans-tabs-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0 5rem;
  position: relative;
}
.plans-tabs-left {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(90, 90, 90, 0.1);
  border: 1px solid rgba(90, 90, 90, 0.08);
  display: flex;
  flex-direction: column;
}
.plan-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--color-border);
  min-height: 0;
  background: #fff;
}
.plan-tab:last-child { border-bottom: none; }
.plan-tab:hover { background: #faf9f7; }
.plan-tab.active {
  background: linear-gradient(135deg, #f5f9f6 0%, #eef5f0 100%);
  box-shadow: inset 4px 0 0 var(--color-forest);
}
.plan-tab.active .plan-tab-title {
  color: var(--color-primary-dark);
  font-weight: 700;
}
.plan-tab.active .plan-tab-size {
  color: var(--color-muted);
}
.plan-tab-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-charcoal);
  margin: 0 0 0.25em;
}
.plan-tab:not(.active) .plan-tab-title {
  color: #9a9a9a;
  font-weight: 500;
}
.plan-tab:not(.active) .plan-tab-size {
  color: #d0d0d0;
}
.plan-tab-size {
  font-size: 0.8rem;
  margin: 0;
  color: inherit;
}
.plans-slider-right {
  flex: 1;
  padding: 0 2rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.plans-slider-panel {
  display: none;
  flex: 1;
  min-height: 0;
}
.plans-slider-panel.active {
  display: flex;
  flex-direction: column;
}
.plans-slider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  flex: 1;
  min-height: 360px;
}
.plans-slider-grid-single {
  grid-template-columns: 2fr;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}
.plan-slide {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(90, 90, 90, 0.1);
  border: 1px solid rgba(90, 90, 90, 0.06);
  min-height: 340px;
  height: 100%;
  transition: var(--transition);
}
.plan-slide:hover {
  box-shadow: 0 16px 48px rgba(90, 90, 90, 0.15);
  transform: translateY(-4px);
}
.plan-slide-inner {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
}
.plan-slide-inner img {
  width: 600px;
  height: 400px;
  min-height: auto;
  object-fit: cover;

  display: block;
  filter: blur(5px);
  transition: filter 0.4s ease;
}
.plan-slide-inner:hover img {
  filter: blur(3px);
}
.plan-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--color-btn);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(90, 90, 90, 0.4);
}
.plan-slide-inner:hover .plan-view-btn {
  background: var(--color-btn-hover);
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 6px 28px rgba(90, 90, 90, 0.5);
}
.plans-enquire-vertical {
  position: sticky;
  top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-height: 180px;
  background: var(--color-btn);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  border-radius: 12px;
  flex-shrink: 0;
  transition: var(--transition);
}
.plans-enquire-vertical:hover {
  background: var(--color-btn-hover);
  color: #fff;
}
@media (max-width: 991px) {
  .plans-section.plans-floorplan-redesign .plans-tabs-wrap { padding: 3rem 0 4rem; }
  .plans-tabs-wrap { flex-direction: column; }
  .plans-tabs-left {
    flex: none;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    border-radius: 16px;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
  }
  .plan-tab {
    flex: 0 0 auto;
    min-width: 180px;
    border-bottom: none;
    border-right: 1px solid var(--color-border);
  }
  .plan-tab.active {
    box-shadow: inset 0 -4px 0 var(--color-forest);
  }
  .plans-slider-right { padding: 0 1rem 2rem; }
  .plans-enquire-vertical {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    z-index: 100;
    width: 40px;
    min-height: 140px;
  }
}
@media (max-width: 576px) {
  .plans-section.plans-floorplan-redesign .plans-tabs-wrap { padding: 2rem 0 3rem; }
  .plan-tab { min-width: 130px; padding: 0.9rem 0.75rem; font-size: 0.9rem; }
  .plan-tab-size { font-size: 0.75rem; }
  .plans-slider-right { padding: 0 1rem 1.5rem; }
  .plans-slider-grid { grid-template-columns: 1fr; min-height: 300px; gap: 1rem; }
  .plan-slide, .plan-slide-inner { min-height: 280px; }
  .plan-slide-inner img { min-height: 280px; }
}
@media (max-width: 380px) {
  .plan-tab { min-width: 110px; padding: 0.75rem 0.5rem; }
  .plan-tab-title { font-size: 0.95rem; }
}

/* ==========================================================================
   Gallery 
   ========================================================================== */
.gallery-section {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.gallery-section .section-heading {
  padding-left: 2rem;
  padding-right: 2rem;
}
.gallery-slider-wrap {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.gallery-slider {
  overflow: hidden;
}
.gallery-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  will-change: transform;
  animation: galleryFilmScroll 10s linear infinite;
}
.gallery-slider-wrap:hover .gallery-track {
  animation-play-state: paused;
}
@keyframes galleryFilmScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-item {
  flex: 0 0 calc((100% - 1.5rem) / 2.5);
  min-width: 0;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease, height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item.gallery-item--zoomed {
  height: 420px;
  box-shadow: 0 16px 48px rgba(44, 44, 44, 0.18);
  z-index: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item.gallery-item--zoomed img {
  transform: scale(1.12);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.gallery-item--zoomed:hover img { transform: scale(1.15); }
@media (max-width: 1024px) {
  .gallery-item { flex: 0 0 calc((100% - 0.75rem) / 1.5); height: 360px; }
  .gallery-item.gallery-item--zoomed { height: 380px; }
}
@media (max-width: 576px) {
  .gallery-section { padding: 3rem 0; }
  .gallery-item { flex: 0 0 calc((100% - 0.75rem) / 1.5); min-width: 0; height: 300px; }
  .gallery-item.gallery-item--zoomed { height: 320px; }
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox .lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.gallery-lightbox .lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}
.gallery-lightbox .lightbox-prev,
.gallery-lightbox .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  background: var(--color-btn);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.gallery-lightbox .lightbox-prev:hover,
.gallery-lightbox .lightbox-next:hover { background: var(--color-btn-hover); }
.gallery-lightbox .lightbox-prev { left: 1.5rem; }
.gallery-lightbox .lightbox-next { right: 1.5rem; }
.gallery-lightbox .lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox .lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}
@media (max-width: 576px) {
  .gallery-lightbox .lightbox-close { top: 1rem; right: 1rem; width: 44px; height: 44px; }
  .gallery-lightbox .lightbox-prev, .gallery-lightbox .lightbox-next {
    width: 44px; height: 44px; left: 0.75rem; right: 0.75rem;
  }
  .gallery-lightbox .lightbox-content { max-width: 95vw; }
}

/* Location - matches site heading/subheading scale */
.section-heading-location .section-heading-tag,
.section-heading-gallery .section-heading-tag { display: block; }
.section-heading-location h2 {
  font-size: var(--heading-section);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}
.section-subtitle-creative {

  font-size: clamp(1.15rem, 2vw, 1.4rem);
 
  color: var(--color-charcoal);
  max-width: 640px;
  margin: 0.5rem auto 1rem;
  line-height: 1.5;
}
.section-heading-location .section-subtitle {
  font-size: var(--subheading);
  color: var(--color-muted);
  max-width: 700px;
  margin: 1rem auto 0.75rem;
}
.location-faq-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-forest);
  text-decoration: underline;
  margin-top: 0.5rem;
}
.location-faq-link:hover { color: var(--color-primary-dark); }

/* Completion and delivery - dark teal block, bottom-left hook cutout */
.completion-section {
  padding: 1rem 0;
  background: #fff;
}
.completion-block {
  max-width: 100%;
  margin: 0 auto;
  padding: 3.5rem 3rem 4rem;
  background: #5a5a5a;
  color: #fff;
  text-align: center;
  position: relative;
  /* Rounded top-left, top-right, bottom-right; distinctive hook cutout at bottom-left */
  border-radius: 24px 24px 24px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.completion-block .section-heading-tag {
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}
.completion-title {
  font-size: var(--heading-section);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--font-display);
}
.completion-tagline {
  font-size: var(--subheading);
  font-weight: 400;
  margin: 0 0 2rem;
  color: #fff;
  opacity: 0.98;
  line-height: 1.5;
}
.completion-date-box {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-btn);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
}

/* ==========================================================================
   Location - U style: dark map left, accordion card right
   ========================================================================== */
.location-section.location-ref { background: #E8E6E3; padding: 6rem 2rem; }
.location-ref-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.location-map-panel {
  background: var(--color-forest-dark);
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.location-map-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}
.location-brand {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.25rem;
}
.location-title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0;
}
.location-subtitle {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin: 0.35rem 0 0;
  font-weight: 400;
}
.location-map-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.location-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,76,110,0.3) 0%, rgba(26,76,110,0.75) 100%);
  pointer-events: none;
}
.location-details-card {
  background: #FAF8F6;
  border: 1px solid var(--color-border);
  border-left: none;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}
.location-card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin: 0 0 0.2em;
}
.location-card-highlight {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-forest);
  margin: 0 0 2rem;
}
.location-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.location-acc-item {
  border-bottom: 1px solid var(--color-border);
}
.location-acc-item:last-child { border-bottom: none; }
.location-acc-toggle {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-charcoal);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.location-acc-toggle:hover { color: var(--color-forest); }
.location-acc-toggle i {
  font-size: 0.75rem;
  color: var(--color-muted);
  transition: transform var(--transition);
}
.location-acc-item.active .location-acc-toggle i { transform: rotate(180deg); }
.location-acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.location-acc-item.active .location-acc-content { max-height: 200px; }
/* Location card - static content (no accordion) */
.location-details-card > .location-acc-content {
  max-height: none;
  overflow: visible;
}
.location-details-card > .location-card-title {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-charcoal);
}
.location-details-card > .location-card-title:first-of-type { margin-top: 0; }
.location-acc-content p {
  margin: 0 0 0.5rem;
  padding-left: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.location-acc-content p:last-child { margin-bottom: 1rem; }
@media (max-width: 991px) {
  .location-ref-inner { grid-template-columns: 1fr; }
  .location-details-card { border-left: 1px solid var(--color-border); border-top: none; }
  .location-map-panel { min-height: 360px; }
  .location-map-wrap iframe { min-height: 300px; }
}
@media (max-width: 576px) {
  .location-section.location-ref { padding: 4rem 1rem; }
  .location-map-header { padding: 1.5rem 1rem 0.75rem; }
  .location-title { font-size: 1.2rem; }
  .location-details-card { padding: 1.75rem 1.25rem; }
  .location-card-highlight { font-size: 1.4rem; }
  .location-acc-toggle { padding: 0.9rem 0; font-size: 0.95rem; }
  .location-map-panel { min-height: 280px; }
  .location-map-wrap iframe { min-height: 250px; }
}

/* ==========================================================================
   Amenities - Premium lifestyle section
   Left: Main feature image | Right: Scrollable amenity cards
   ========================================================================== */
.amenities-section {
  background: linear-gradient(180deg, #f8fafb 0%, #eef2f5 50%, #f5f7f9 100%);
  padding: 6rem 1.5rem;
  position: relative;
}
.amenities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90, 90, 90, 0.1), transparent);
}
.amenities-expand .section-heading h2 { margin-bottom: 0.15em; }
.amenities-expand .section-heading-tag { color: var(--color-btn-accent); font-weight: 700; }
.amenities-expand-wrap {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 480px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(90, 90, 90, 0.08), 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(90, 90, 90, 0.06);
}

/* Main (left 65%) - Featured amenity display */
.amenity-main {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.amenity-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 53, 82, 0.15) 0%, rgb(0 0 0 / 55%) 100%);
   pointer-events: none;
}
.amenity-main-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.amenity-main:hover .amenity-main-bg {
  transform: scale(1.03);
}
.amenity-main-title {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.amenity-main-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 6px;
}

/* Right - narrow vertical cards, stacked, scrollable */
.amenity-cards-stack {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 520px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}
.amenity-cards-stack::-webkit-scrollbar { width: 6px; }
.amenity-cards-stack::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.02); border-radius: 3px; }
.amenity-cards-stack::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.35); border-radius: 3px; }
.amenity-cards-stack::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, 0.5); }
.amenity-card-collapsed {
  flex: 0 0 auto;
  min-height: 110px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.amenity-card-collapsed:last-child { border-bottom: none; }
.amenity-card-collapsed:hover {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: inset 4px 0 0 var(--color-btn-accent);
}
.amenity-card-collapsed.in-main { display: none; }
.amenity-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.amenity-card-collapsed:hover .amenity-card-bg {
  transform: scale(1.08);
}
/* Overlay - refined dark gradient */
.amenity-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(0 0 0 / 75%) 0%, rgb(0 0 0 / 60%) 100%);  transition: background 0.35s ease;
}
.amenity-card-collapsed:hover .amenity-card-overlay {
  background: linear-gradient(135deg, rgb(0 0 0 / 75%) 0%, rgb(0 0 0 / 60%) 100%);
}
/* Vertical label */
.amenity-card-label {
  position: absolute;
  top: -6px;
  left: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-body);
  white-space: nowrap;
  z-index: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  transform: rotate(90deg);
  transform-origin: left bottom;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
  .amenities-expand-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto;
    min-height: auto;
    border-radius: 16px;
  }
.amenity-main-tag {
    display: none;
  }
  .amenity-main { min-height: 360px; }
  .amenity-cards-stack {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    min-height: 160px;
  }
  .amenity-card-collapsed {
    flex: 0 0 28%;
    min-width: 140px;
    min-height: 160px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .amenity-card-collapsed:hover {
    box-shadow: inset 0 -4px 0 var(--color-btn-accent);
  }
  .amenity-card-label {
    transform: rotateZ(45deg);
    bottom: 10px !important;
    left: -4rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 576px) {
  .amenities-section { padding: 4rem 1rem; }
  .amenities-expand-wrap { border-radius: 12px; }
  .amenity-card-collapsed {
    flex: 0 0 45%;
    min-width: 120px;
    min-height: 140px;
  }
  .amenity-cards-stack { min-height: 140px; -webkit-overflow-scrolling: touch; }
  .amenity-main { min-height: 300px; }
}

/* ==========================================================================
   About Developer
   ========================================================================== */
.about-section { background: #fff; }
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}
@media (max-width: 576px) {
  .about-content { padding: 0 0.5rem; }
  .about-content p { font-size: 0.95rem;        text-align: justify; }
}

/* ==========================================================================
   Contact - An Invitation to Begin (reference design)
   ========================================================================== */
.contact-section.contact-invitation {
  background: #f8f5ed;
  padding: 6rem 2rem;
}
.contact-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.contact-card-left {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-heading-main {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin: 0 0 0.1em;
  line-height: 1.1;
}
.contact-heading-script {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-forest);
  margin: 0 0 1.25rem;
  line-height: 1.2;
  margin-left: 0.15em;
}
.contact-desc {
  font-size: 1rem;
  color: #5c5c5c;
  margin: 0 0 2rem;
  line-height: 1.6;
}
.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.contact-call {
  background: var(--color-btn);
  color: #fff;
}
.contact-call:hover { background: var(--color-btn-hover); color: #fff; }
.contact-whatsapp {
  background: #25D366;
  color: #fff;
}
.contact-whatsapp:hover { background: #20bd5a; color: #fff; }
.contact-card-right {
  padding: 3rem 2.5rem;
}
.form-group-invitation {
  margin-bottom: 1rem;
}
.form-error-msg {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: #fde8e8;
  border: 1px solid #e57373;
  border-radius: 8px;
  color: #c62828;
  font-size: 0.9rem;
}
.contact-form-invitation input[type="text"],
.contact-form-invitation input[type="tel"],
.contact-form-invitation input[type="email"] {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: none;
  background: #ebebeb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-charcoal);
  transition: var(--transition);
}
.contact-form-invitation input::placeholder { color: #888; }
.contact-form-invitation input:focus {
  outline: none;
  background: #e5e5e5;
}
.form-select-invitation {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: none;
  background-color: #ebebeb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-charcoal);
  cursor: pointer;
  appearance: none;
  padding-right: 2.5rem;
}
.form-select-invitation:focus {
  outline: none;
  background-color: #e5e5e5;
}
.contact-submit-invitation {
  width: 100%;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
  background: var(--color-btn);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(90, 90, 90, 0.3);
}
.contact-submit-invitation:hover {
  background: var(--color-btn-hover);
}
.disc {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #888;
  margin-top: 1.25rem;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.disc input[type="checkbox"] {
  margin: 0;
  margin-top: 0.2em;
  flex-shrink: 0;
}
.disc label {
  flex: 1;
  margin: 0;
  cursor: pointer;
}
.disc a { color: var(--color-forest); text-decoration: underline; }
@media (max-width: 991px) {
  .contact-card { grid-template-columns: 1fr; }
  .contact-card-left,
  .contact-card-right { padding: 2.5rem 2rem; }
}
/* Contact - Reference: cream bg, 3-col layout [Title | Address | Form] */
.contact-section.contact-theme {
  background: #fff;
  padding: 0 0 0rem;
  margin: 0;
}
.contact-uf-container {
  background: #f5f7f9;
  border-radius: 24px 24px 0 0;
  padding: 4rem 2.5rem;
  max-width: 1600px;
  margin: 0 auto;
}
.contact-uf-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-uf-heading .section-heading-tag {
  margin-bottom: 0.5rem;
}
.contact-uf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.contact-uf-title-stack {
  font-size: var(--heading-section);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.contact-uf-address-card {
  background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
  padding: 2.5rem 2.25rem;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(90, 90, 90, 0.08);
  border: 1px solid rgba(90, 90, 90, 0.06);
  transition: var(--transition);
}
.contact-uf-address-card:hover {
  box-shadow: 0 12px 40px rgba(90, 90, 90, 0.12);
}
.address-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(90, 90, 90, 0.12);
}
.address-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #7a7a7a 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 1.1rem;
}
.contact-uf-address-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0;
  letter-spacing: 0.02em;
}
.contact-uf-brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-charcoal);
  margin: 0 0 0.5rem !important;
}
.address-card-location {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 1.5rem !important;
}
.address-card-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.address-card-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(90, 90, 90, 0.04);
  border-radius: 12px;
  color: var(--color-charcoal);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}
.address-card-link:hover {
  background: rgba(90, 90, 90, 0.1);
  color: var(--color-primary-dark);
}
.address-link-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #7a7a7a 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-uf-form-wrap {
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.contact-uf-form-wrap .contact-form-uf {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form-uf .form-group-invitation { margin-bottom: 1rem; }
.contact-form-uf input[type="text"],
.contact-form-uf input[type="email"],
.contact-form-uf input[type="tel"] {
  width: 100%;
  min-width: 0;
  padding: 0.95rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 0.95rem;
  background: #fff;
  font-family: inherit;
  box-sizing: border-box;
}
.contact-form-uf .form-select-invitation {
  width: 100%;
  min-width: 0;
  padding: 0.95rem 2.5rem 0.95rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 0.95rem;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 1rem center;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}
.contact-form-uf input:focus,
.contact-form-uf .form-select-invitation:focus {
  border-color: var(--color-forest);
  box-shadow: 0 0 0 2px rgba(90, 90, 90, 0.15);
  outline: none;
}
.contact-form-disc {
  margin: 1rem 0 1.25rem;
  font-size: 0.78rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.contact-form-disc input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.contact-form-disc label { cursor: pointer; }
.contact-submit-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.contact-form-uf .contact-submit-invitation {
  padding: 1rem 1.75rem;
  background: var(--color-btn);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(90, 90, 90, 0.3);
}
.contact-form-uf .contact-submit-invitation::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.contact-form-uf .contact-submit-invitation:hover::after {
  width: 300px;
  height: 300px;
}
.contact-form-uf .contact-submit-invitation:hover {
  background: var(--color-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(90, 90, 90, 0.4);
}
.contact-submit-x {
  width: 44px;
  height: 44px;
  background: var(--color-btn);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.contact-submit-x:hover {
  background: var(--color-btn-hover);
}
@media (max-width: 768px) {
  .contact-uf-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-uf-heading { text-align: left; margin-bottom: 2rem; }
  .contact-uf-title-stack { text-align: left; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-uf-form-wrap {
    padding: 2rem 1.5rem;
  }
  .contact-uf-address-card { padding: 2rem 1.5rem; }
  .address-card-link { padding: 0.65rem 0.9rem; font-size: 0.9rem; }
  .address-link-icon { width: 32px; height: 32px; font-size: 0.8rem; }
  .contact-uf-container { padding: 3rem .5rem; }
}

@media (max-width: 576px) {
  .contact-section.contact-invitation,
  .contact-section.contact-theme { padding: 4rem 0rem; }
  .contact-card { border-radius: 16px; }
  .contact-card-left, .contact-card-right { padding: 1.75rem 1.2rem; }
  .contact-heading-main { font-size: 1.75rem; }
  .contact-heading-script { font-size: 1.75rem; }
  .contact-actions { flex-direction: column; }
  .contact-action-btn { justify-content: center; padding: 1rem; min-height: 48px; }
  .disc { font-size: 0.72rem; }
}

/* ==========================================================================
   Footer CTA + Footer - Reference style (exact match)
   ========================================================================== */
.footer-cta-wrapper {
  background: #000000;
  padding-bottom: 0;
}
.footer-cta-section {
  padding: 5rem 0 4rem;
  text-align: center;
}
.footer-cta-title {
  font-size: var(--heading-section);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.75rem;
  line-height: 1.2;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--color-btn);
  color: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.footer-cta-btn:hover {
  background: #fff;
  color: var(--color-btn-accent);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.footer-cta-btn-icon {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.footer-cta-btn:hover .footer-cta-btn-icon {
  background: #000000;
  color: #ffffff;
  border-color: var(--color-btn-accent);

}
.footer-cta-btn:hover .footer-cta-btn-icon {
  transform: scale(1.05);
}
/* Footer disclaimer marquee */
.footer-disclaimer-marquee {
  overflow: hidden;
  padding: 0.75rem 0;
  background: rgba(90, 90, 90, 0.06);
  border-top: 1px solid rgba(90, 90, 90, 0.08);
  margin-top: 1.5rem;
}
.footer-disclaimer-marquee:hover .footer-marquee-track {
  animation-play-state: paused;
}
.footer-marquee-track {
  display: flex;
  gap: 6rem;
  animation: footerMarquee 50s linear infinite;
  width: max-content;
}
.footer-marquee-text {
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.5;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes footerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.footer {
  background: #fff;
  color: #333;
  padding: 2.5rem 0 0;
  border-radius: 40px 40px 0 0;
  position: relative;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}
.footer-uf-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-uf-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 1;
}
.footer-uf-logo-badge {
  width: 150px;
  height: auto;
  /* border-radius: 50%;
  background: #1a3d2e; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-uf-logo {
  width: auto;
  height: auto;
  /* object-fit: contain;
  filter: brightness(0) invert(1) sepia(0.4) saturate(3) hue-rotate(5deg); */
}
.footer-uf-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-uf-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #2c2c2c;
}
.footer-uf-name {
  font-size: 1rem;
  font-weight: 700;
  color: #5a5a5a;
}
.footer-uf-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  order: 3;
  margin-left: auto;
}
.footer-uf-links a {
  color: #5a5a5a;
  font-size: 0.85rem;
  text-decoration: none;
}
.footer-uf-links a:hover { color: var(--color-forest); }
.footer-sep {
  margin: 0 0.5rem;
  color: #999;
  font-size: 0.8rem;
}
.footer-rera {
  flex: 1 1 auto;
  order: 2;
  text-align: center;
  margin: 0 1rem;
  padding: 0 0.75rem;
  min-width: 0;
}
.footer-rera p {
  margin: 0 0 0.35rem !important;
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.footer-rera p:last-child { margin-bottom: 0 !important; }
.footer-rera a {
  color: var(--color-primary);
  text-decoration: none;
}
.footer-rera a:hover { text-decoration: underline; }
.footer-copyright {
  flex: 1 1 100%;
  order: 4;
  text-align: center;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}
.footer-copyright p {
  margin: 0 !important;
  font-size: 0.8rem;
  color: #5a5a5a;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-uf-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-uf-brand { justify-content: center; }
  .footer-uf-links { justify-content: center; margin-left: 0; }
  .footer-rera { margin: 0; padding: 0.5rem 0; }
  .footer-copyright { text-align: center; }
}
@media (max-width: 576px) {
  .footer-cta-section { padding: 4rem 0 3rem; }
  .footer { padding: 2rem 0 1.5rem; border-radius: 28px 28px 0 0; }
  .footer-disclaimer-marquee { padding: 0.6rem 0; }
  .footer-marquee-text { font-size: 0.7rem; }
  .footer-uf-links { font-size: 0.8rem; justify-content: center; }
  .footer-sep { margin: 0 0.35rem; }
  .footer-rera p { font-size: 0.7rem; }
}

/* ==========================================================================
   Mobile Typography - Override all headings/subheadings (must come last)
   ========================================================================== */
@media (max-width: 991px) {
  .what-you-get-heading { font-size: var(--heading-section-mobile); }
  .what-you-get-subtitle { font-size: var(--subheading-mobile); }
}
@media (max-width: 768px) {
  .section-heading h2,
  .projects-section .section-heading h2,
  .overview-Unique .section-heading h2,
  .amenities-expand .section-heading h2,
  .section-heading-location h2,
  .pricing-title,
  .projects-overview-title,
  .plans-floorplan-title,
  .completion-title,
  .footer-cta-title,
  .contact-uf-title-stack,
  .what-you-get-heading { font-size: 24px !important; }
  .section-heading .section-subtitle,
  .section-heading-location .section-subtitle,
  .pricing-subtitle,
  .projects-overview-subtitle,
  .plans-floorplan-subtitle,
  .completion-tagline,
  .what-you-get-subtitle { font-size: 20px !important; }
}

/* ==========================================================================
   Floating CTA & Scroll Top
   ========================================================================== */
/* Chat with us - Beautiful floating WhatsApp button */
.chat-with-us-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.chat-with-us-float:hover {
  transform: translateY(-4px) scale(1.02);
  color: #fff;
}
.chat-with-us-float:hover .chat-with-us-inner {
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}
.chat-with-us-float:hover .chat-with-us-pulse {
  animation: none;
  opacity: 0;
}
.chat-with-us-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  opacity: 0.3;
  animation: chatPulse 2s ease-in-out infinite;
  transition: opacity 0.3s ease;
}
@keyframes chatPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.08); opacity: 0.15; }
}
.chat-with-us-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0,0,0,0.08);
  border: 2px solid rgba(255,255,255,0.25);
  transition: box-shadow 0.3s ease;
}
.chat-with-us-inner i {
  font-size: 1.35rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.chat-with-us-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .chat-with-us-float { bottom: 5.5rem; right: 1rem; }
  .chat-with-us-text { display: none; }
  .chat-with-us-inner { padding: 0.9rem 1rem; border-radius: 50%; }
  .chat-with-us-inner i { font-size: 1.5rem; }
  .chat-with-us-pulse { inset: -3px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .chat-with-us-float { bottom: 5.25rem; right: 0.75rem; }
}

/* Legacy whatsapp-float (for other uses) */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.whatsapp-float img { width: 36px; height: 36px; }
.whatsapp-float span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal);
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-btn);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  bottom: 2rem;
}
.scroll-top:hover { background: var(--color-btn-hover); }

/* Fixed Footer CTA (Mobile) */
.fixed-footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: #fff;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  z-index: 997;
}
.fixed-footer-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}
.fixed-footer-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-charcoal);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.fixed-footer-cta a:hover {
  background: var(--color-btn);
  color: #fff;
  border-color: var(--color-btn-accent);
}
.fixed-footer-cta a img { width: 20px; height: 20px; }
@media (max-width: 768px) {
  .fixed-footer-cta {
    display: block;
    padding: 1rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,244,239,0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -1px 0 var(--color-border), 0 -8px 32px rgba(44,44,44,0.08);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .fixed-footer-cta::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    opacity: 0.8;
  }
  .fixed-footer-cta .cta-buttons {
    gap: 0.625rem;
    max-width: 100%;
    padding: 0 0.25rem;
  }
  .fixed-footer-cta a {
    padding: 1rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
  }
  .fixed-footer-cta a:first-child {
    background: var(--color-btn);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  }
  .fixed-footer-cta a:first-child:hover {
    background: var(--color-btn-hover);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  }
  .fixed-footer-cta a:first-child img {
    filter: brightness(0) invert(1);
  }
  .fixed-footer-cta a:last-child {
    background: var(--color-btn);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(90, 90, 90, 0.3);
  }
  .fixed-footer-cta a:last-child:hover {
    background: var(--color-btn-hover);
    box-shadow: 0 6px 20px rgba(90, 90, 90, 0.4);
  }
  .fixed-footer-cta a:last-child img {
    filter: brightness(0) invert(1);
  }
  .fixed-footer-cta a:active {
    transform: scale(0.97);
  }
  .fixed-footer-cta a img {
    width: 22px;
    height: 22px;
  }
  .whatsapp-float { bottom: 5.5rem; right: 1rem; padding: 0.6rem 1rem; }
  .whatsapp-float span { display: none; }
  .whatsapp-float img { width: 32px; height: 32px; }
  .scroll-top { bottom: 5.5rem; left: 1rem; width: 44px; height: 44px; }
  .scroll-top.visible { bottom: 5.5rem; }
}
@media (max-width: 576px) {
  .fixed-footer-cta { padding: 0.625rem 0.75rem calc(0.625rem + env(safe-area-inset-bottom)); }
  .fixed-footer-cta .cta-buttons { gap: 0.5rem; }
  .fixed-footer-cta a { padding: 0.9rem 1rem; font-size: 0.75rem; }
  .whatsapp-float { bottom: 5.25rem; right: 0.75rem; }
  .scroll-top { left: 0.75rem; bottom: 5.25rem; }
  .scroll-top.visible { bottom: 5.25rem; }
}

/* ==========================================================================
   Modal Overrides
   ========================================================================== */
.modal-content {
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow-elevated);
}
.modal-header {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem;
}
.modal-header .close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
}
.modal-header .close:hover { opacity: 1; }
.modal-body { padding: 1.5rem; }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

/* Preloader */
#preloader-wrap {
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
#preloader-wrap .preloader-inner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-forest);
  border-radius: 50%;
  animation: preloader-spin 0.8s linear infinite;
}
@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

/* Primary button in content */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-btn);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(90, 90, 90, 0.3);
  position: relative;
  overflow: hidden;
}
.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.primary-btn:hover {
  background: var(--color-btn-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(90, 90, 90, 0.4);
}
.primary-btn:hover::before { left: 100%; }
