﻿/* ========== RESET ========== */
/* Minimal reset - only essential resets */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; padding: 0; }
img, picture, video, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; }



/* 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 {
  /* Provident Sunworth City logo theme - navy blue */
  --color-primary: #1a3a6c;
  --color-primary-dark: #0e2444;
  --color-primary-light: #2b5082;
  --color-accent: #3d6ba8;
  --color-ridge-teal: #2b5082;
  /* Legacy aliases for compatibility */
  --color-forest-dark: #0e2444;
  --color-forest: #1a3a6c;
  --color-forest-light: #3d6ba8;
  --color-forest-accent: #5a85b8;
  --color-cream: #f4f6f9;
  --color-warm-white: #fafbfc;
  --color-charcoal: #1a1a1a;
  --color-muted: #3d4f63;
  --color-border: #d6dee8;
  --color-gold: #3d6ba8;
  --color-gold-light: #5a85b8;
  --color-btn: linear-gradient(135deg, #2b5082 0%, #1a3a6c 100%);
  --color-btn-hover: linear-gradient(135deg, #1a3a6c 0%, #0e2444 100%);
  --color-btn-accent: #1a3a6c;
  --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(26, 58, 108, 0.08);
  --shadow-elevated: 0 12px 48px rgba(26, 58, 108, 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: 98px;
  height: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.header-logo-img {
  height: auto;
  width: auto;

}
.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(61, 107, 168, 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: var(--color-border);
  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: var(--color-accent);
}
.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(26, 58, 108, 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(26, 58, 108, 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: 70px; 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;
}
/* Slide group wraps d-banner + m-banner pair - group controls visibility */
.hero-carousel-slide-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s ease;
}
.hero-carousel-slide-group.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
/* Inner slides (d-banner/m-banner) - one per viewport via media queries */
.hero-carousel-slide-group .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: 1;
  visibility: visible;
}
/* 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);
}
/* Default: desktop images */
.hero-carousel-slide-group .d-banner { display: block; }
.hero-carousel-slide-group .m-banner { display: none; }
/* Desktop: show d-banner, hide m-banner */
@media (min-width: 769px) {
  .hero-carousel-slide-group .m-banner { display: none !important; }
  .hero-carousel-slide-group .d-banner { display: block !important; }
}
/* Mobile: show m-banner, hide d-banner */
@media (max-width: 768px) {
  .hero-carousel-slide-group .d-banner { display: none !important; }
  .hero-carousel-slide-group .m-banner { display: block !important; }
  .hero-banner.hero-banner-carousel { min-height: 100vh; }
  .hero-carousel,
  .hero-carousel-track,
  .hero-carousel-slide { min-height: 100vh; }
  .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: 100vh; }
  .hero-carousel,
  .hero-carousel-track,
  .hero-carousel-slide { min-height: 70vh;
   }

   .hero-carousel-slide-group .hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 63vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    visibility: visible;
}
.hero-carousel-slide-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 65vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7scubic-bezier(0.4, 0, 0.2, 1), visibility 0.7sease;
}

  .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+) â€” full-bleed cover, no blurred side bars */
@media (min-width: 1200px) {
  .hero-banner.hero-banner-carousel .hero-carousel-slide {
    background-size: cover;
    background-position: center center;
  }
}

.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(26, 58, 108, 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, #0e2444 0%, #1a3a6c 50%, #2b5082 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(26, 58, 108, 0.45), 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, #2b5082 0%, #1a3a6c 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-primary);
  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: 70vh;
    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,
  .hero-banner.hero-banner-carousel { min-height: 70vh; }
  .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: var(--color-warm-white);
  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 var(--color-border);
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-primary);
  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: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.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(26, 58, 108, 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: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  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: var(--color-primary);
  box-shadow: 0 8px 28px rgba(26, 58, 108, 0.25);
}
.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, #f4f6f9 0%, #e8edf3 100%);
  padding: 0;
  max-width: none;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.pricing-section .pricing-header {
  background: linear-gradient(135deg, #0e2444 0%, #1a3a6c 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(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  flex: 1;
  min-width: 0;
  align-items: stretch;
}
.pricing-cards-grid .pricing-card-uf:nth-child(n) {
  min-width: 0;
}
@media (min-width: 993px) {
  .pricing-cards-grid .pricing-card-uf:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .pricing-cards-grid .pricing-card-uf:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }
}
.pricing-card-uf {
  position: relative;
  display: flex;
  flex-direction: column;
  color: inherit;
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  min-width: 0;
  max-width: none;
  width: 100%;
  box-shadow: 0 8px 32px rgba(26, 58, 108, 0.08);
  border: 1px solid rgba(26, 58, 108, 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(26, 58, 108, 0.15);
  border-color: rgba(26, 58, 108, 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: var(--color-primary);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}
.pricing-card-price .price-suffix {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--color-primary);
}
.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: var(--color-primary);
  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);
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .pricing-download-btn {
    font-size: 0.9rem !important;
    padding: 0.95rem 1.5rem;
  }
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  .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: var(--color-btn-accent);
  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, #0e2444 0%, #1a3a6c 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, #0e2444 0%, #1a3a6c 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(26, 58, 108, 0.12);
  border: 1px solid rgba(26, 58, 108, 0.08);
}
.project-card-overview:hover {
  box-shadow: 0 20px 56px rgba(26, 58, 108, 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(26, 58, 108, 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, #0e2444 0%, #1a3a6c 100%);
  color: #fff;
  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.25rem;
  flex-wrap: nowrap;
  margin-top: 1rem;
}
.overview-cta .section-cta--overview {
  margin-top: 0;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.overview-cta .overview-note {
  flex-shrink: 0;
  white-space: nowrap;
  margin: 0;
}
.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(26, 58, 108, 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-wrap: wrap;
    gap: 0.75rem 1rem;
  }
  .overview-cta .section-cta--overview {
    flex-wrap: wrap;
  }
}
.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, #f4f6f9 0%, #e8edf3 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: var(--color-cream);
}
.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, #0e2444 0%, #1a3a6c 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.plans-floorplan-header .section-heading-tag,.pricing-section .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: 1.5rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 0 5rem;
  position: relative;
}
.plans-tabs-left {
  flex: 4;
  min-width: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 58, 108, 0.1);
  border: 1px solid rgba(26, 58, 108, 0.08);
  display: grid;
  grid-template-columns: 4fr 3fr;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  grid-auto-flow: column;
}
.plans-tabs-left .plan-tab:nth-child(-n+4) {
  border-right: 1px solid var(--color-border);
}
.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: #f4f6f9; }
.plan-tab.active {
  background: linear-gradient(135deg, #f4f7fb 0%, #e8eef5 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: 3;
  min-width: 0;
  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(26, 58, 108, 0.1);
  border: 1px solid rgba(26, 58, 108, 0.06);
  min-height: 340px;
  height: 100%;
  transition: var(--transition);
}
.plan-slide:hover {
  box-shadow: 0 16px 48px rgba(26, 58, 108, 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(26, 58, 108, 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(26, 58, 108, 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;
    grid-template-columns: unset;
    grid-template-rows: unset;
    grid-auto-flow: unset;
    overflow-x: auto;
    gap: 0;
    border-radius: 16px;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
  }
  .plans-tabs-left .plan-tab:nth-child(-n+4) {
    border-right: 1px solid var(--color-border);
  }
  .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: var(--color-primary);
  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: #e8edf3; 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,58,108,0.3) 0%, rgba(26,58,108,0.75) 100%);
  pointer-events: none;
}
.location-details-card {
  background: var(--color-cream);
  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, #fafbfc 0%, #eef2f6 50%, #f4f6f9 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(26, 58, 108, 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(26, 58, 108, 0.08), 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(26, 58, 108, 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(26, 58, 108, 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(26, 58, 108, 0.08);
  border: 1px solid rgba(26, 58, 108, 0.06);
  transition: var(--transition);
}
.contact-uf-address-card:hover {
  box-shadow: 0 12px 40px rgba(26, 58, 108, 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(26, 58, 108, 0.12);
}
.address-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0e2444 0%, #1a3a6c 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(26, 58, 108, 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(26, 58, 108, 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, #0e2444 0%, #1a3a6c 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(26, 58, 108, 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(26, 58, 108, 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(26, 58, 108, 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: #0e2444;
  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: var(--color-primary);
  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(26, 58, 108, 0.06);
  border-top: 1px solid rgba(26, 58, 108, 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: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-uf-logo {
  width: auto;
  max-height: 28px;
  height: auto;
  object-fit: contain;
}
.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: var(--color-primary);
}
.footer-uf-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  order: 3;
  margin-left: auto;
}
.footer-uf-links a {
  color: var(--color-primary);
  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: var(--color-primary);
  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(26, 58, 108, 0.35);
  }
  .fixed-footer-cta a:first-child:hover {
    background: var(--color-btn-hover);
    box-shadow: 0 6px 20px rgba(26, 58, 108, 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(26, 58, 108, 0.3);
  }
  .fixed-footer-cta a:last-child:hover {
    background: var(--color-btn-hover);
    box-shadow: 0 6px 20px rgba(26, 58, 108, 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; }
}

/* ==========================================================================
   Section CTA — WhatsApp + Enquiry Form
   ========================================================================== */
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.section-cta--hero {
  margin-top: 0;
  padding: 1.25rem 0 0.5rem;
}
.section-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  letter-spacing: 0.02em;
}
.section-cta-btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.section-cta-btn--whatsapp:hover {
  color: #fff;
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}
.section-cta-btn--form {
  background: var(--color-btn);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.section-cta-btn--form:hover {
  background: var(--color-btn-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
@media (max-width: 576px) {
  .section-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .section-cta-btn {
    width: 100%;
  }
}

/* Enquiry popup modal */
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.enquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.enquiry-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 36, 68, 0.65);
  border: none;
  padding: 0;
  cursor: pointer;
}
.enquiry-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  border-top: 4px solid var(--color-primary);
}
.enquiry-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f4f6f9;
  color: var(--color-charcoal);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.enquiry-modal-close:hover {
  background: #e8edf3;
}
.enquiry-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-primary-dark);
  margin: 0 2rem 0.5rem 0;
  line-height: 1.35;
  padding-right: 0.5rem;
}
.enquiry-modal-sub {
  margin: 0 0 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.enquiry-modal-form .form-error-msg {
  margin-bottom: 1rem;
}
body.enquiry-modal-open {
  overflow: hidden;
}

/* ==========================================================================
   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(26, 58, 108, 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(26, 58, 108, 0.4);
}
.primary-btn:hover::before { left: 100%; }
.policy-content h2{
  font-size: 45px;
}


/* ========== LAYOUT V2 ========== */
/* ==========================================================================
   Provident Sunworth City â€” Layout V2
   ========================================================================== */
/* Fonts loaded via <link> in HTML for faster paint */

body.layout-v2 {
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --header-h: 80px;
  --section-pad: clamp(3.5rem, 7vw, 5.5rem);
  --section-gap: clamp(1.5rem, 3vw, 2.5rem);
  --section-bg-a: #ffffff;
  --section-bg-b: #eef3f8;
  --header-bg: #ffffff;
  --header-bg-scrolled: rgba(255, 255, 255, 0.96);
  --header-border: rgba(26, 58, 108, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 18px 50px rgba(26, 58, 108, 0.09);
  --shadow-hover: 0 22px 56px rgba(26, 58, 108, 0.14);
  font-family: var(--font-body);
}

body.layout-v2 h1,
body.layout-v2 h2,
body.layout-v2 h3,
body.layout-v2 h4,
body.layout-v2 h5 {
  font-family: var(--font-display);
}

/* ── HEADER (refined white bar) ── */
body.layout-v2 .header {
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 4px 30px rgba(26, 58, 108, 0.07);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.layout-v2 .header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(26, 58, 108, 0.15) 15%,
    var(--color-primary) 50%,
    rgba(26, 58, 108, 0.15) 85%,
    transparent 100%
  );
  opacity: 0.55;
  pointer-events: none;
}

body.layout-v2 .header-pill-wrap {
  max-width: 1320px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0 clamp(1rem, 3vw, 2rem);
  min-height: var(--header-h);
  transition: min-height 0.25s ease, padding 0.25s ease;
}

body.layout-v2 .header.scrolled .header-pill-wrap {
  min-height: var(--header-h);
}

body.layout-v2 .header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(26, 58, 108, 0.08);
  box-shadow: 0 8px 32px rgba(26, 58, 108, 0.1);
}

body.layout-v2 .header-logo-nav-sep { display: none; }

body.layout-v2 .header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s ease;
}

body.layout-v2 .header-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

body.layout-v2 .header-logo-partner {
  display: flex;
  align-items: center;
  padding-left: 0.55rem;
  border-left: 1px solid var(--header-border);
}

body.layout-v2 .header-footer-logo-img {
  max-height: 26px;
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
}

body.layout-v2 .header-logo-badge {
  width: auto;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

body.layout-v2 .header-logo:hover .header-logo-badge {
  border: none;
  box-shadow: none;
}

body.layout-v2 .header.scrolled .header-logo-img {
  max-height: 54px;
}

body.layout-v2 .header-logo-img {
  max-height: 54px;
  height: 54px;
  width: auto;
  object-fit: contain;
}

body.layout-v2 .header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
  margin: 0;
  min-width: 0;
  padding: 0.35rem;
  background: rgba(238, 243, 248, 0.65);
  border: 1px solid rgba(26, 58, 108, 0.07);
  border-radius: 999px;
}

body.layout-v2 .header-nav a {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.55rem 0.95rem;
  white-space: nowrap;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

body.layout-v2 .header-nav a::after {
  display: none;
}

body.layout-v2 .header-nav a:hover {
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.9);
}

body.layout-v2 .header-nav a.active {
  color: #fff !important;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  box-shadow: 0 4px 14px rgba(26, 58, 108, 0.28);
}

body.layout-v2 .header-right-cta {
  position: relative;
  padding-left: 1rem;
}

body.layout-v2 .header-right-cta::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--header-border), transparent);
}

body.layout-v2 .header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 55%, var(--color-primary-dark) 100%);
  color: #fff !important;
  border-radius: 999px;
  padding: 0.45rem 1.2rem 0.45rem 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  box-shadow: 0 6px 20px rgba(26, 58, 108, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.layout-v2 .header-contact-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
}

body.layout-v2 .header-contact-btn:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 58, 108, 0.34);
}

body.layout-v2 .header-contact-btn:active {
  transform: translateY(0);
}

body.layout-v2 .nav-toggle {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--header-border);
  border-radius: var(--radius-sm);
  background: var(--section-bg-b);
  transition: background 0.2s ease, border-color 0.2s ease;
}

body.layout-v2 .nav-toggle:hover {
  background: #fff;
  border-color: rgba(26, 58, 108, 0.18);
}

body.layout-v2 .nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-primary-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.layout-v2 .nav-toggle.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

body.layout-v2 .nav-toggle.active span {
  background: #fff;
}

/* Dim backdrop when mobile menu is open */
body.layout-v2.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(14, 36, 68, 0.42);
  z-index: 999;
  pointer-events: none;
}

body.layout-v2 .mobile-nav-overlay {
  top: 0;
  right: -100%;
  width: min(320px, 88vw);
  max-width: 88vw;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  border-left: 1px solid var(--header-border);
  box-shadow: -16px 0 48px rgba(26, 58, 108, 0.16);
  padding: calc(var(--header-h) + 0.75rem) 1.25rem 1.5rem;
  transition: right 0.28s ease;
}

body.layout-v2 .mobile-nav-overlay::before {
  content: 'Navigation';
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--header-border);
}

body.layout-v2 .mobile-nav-overlay.open {
  right: 0;
}

body.layout-v2 .mobile-nav-close {
  top: calc(var(--header-h) * 0.5 - 22px);
  right: 1rem;
  width: 44px;
  height: 44px;
  color: var(--color-primary-dark);
  background: var(--section-bg-b);
  border: 1px solid var(--header-border);
  border-radius: var(--radius-sm);
}

body.layout-v2 .mobile-nav-close:hover {
  background: var(--color-primary);
  color: #fff;
}

body.layout-v2 .mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
}

body.layout-v2 .mobile-nav-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.layout-v2 .mobile-nav-menu a:hover {
  color: var(--color-primary-dark) !important;
  background: var(--section-bg-b);
  border-color: var(--header-border);
}

body.layout-v2 .mobile-nav-menu a.active {
  color: var(--color-primary-dark) !important;
  font-weight: 600;
  background: var(--section-bg-b);
  border-color: rgba(26, 58, 108, 0.12);
  box-shadow: inset 3px 0 0 var(--color-primary);
}

body.layout-v2 .mobile-get-in-touch,
body.layout-v2 .mobile-contact-link {
  margin-top: auto;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.85rem 1.25rem !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(26, 58, 108, 0.22);
}

body.layout-v2 .mobile-get-in-touch:hover,
body.layout-v2 .mobile-contact-link:hover {
  background: var(--color-primary-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26, 58, 108, 0.28);
}

@media (min-width: 1025px) {
  body.layout-v2 .header-inner {
    width: 100%;
    justify-content: flex-start;
    gap: clamp(0.85rem, 1.6vw, 1.75rem);
  }

  body.layout-v2 .header-right-cta {
    flex-shrink: 0;
    margin-left: 0.15rem;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  body.layout-v2 .header-nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
  }

  body.layout-v2 .header-contact-btn {
    font-size: 0.75rem;
    padding-right: 1rem;
  }
}

@media (max-width: 1024px) {
  body.layout-v2 .header {
    background: #fff;
  }

  body.layout-v2 .header-pill-wrap {
    padding: 0 1rem;
  }

  body.layout-v2 .header-logo-badge {
    padding: 0;
    border: none;
    box-shadow: none;
  }

  body.layout-v2 .header-logo-img {
    max-height: 50px;
    height: 50px;
  }

  body.layout-v2 .header-footer-logo-img {
    max-height: 22px;
    height: 22px;
  }

  body.layout-v2 .header-logo-partner {
    padding-left: 0.45rem;
  }

  body.layout-v2 .nav-toggle {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  body.layout-v2 .mobile-nav-overlay {
    width: 100%;
    max-width: 100%;
    border-left: none;
  }

  body.layout-v2 .mobile-nav-menu a {
    font-size: 0.85rem;
    min-height: 46px;
  }
}

/* â”€â”€ HERO â”€â”€ */
body.layout-v2 .hero-section {
  padding-top: 0;
  background: transparent;
}

body.layout-v2 .hero-banner.hero-banner-carousel {
  display: block;
  min-height: 100vh !important;
  max-height: none;
  overflow: hidden;
}

body.layout-v2 .hero-banner.hero-banner-carousel .hero-carousel-slide {
  background-size: cover;
  background-position: center center;
}

body.layout-v2 .hero-banner.hero-banner-carousel .hero-carousel-slide::before,
body.layout-v2 .hero-banner.hero-banner-carousel .hero-carousel-slide::after {
  display: none;
  content: none;
}

body.layout-v2 .rera-badge {
  top: 5.5rem;
  right: 2rem;
  left: auto;
  bottom: auto;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

/* â”€â”€ LAYOUT â”€â”€ */
body.layout-v2 .section {
  padding: var(--section-pad) 0;
}

/* Alternating light section backgrounds (A / B) */
body.layout-v2 #overview,
body.layout-v2 #unit-plan,
body.layout-v2 #amenities,
body.layout-v2 #about {
  background: var(--section-bg-a);
}

body.layout-v2 #pricing,
body.layout-v2 #gallery,
body.layout-v2 #location,
body.layout-v2 #contactus {
  background: var(--section-bg-b);
}

body.layout-v2 .pricing-section.pricing-theme {
  background: var(--section-bg-b);
  padding: var(--section-pad) 0;
}

body.layout-v2 .plans-section.plans-floorplan-redesign {
  background: var(--section-bg-a);
}

body.layout-v2 .location-section.location-ref {
  padding: var(--section-pad) 0;
}

body.layout-v2 .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ==========================================================================
   SECTION HEADINGS â€” unified overview style
   ========================================================================== */
body.layout-v2 .sec-head {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(var(--section-gap) + 0.5rem);
}

body.layout-v2 .sec-head__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
}

body.layout-v2 .sec-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  color: var(--color-charcoal);
}

body.layout-v2 .sec-head__sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0 auto;
  max-width: 580px;
}

body.layout-v2 .sec-head::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

/* Completion strip â€” light text on navy */
body.layout-v2 .completion-section .sec-head {
  margin-bottom: 0;
}

body.layout-v2 .completion-section .sec-head__tag {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

body.layout-v2 .completion-section .sec-head__title {
  color: #fff;
}

body.layout-v2 .completion-section .sec-head__sub {
  color: rgba(255, 255, 255, 0.72);
}

body.layout-v2 .completion-section .sec-head::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.35));
}

/* â”€â”€ OVERVIEW â”€â”€ */
body.layout-v2 .overview-deco,
body.layout-v2 .projects-overview-header { display: none; }

body.layout-v2 .projects-overview .projects-block { margin-top: 0 !important; }

body.layout-v2 .project-card-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.35s ease;
}

body.layout-v2 .project-card-overview:hover { box-shadow: var(--shadow-hover); }

body.layout-v2 .project-card-overview .overview-image {
  min-height: 100%;
  order: 2;
}

body.layout-v2 .project-card-overview .project-card-content {
  order: 1;
  padding: clamp(2rem, 4vw, 3.25rem) !important;
  background: #fff;
}

body.layout-v2 .overview-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

body.layout-v2 .overview-image-badge {
  top: 1.25rem;
  bottom: auto;
  left: 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.layout-v2 .overview-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border: none;
  padding: 0;
  margin: 1.75rem 0;
}

body.layout-v2 .overview-highlight-item {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
}

body.layout-v2 .overview-highlight-icon {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
}

body.layout-v2 .overview-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
  margin-top: 1.5rem;
}
body.layout-v2 .overview-cta .section-cta--overview {
  margin-top: 0;
  justify-content: flex-start;
}

body.layout-v2 .overview-cta-btn {
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.75rem;
}

/* â”€â”€ PRICING â€” original layout; heading & price tweaks only â”€â”€ */
body.layout-v2 .pricing-section .pricing-layout {
  padding-top: 0;
}

body.layout-v2 .pricing-section .pricing-downloads {
  padding-bottom: 0;
  margin-top: 2rem;
}

body.layout-v2 .pricing-section .sec-head__sub strong {
  color: var(--color-primary);
  font-weight: 700;
}

body.layout-v2 .pricing-section .pricing-card-title {
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  letter-spacing: 0.01em;
}

body.layout-v2 .pricing-section .pricing-card-price {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

body.layout-v2 .pricing-section .price-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

/* â”€â”€ FLOOR PLANS â€” original tab layout (style.css) â”€â”€ */

/* â”€â”€ GALLERY â”€â”€ */
body.layout-v2 .gallery-section {
  padding-top: var(--section-pad);
  padding-bottom: 0;
}

body.layout-v2 .gallery-slider-wrap {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
  margin: 0;
}

body.layout-v2 .gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* â”€â”€ AMENITIES REDESIGN â”€â”€ */
body.layout-v2 .amenities-section {
  padding: clamp(2.5rem, 5vw, 3.75rem) 1.25rem;
  color: var(--color-charcoal);
}

body.layout-v2 .amenities-section .sec-head {
  margin-bottom: calc(var(--section-gap) * 0.65);
}

body.layout-v2 .amenities-redesign.amenities-expand-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0.85rem;
  max-width: 100%;
  min-height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

body.layout-v2 .amenities-hero.amenity-main {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

body.layout-v2 .amenities-hero.amenity-main::after { display: none; }

body.layout-v2 .amenities-hero .amenity-main-bg {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
}

body.layout-v2 .amenities-hero.is-switching .amenity-main-bg {
  transform: scale(1.06);
  opacity: 0.85;
}

body.layout-v2 .amenities-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 36, 68, 0.15) 0%, rgba(14, 36, 68, 0.82) 100%);
  z-index: 1;
  pointer-events: none;
}

body.layout-v2 .amenities-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.35rem 1.5rem;
}

body.layout-v2 .amenities-hero .amenity-main-tag {
  display: inline-block;
  position: static;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
  backdrop-filter: blur(6px);
}

body.layout-v2 .amenities-hero .amenity-main-title {
  position: static;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  margin: 0 0 0.35rem;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

body.layout-v2 .amenities-hero-count {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
}

body.layout-v2 .amenities-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

body.layout-v2 .amenities-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

body.layout-v2 .amenities-nav-prev { left: 0.85rem; }

body.layout-v2 .amenities-nav-next { right: 0.85rem; }

body.layout-v2 .amenities-tile-grid.amenity-cards-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  max-height: none;
  overflow: visible;
  padding: 0;
}

body.layout-v2 .amenities-tile-grid .amenity-card-collapsed {
  min-height: 96px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  border-bottom: none;
  box-shadow: 0 8px 24px rgba(26, 58, 108, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.layout-v2 .amenities-tile-grid .amenity-card-collapsed:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 58, 108, 0.14);
}

body.layout-v2 .amenities-tile-grid .amenity-card-collapsed.in-main {
  display: block;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 108, 0.12), 0 12px 28px rgba(26, 58, 108, 0.15);
}

body.layout-v2 .amenities-tile-grid .amenity-card-collapsed.in-main::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.layout-v2 .amenities-tile-grid .amenity-card-overlay {
  background: linear-gradient(180deg, rgba(14, 36, 68, 0.05) 0%, rgba(14, 36, 68, 0.78) 100%);
}

body.layout-v2 .amenities-tile-grid .amenity-card-collapsed:hover .amenity-card-overlay,
body.layout-v2 .amenities-tile-grid .amenity-card-collapsed.in-main .amenity-card-overlay {
  background: linear-gradient(180deg, rgba(14, 36, 68, 0.1) 0%, rgba(14, 36, 68, 0.88) 100%);
}

body.layout-v2 .amenities-tile-grid .amenity-card-label {
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.55rem;
  top: auto;
  transform: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  line-height: 1.3;
  white-space: normal;
}

/* â”€â”€ LOCATION REDESIGN â”€â”€ */
body.layout-v2 .location-redesign.location-ref-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto 1fr;
  gap: 1.25rem;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  background: transparent;
}

body.layout-v2 .location-stats-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

body.layout-v2 .location-stat {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.layout-v2 .location-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

body.layout-v2 .location-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(26, 58, 108, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

body.layout-v2 .location-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
}

body.layout-v2 .location-stat-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.2;
}

body.layout-v2 .location-redesign .location-map-panel {
  position: relative;
  min-height: 480px;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

body.layout-v2 .location-redesign .location-map-wrap {
  position: absolute;
  inset: 0;
}

body.layout-v2 .location-redesign .location-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  display: block;
}

body.layout-v2 .location-redesign .location-map-overlay { display: none; }

body.layout-v2 .location-map-float {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  max-width: min(340px, calc(100% - 2.5rem));
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 12px 36px rgba(26, 58, 108, 0.15);
  backdrop-filter: blur(8px);
}

body.layout-v2 .location-redesign .location-brand {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

body.layout-v2 .location-redesign .location-title {
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 0 0 0.25rem;
  line-height: 1.3;
  letter-spacing: 0;
}

body.layout-v2 .location-subtitle {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0 0 0.85rem;
  line-height: 1.45;
}

body.layout-v2 .location-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--color-primary);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease;
}

body.layout-v2 .location-directions-btn:hover {
  background: var(--color-primary-dark);
  color: #fff !important;
}

body.layout-v2 .location-redesign .location-details-card {
  background: linear-gradient(145deg, #fff 0%, var(--color-cream) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  min-height: 480px;
}

body.layout-v2 .location-connect-shell {
  display: grid;
  grid-template-columns: minmax(210px, 38%) 1fr;
  gap: 1rem;
  height: 100%;
  min-height: 460px;
}

/* Vertical timeline tab rail */
body.layout-v2 .location-cat-tabs {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.35rem 0 0.35rem 0.65rem;
}

body.layout-v2 .location-tab-rail {
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 3px;
  height: 52px;
  border-radius: 3px;
  background: linear-gradient(180deg, #2b7fd4, var(--color-primary));
  box-shadow: 0 0 12px rgba(26, 58, 108, 0.35);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), height 0.35s ease;
  pointer-events: none;
}

body.layout-v2 .location-cat-tab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(26, 58, 108, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-charcoal);
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

body.layout-v2 .location-cat-tab:hover {
  transform: translateX(4px);
  border-color: rgba(26, 58, 108, 0.22);
  box-shadow: 0 8px 20px rgba(26, 58, 108, 0.08);
}

body.layout-v2 .location-cat-tab.active {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 28px rgba(26, 58, 108, 0.28);
  transform: translateX(6px);
}

body.layout-v2 .location-tab-orb {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}

body.layout-v2 .location-cat-tab[data-loc-tab="metro"] .location-tab-orb {
  background: rgba(43, 127, 212, 0.15);
  color: #2b7fd4;
}

body.layout-v2 .location-cat-tab[data-loc-tab="it"] .location-tab-orb {
  background: rgba(91, 76, 196, 0.15);
  color: #5b4cc4;
}

body.layout-v2 .location-cat-tab[data-loc-tab="schools"] .location-tab-orb {
  background: rgba(30, 140, 90, 0.15);
  color: #1e8c5a;
}

body.layout-v2 .location-cat-tab[data-loc-tab="hospitals"] .location-tab-orb {
  background: rgba(196, 76, 76, 0.15);
  color: #c44c4c;
}

body.layout-v2 .location-cat-tab[data-loc-tab="retail"] .location-tab-orb {
  background: rgba(196, 140, 43, 0.15);
  color: #c48c2b;
}

body.layout-v2 .location-cat-tab.active .location-tab-orb {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

body.layout-v2 .location-tab-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

body.layout-v2 .location-tab-name {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

body.layout-v2 .location-tab-hint {
  font-size: 0.68rem;
  line-height: 1.35;
  opacity: 0.72;
}

body.layout-v2 .location-cat-tab:not(.active) .location-tab-hint {
  color: var(--color-muted);
}

body.layout-v2 .location-tab-count {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  background: rgba(26, 58, 108, 0.08);
  color: var(--color-primary);
}

body.layout-v2 .location-cat-tab.active .location-tab-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Panel stage */
body.layout-v2 .location-cat-panels {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.layout-v2 .location-cat-panels::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--loc-accent, var(--color-primary));
  transition: background 0.35s ease;
}

body.layout-v2 .location-cat-panel {
  display: none;
}

body.layout-v2 .location-cat-panel.active {
  display: block;
  animation: locPanelIn 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes locPanelIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

body.layout-v2 .location-cat-panel[data-accent="metro"] { --loc-accent: #2b7fd4; }
body.layout-v2 .location-cat-panel[data-accent="it"] { --loc-accent: #5b4cc4; }
body.layout-v2 .location-cat-panel[data-accent="schools"] { --loc-accent: #1e8c5a; }
body.layout-v2 .location-cat-panel[data-accent="hospitals"] { --loc-accent: #c44c4c; }
body.layout-v2 .location-cat-panel[data-accent="retail"] { --loc-accent: #c48c2b; }

body.layout-v2 .location-panel-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

body.layout-v2 .location-panel-badge {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--loc-accent, var(--color-primary));
  box-shadow: 0 6px 16px color-mix(in srgb, var(--loc-accent, var(--color-primary)) 35%, transparent);
}

body.layout-v2 .location-panel-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 0;
  line-height: 1.3;
}

body.layout-v2 .location-point-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

body.layout-v2 .location-point-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-muted);
  padding: 0.7rem 0.85rem;
  background: var(--color-cream);
  border: 1px solid rgba(26, 58, 108, 0.06);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

body.layout-v2 .location-point-list li:hover {
  border-color: color-mix(in srgb, var(--loc-accent, var(--color-primary)) 30%, transparent);
  transform: translateX(3px);
}

body.layout-v2 .location-cat-panel.active .location-point-list li i {
  color: var(--loc-accent, var(--color-primary));
}

body.layout-v2 .location-point-list li i {
  font-size: 0.82rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* â”€â”€ COMPLETION â”€â”€ */
body.layout-v2 .completion-section {
  padding: 0;
  background: var(--color-primary);
}

body.layout-v2 .completion-block {
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: none;
}

body.layout-v2 .completion-section .sec-head {
  margin-bottom: 0;
}

body.layout-v2 .completion-date-box {
  margin: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}

/* â”€â”€ SPECS & ABOUT â”€â”€ */
body.layout-v2 .specifications-section {
  border-top: 1px solid var(--color-border);
}

body.layout-v2 .about-section {
  border-top: 1px solid var(--color-border);
}

body.layout-v2 .about-content {
  max-width: 1020px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-card);
}

body.layout-v2 .specifications-section .about-content { background: #fff; }

body.layout-v2 .about-content p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

body.layout-v2 .about-content p:last-child { margin-bottom: 0; }

body.layout-v2 .about-content strong { color: var(--color-charcoal); }

/* â”€â”€ CONTACT (light â€” footer CTA below is navy) â”€â”€ */
body.layout-v2 .contact-section.contact-theme {
  background: var(--section-bg-b);
  padding: var(--section-pad) 0;
}

body.layout-v2 .contact-uf-container {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

body.layout-v2 .contact-uf-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.25rem;
  align-items: stretch;
}

body.layout-v2 .contact-uf-address-card {
  background: #fff;
  color: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease;
}

body.layout-v2 .contact-uf-address-card:hover {
  box-shadow: var(--shadow-hover);
}

body.layout-v2 .contact-uf-address-card .address-card-header {
  border-bottom-color: var(--color-border);
}

body.layout-v2 .contact-uf-brand,
body.layout-v2 .address-card-location {
  color: var(--color-muted);
}

body.layout-v2 .address-card-header h5 {
  color: var(--color-primary-dark);
}

body.layout-v2 .address-card-link {
  border-radius: var(--radius-sm);
  background: rgba(26, 58, 108, 0.05);
  color: var(--color-charcoal);
  transition: background 0.2s ease, color 0.2s ease;
}

body.layout-v2 .address-card-link:hover {
  background: rgba(26, 58, 108, 0.1);
  color: var(--color-primary-dark);
}

body.layout-v2 .contact-uf-form-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-card);
}

/* â”€â”€ FLOAT BUTTONS â”€â”€ */
body.layout-v2 .scroll-top {
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  width: 46px;
  height: 46px;
}

body.layout-v2 .chat-with-us-inner { border-radius: var(--radius-sm); }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  body.layout-v2 .project-card-overview { grid-template-columns: 1fr; }

  body.layout-v2 .project-card-overview .overview-image {
    order: -1;
    min-height: 280px;
  }

  body.layout-v2 .amenities-redesign.amenities-expand-wrap {
    grid-template-columns: 1fr;
  }

  body.layout-v2 .amenities-hero.amenity-main {
    min-height: 275px;
  }

  body.layout-v2 .location-redesign.location-ref-inner {
    grid-template-columns: 1fr;
  }

  body.layout-v2 .location-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  body.layout-v2 .location-redesign .location-map-panel,
  body.layout-v2 .location-redesign .location-details-card {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  body.layout-v2 .header-pill-wrap { padding: 0 1rem; }

  body.layout-v2 .header-nav,
  body.layout-v2 .header-right-cta { display: none; }

  body.layout-v2 .nav-toggle { display: flex; }

  body.layout-v2 .container-fluid { padding-left: 1rem; padding-right: 1rem; }

  body.layout-v2 .overview-highlights { grid-template-columns: 1fr; }

  body.layout-v2 .amenities-tile-grid.amenity-cards-stack {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  body.layout-v2 .amenities-tile-grid .amenity-card-collapsed {
    min-height: 84px;
  }

  body.layout-v2 .amenities-hero-content {
    padding: 1.1rem 1rem;
  }

  body.layout-v2 .amenities-nav {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  body.layout-v2 .location-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  body.layout-v2 .location-map-float {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }

  body.layout-v2 .location-connect-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body.layout-v2 .location-cat-tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.65rem;
    padding: 0.25rem 0.15rem 0.65rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  body.layout-v2 .location-tab-rail { display: none; }

  body.layout-v2 .location-cat-tab {
    flex: 0 0 200px;
    scroll-snap-align: start;
    transform: none !important;
  }

  body.layout-v2 .location-cat-tab:hover,
  body.layout-v2 .location-cat-tab.active {
    transform: none !important;
  }

  body.layout-v2 .location-tab-hint {
    display: none;
  }

  body.layout-v2 .location-cat-panels {
    min-height: 260px;
  }

  body.layout-v2 .contact-uf-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body.layout-v2 .completion-block {
    gap: 1.25rem;
    padding: 2rem 1rem;
  }

  body.layout-v2 .completion-date-box {
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
    white-space: normal;
    line-height: 1.5;
  }

  body.layout-v2 .rera-badge {
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  body.layout-v2 .amenities-tile-grid.amenity-cards-stack {
    grid-template-columns: 1fr;
  }

  body.layout-v2 .amenities-hero.amenity-main {
    min-height: 260px;
  }

  body.layout-v2 .amenities-section {
    padding: 2rem 1rem;
  }
}


/* ========== BUTTONS ========== */
/* ==========================================================================
   Unified button system â€” Provident Sunworth City (layout-v2)
   Solid fills, short transitions, no infinite animations
   ========================================================================== */

body.layout-v2 {
  --btn-radius: 10px;
  --btn-radius-round: 50%;
  --btn-radius-pill: 999px;
  --btn-font: 0.8125rem;
  --btn-weight: 600;
  --btn-tracking: 0.06em;
  --btn-pad-y: 0.8rem;
  --btn-pad-x: 1.5rem;
  --btn-bg: var(--color-primary);
  --btn-bg-hover: var(--color-primary-dark);
  --btn-shadow: 0 2px 10px rgba(26, 58, 108, 0.2);
  --btn-shadow-hover: 0 4px 16px rgba(26, 58, 108, 0.28);
  --btn-transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
  --btn-whatsapp: #25d366;
  --btn-whatsapp-hover: #1ebe57;
}

/* Shared primary CTA base */
body.layout-v2 .primary-btn,
body.layout-v2 .overview-cta-btn,
body.layout-v2 .pricing-download-btn,
body.layout-v2 .contact-submit-invitation,
body.layout-v2 .contact-form-uf .contact-submit-invitation,
body.layout-v2 .location-directions-btn,
body.layout-v2 .mobile-get-in-touch,
body.layout-v2 .mobile-contact-link,
body.layout-v2 .thank-btn,
body.layout-v2 .plans-enquire-vertical {
  font-family: var(--font-body);
  font-size: var(--btn-font);
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: var(--btn-transition);
  border: none;
  background: var(--btn-bg);
  background-image: none;
  color: #fff;
  box-shadow: var(--btn-shadow);
}

body.layout-v2 .primary-btn::before,
body.layout-v2 .contact-form-uf .contact-submit-invitation::after {
  display: none;
}

body.layout-v2 .primary-btn,
body.layout-v2 .overview-cta-btn,
body.layout-v2 .pricing-download-btn,
body.layout-v2 .thank-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius);
  line-height: 1.2;
}

body.layout-v2 .primary-btn:hover,
body.layout-v2 .overview-cta-btn:hover,
body.layout-v2 .pricing-download-btn:hover,
body.layout-v2 .contact-submit-invitation:hover,
body.layout-v2 .contact-form-uf .contact-submit-invitation:hover,
body.layout-v2 .location-directions-btn:hover,
body.layout-v2 .mobile-get-in-touch:hover,
body.layout-v2 .mobile-contact-link:hover,
body.layout-v2 .thank-btn:hover,
body.layout-v2 .plans-enquire-vertical:hover {
  background: var(--btn-bg-hover);
  background-image: none;
  color: #fff;
  box-shadow: var(--btn-shadow-hover);
  transform: translateY(-1px);
}

body.layout-v2 .primary-btn:active,
body.layout-v2 .overview-cta-btn:active,
body.layout-v2 .pricing-download-btn:active,
body.layout-v2 .contact-submit-invitation:active,
body.layout-v2 .pricing-download-btn:active,
body.layout-v2 .thank-btn:active {
  transform: translateY(0) scale(0.98);
}

body.layout-v2 .header-contact-btn:focus-visible,
body.layout-v2 .primary-btn:focus-visible,
body.layout-v2 .pricing-download-btn:focus-visible,
body.layout-v2 .contact-submit-invitation:focus-visible,
body.layout-v2 .footer-cta-btn:focus-visible,
body.layout-v2 .scroll-top:focus-visible,
body.layout-v2 .amenities-nav:focus-visible,
body.layout-v2 .hero-carousel-prev:focus-visible,
body.layout-v2 .hero-carousel-next:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Overview enquire */
body.layout-v2 .overview-cta-btn {
  min-width: 10rem;
}

/* Pricing downloads */
body.layout-v2 .pricing-download-btn {
  min-width: 11rem;
}

body.layout-v2 .pricing-download-btn i {
  font-size: 0.95rem;
  opacity: 1;
}

/* WhatsApp card badge — pulse animation */
body.layout-v2 .pricing-card-whatsapp {
  width: 48px;
  height: 48px;
  background: var(--btn-whatsapp);
  border-radius: var(--btn-radius-round);
  font-size: 1.35rem;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
  animation: pricing-whatsapp-pulse 2s ease-in-out infinite;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  touch-action: manipulation;
}

body.layout-v2 .pricing-card-whatsapp:hover {
  animation: none;
  background: var(--btn-whatsapp-hover);
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.48);
}

@media (prefers-reduced-motion: reduce) {
  body.layout-v2 .pricing-card-whatsapp {
    animation: none;
  }
}

/* Contact submit */
body.layout-v2 .contact-submit-invitation {
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-radius: var(--btn-radius);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Location directions */
body.layout-v2 .location-directions-btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.78rem;
  border-radius: var(--btn-radius);
  text-transform: none;
  letter-spacing: 0.02em;
}

body.layout-v2 .location-directions-btn:hover {
  transform: none;
}

/* Plan view overlay */
body.layout-v2 .plan-view-btn {
  padding: 0.85rem 1.65rem;
  background: var(--btn-bg);
  background-image: none;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  border-radius: var(--btn-radius);
  box-shadow: var(--btn-shadow-hover);
  transition: var(--btn-transition);
}

body.layout-v2 .plan-slide-inner:hover .plan-view-btn {
  background: var(--btn-bg-hover);
  transform: translate(-50%, -50%) scale(1.03);
}

/* Floor plan side enquire strip */
body.layout-v2 .plans-enquire-vertical {
  border-radius: var(--btn-radius);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

body.layout-v2 .plans-enquire-vertical:hover {
  transform: rotate(180deg) translateY(-1px);
}

/* Footer CTA â€” inverted on navy */
body.layout-v2 .footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.6rem;
  background: transparent;
  background-image: none;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--btn-radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: none;
  transition: var(--btn-transition);
  touch-action: manipulation;
  overflow: visible;
}

body.layout-v2 .footer-cta-btn:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

body.layout-v2 .footer-cta-btn-icon {
  width: 34px;
  height: 34px;
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--btn-radius-round);
  font-size: 0.85rem;
  transition: var(--btn-transition);
}

body.layout-v2 .footer-cta-btn:hover .footer-cta-btn-icon {
  background: var(--color-primary);
  color: #fff;
  transform: none;
}

/* Mobile nav CTAs */
body.layout-v2 .mobile-get-in-touch,
body.layout-v2 .mobile-contact-link {
  display: block;
  text-align: center;
  border-radius: var(--btn-radius);
  padding: 0.85rem 1.25rem !important;
}

/* Hero carousel controls */
body.layout-v2 .hero-carousel-prev,
body.layout-v2 .hero-carousel-next {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  border-radius: var(--btn-radius-round);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: var(--btn-transition);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.layout-v2 .hero-carousel-prev:hover,
body.layout-v2 .hero-carousel-next:hover {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  transform: translateY(-50%) scale(1.04);
}

body.layout-v2 .hero-dot {
  transition: width 0.15s ease, background-color 0.15s ease;
}

body.layout-v2 .hero-dot.active {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

/* Amenities nav */
body.layout-v2 .amenities-nav {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(26, 58, 108, 0.45);
  color: #fff;
  border-radius: var(--btn-radius-round);
  backdrop-filter: none;
  transition: var(--btn-transition);
  touch-action: manipulation;
}

body.layout-v2 .amenities-nav:hover {
  background: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Location category tabs */
body.layout-v2 .location-cat-tab {
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  touch-action: manipulation;
}

/* Gallery lightbox */
body.layout-v2 .gallery-lightbox .lightbox-prev,
body.layout-v2 .gallery-lightbox .lightbox-next {
  width: 48px;
  height: 48px;
  background: var(--btn-bg);
  background-image: none;
  border-radius: var(--btn-radius-round);
  transition: var(--btn-transition);
}

body.layout-v2 .gallery-lightbox .lightbox-prev:hover,
body.layout-v2 .gallery-lightbox .lightbox-next:hover {
  background: var(--btn-bg-hover);
}

body.layout-v2 .gallery-lightbox .lightbox-close {
  border-radius: var(--btn-radius-round);
  transition: var(--btn-transition);
}

/* Scroll to top */
body.layout-v2 .scroll-top {
  width: 44px;
  height: 44px;
  background: var(--btn-bg);
  background-image: none;
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  box-shadow: var(--btn-shadow);
  transition: var(--btn-transition);
  touch-action: manipulation;
}

body.layout-v2 .scroll-top:hover {
  background: var(--btn-bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

/* Floating WhatsApp â€” no pulse animation */
body.layout-v2 .chat-with-us-pulse {
  display: none;
}

body.layout-v2 .chat-with-us-float {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

body.layout-v2 .chat-with-us-inner {
  padding: 0.8rem 1.35rem;
  background: var(--btn-whatsapp);
  background-image: none;
  border-radius: var(--btn-radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.32);
  transition: var(--btn-transition);
}

body.layout-v2 .chat-with-us-float:hover {
  transform: translateY(-2px);
}

body.layout-v2 .chat-with-us-float:hover .chat-with-us-inner {
  background: var(--btn-whatsapp-hover);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
}

body.layout-v2 .chat-with-us-text {
  font-size: 0.8125rem;
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  text-shadow: none;
}

/* Fixed mobile footer bar */
body.layout-v2 .fixed-footer-cta a {
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  transition: var(--btn-transition);
  touch-action: manipulation;
}

@media (max-width: 768px) {
  body.layout-v2 .fixed-footer-cta a:first-child {
    background: var(--btn-whatsapp);
    background-image: none;
    color: #fff;
    border: none;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
  }

  body.layout-v2 .fixed-footer-cta a:first-child:hover {
    background: var(--btn-whatsapp-hover);
    box-shadow: 0 5px 16px rgba(37, 211, 102, 0.38);
  }

  body.layout-v2 .fixed-footer-cta a:last-child {
    background: var(--btn-bg);
    background-image: none;
    color: #fff;
    border: none;
    box-shadow: var(--btn-shadow);
  }

  body.layout-v2 .fixed-footer-cta a:last-child:hover {
    background: var(--btn-bg-hover);
    box-shadow: var(--btn-shadow-hover);
  }

  body.layout-v2 .chat-with-us-inner {
    border-radius: var(--btn-radius-round);
    padding: 0.85rem;
  }
}

@media (max-width: 576px) {
  body.layout-v2 .pricing-download-btn {
    width: 100%;
    min-width: 0;
  }
}

/* Header CTA — preserve beautified pill (after button system) */
body.layout-v2 .header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem 0.45rem 0.45rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 55%, var(--color-primary-dark) 100%);
  background-image: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 55%, var(--color-primary-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px rgba(26, 58, 108, 0.28);
}

body.layout-v2 .header-contact-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 0.85rem;
}

body.layout-v2 .header-contact-btn:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 58, 108, 0.34);
}

