/* =========================================================
   SILVER SERENITY – style.css
   Premium Luxury Real Estate Landing Page
   ========================================================= */

/* ── CSS Variables ── */
:root {
  --olive:        #2C3420;
  --olive-mid:    #3D4A2A;
  --olive-light:  #4E5E35;
  --beige:        #F2EDE4;
  --beige-dark:   #E5DDD0;
  --off-white:    #FAF8F4;
  --gold:         #B8975A;
  --gold-light:   #D4B07A;
  --charcoal:     #2A2A28;
  --text-muted:   #6B6857;
  --text-light:   #9A9585;
  --white:        #FFFFFF;

  --font-serif:   'Clash Grotesk', sans-serif;
  --font-sans:    'Clash Grotesk', sans-serif;

  --section-pad:  clamp(80px, 10vw, 140px);
  --container:    1280px;
  --radius:       4px;

  --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

body.body-no-scroll { overflow: hidden; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Page Loader ── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--olive);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  color: var(--beige);
}

.loader-brand {
  display: block;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.6em;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderFadeUp 0.7s var(--ease-smooth) 0.2s forwards;
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 16px auto;
  animation: loaderLine 0.8s var(--ease-smooth) 0.6s forwards;
}

.loader-sub {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.3em;
  color: var(--gold-light);
  opacity: 0;
  animation: loaderFadeUp 0.6s var(--ease-smooth) 0.9s forwards;
}

@keyframes loaderFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderLine {
  to { width: 120px; }
}

/* ── Utility Classes ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-heading em {
  font-style: normal;
  font-weight: 300;
  color: var(--olive-light);
}

.section-heading.light,
.section-heading.light em { color: var(--beige); }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.3s cubic-bezier(0.19, 1, 0.22, 1), transform 1.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.visible, .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 28px 0;
  transition: padding 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth), backdrop-filter 0.4s;
}

#navbar.scrolled {
  padding: 16px 0;
  background: rgba(44, 52, 32, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}

/* When mobile nav is open, make the navbar bar transparent 
   to solve the z-index stacking context issue. */
#navbar.menu-open {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  width: 150px;
}

.nav-logo img {
  height: auto;
}

.logo-silver {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--white);
}

.logo-serenity {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.3s;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  border: 1px solid rgba(184, 151, 90, 0.6);
  color: var(--gold-light) !important;
  border-radius: var(--radius);
  transition: background 0.3s, border-color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white) !important;
}

.nav-cta::after { box-sizing: border-box; display: none !important; }

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

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

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* ── Hero Section ── */
#hero {
  position: relative;
  height: 95vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  transform: scale(1.15);
  animation: heroZoom 12s var(--ease-smooth) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 24, 14, 0.35) 10%,
    rgba(20, 24, 14, 0.38) 20%,
    rgba(20, 24, 14, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 90vw;
  transform: translateY(-40%);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.77rem, 1.65vw, 0.94rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 4.35vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: normal;
  color: var(--beige);
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.hero-caption {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  animation: fadeInScroll 1s ease 2.5s forwards;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}

@keyframes fadeInScroll {
  to { opacity: 1; }
}

.hero-artists-note {
  position: absolute;
  bottom: 20px;
  right: clamp(20px, 4vw, 60px);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  z-index: 2;
}

.hero-branding {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  opacity: 0;
  animation: fadeInScroll 1s ease 2s forwards;
  text-align: center;
  width: 100%;
}
.hero-branding img { height: 45px; width: auto; }
.hero-branding p { font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); opacity: 0.9; }

/* ── Legacy Banner ── */
.legacy-banner {
  position: relative;
  padding: clamp(40px, 5vw, 70px) 24px;
  background: url('../assets/images/img1593.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.legacy-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 900px;
}

.legacy-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--beige-dark);
  margin-bottom: 40px;
  max-width: 600px;
}

.legacy-emblem {
  width: 100px;
  height: auto;
  object-fit: contain;
}

/* ── About Section ── */
.about-section {
  padding: calc(var(--section-pad) * 0.25) 0;
  background: var(--beige);
}

.about-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: clamp(360px, 38vh, 640px);
}

.about-text {
  max-width: 680px;
  margin-left: auto;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text .section-heading {
  font-size: clamp(1.8rem, 3.75vw, 3.15rem);
}

.about-body {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  aspect-ratio: unset;
  overflow: hidden;
  border-radius: 0;
}

.about-image img,
.about-image video {
  transition: transform 0.8s var(--ease-smooth);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image.reveal.visible {
  transform: translateY(0);
  opacity: 1;
}

.image-caption {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.2);
  padding: 4px 8px;
  border-radius: 2px;
}

/* ── Connectivity Section ── */
.connectivity-section {
  position: relative;
  padding: calc(var(--section-pad) * 2.5) var(--section-pad);
  overflow: hidden;
  background: var(--olive);
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.connectivity-map-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Google Maps link in connectivity */
.maps-link {
  position: relative;
  margin: 24px 0 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  color: var(--beige);
  background: rgba(44,52,32,0.65);
  padding: 8px 12px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  text-transform: none;
  max-width: max-content;
  pointer-events: auto;
}

.maps-link a { color: inherit; text-decoration: none; }
.maps-link svg { flex-shrink: 0; }

.connectivity-map-bg {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  -webkit-mask-image: radial-gradient(circle at 40% 50%, black 30%, transparent 85%);
  mask-image: radial-gradient(circle at 40% 50%, black 30%, transparent 85%);
}

.connectivity-map-bg img { object-fit: cover; object-position: center; }
.map-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.connectivity-container {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 2;
  pointer-events: none; /* Allow clicks to pass through to map points where possible */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.connectivity-header { 
  max-width: 420px; 
  margin-bottom: 0; 
  pointer-events: auto; 
  margin-left: auto;
}

.connectivity-header .section-heading {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.connectivity-desc {
  margin-top: 16px;
  font-size: 0.85rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(242, 237, 228, 0.9);
  margin-left: auto;
}

/* ── Map Points ── */
.connectivity-points {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.map-point {
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0;
  animation: popInPoint 0.6s var(--ease-spring) forwards;
}

/* Staggered animation for points */
.connectivity-points.visible .map-point:nth-child(1) { animation-delay: 0.2s; }
.connectivity-points.visible .map-point:nth-child(2) { animation-delay: 0.4s; }
.connectivity-points.visible .map-point:nth-child(3) { animation-delay: 0.6s; }
.connectivity-points.visible .map-point:nth-child(4) { animation-delay: 0.8s; }
.connectivity-points.visible .map-point:nth-child(5) { animation-delay: 1.0s; }
.connectivity-points.visible .map-point:nth-child(6) { animation-delay: 1.2s; }

@keyframes popInPoint {
  from { opacity: 0; transform: translate(-50%, -30%) scale(0.8); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.point-marker {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 3px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(184, 151, 90, 0.3);
  position: relative;
  transition: transform 0.3s var(--ease-spring);
}

.map-point:hover .point-marker {
  transform: scale(1.2);
  background: var(--white);
  border-color: var(--gold);
}

.point-card {
  background: rgba(20, 24, 14, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 9px 14px;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  min-width: 126px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease-smooth), background 0.3s;
}

.map-point:hover .point-card {
  transform: translateY(-5px);
  background: rgba(20, 24, 14, 0.9);
}

.point-time {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.point-name {
  font-size: 0.675rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

/* Specific Point Positioning (Desktop Default) */
.point-vikhroli { top: 30.3%; left: 44.35%; }
.point-godrej   { top: 60%; left:40%; }
.point-adi      { top: 8%; left: 58%; }

/* Mobile List View - Hidden by default on Desktop */
.mobile-connectivity-list { display: none; }

/* ── Amenities Section ── */
.amenities-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--olive); /* Fallback bg color */
  overflow: hidden;
}

.amenities-section::before,
.amenities-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  background: var(--beige-dark);
  z-index: 3;
}

.amenities-section::before {
  top: 0;
}

.amenities-section::after {
  bottom: 0;
}

.amenities-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.amenities-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(34, 42, 26, 0.95) 0%,
    rgba(34, 42, 26, 0.8) 45%,
    rgba(34, 42, 26, 0.5) 70%,
    rgba(34, 42, 26, 0.2) 100%
  );
  z-index: 1;
}

.amenities-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 80px);
}

.amenities-header {
  text-align: left;
  max-width: 680px;
  margin-bottom: 40px;
}

.amenities-sub {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(242, 237, 228, 0.8);
  margin-top: 16px;
}

.amenities-caption {
  position: absolute;
  bottom: 20px;
  right: clamp(20px, 4vw, 60px);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 2;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(242, 237, 228, 0.15);
  max-width: 100%;
  margin: 0;
}

.acc-item { border-bottom: 1px solid rgba(242, 237, 228, 0.15); }

.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.85);
  transition: color 0.3s, opacity 0.3s;
}

.acc-item.active .acc-header {
  color: var(--white);
}

.acc-header:hover { color: var(--gold-light); }

.acc-icon {
  font-size: 1.2rem;
  color: var(--gold-light);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-smooth);
}

.acc-item.active .acc-icon {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-smooth);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-bottom: 20px;
}

.amenity-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.8);
  text-align: center;
  opacity: 0;
  transform: translateY(15px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s, opacity 0.4s;
}

/* Staggered reveal animation for amenity tags */
.acc-item.active .amenity-tag {
  opacity: 1;
  transform: translateY(0);
}
.acc-item.active .amenity-tag:nth-child(1) { transition-delay: 0.1s; }
.acc-item.active .amenity-tag:nth-child(2) { transition-delay: 0.15s; }
.acc-item.active .amenity-tag:nth-child(3) { transition-delay: 0.2s; }
.acc-item.active .amenity-tag:nth-child(4) { transition-delay: 0.25s; }
.acc-item.active .amenity-tag:nth-child(5) { transition-delay: 0.3s; }
.acc-item.active .amenity-tag:nth-child(6) { transition-delay: 0.35s; }

.amenity-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  color: var(--white);
}

.amenity-tag svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.2;
  color: var(--gold-light);
}

/* ── Business Rooms Section ── */
.business-section { position: relative; overflow: hidden; }

.business-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.business-carousel::-webkit-scrollbar {
  display: none;
}

.business-image-wrap {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
  height: clamp(500px, 70vh, 800px);
}

.business-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.business-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 24, 14, 0.76) 0%,
    rgba(20, 24, 14, 0.6) 50%,
    rgba(20, 24, 14, 0.4) 100%
  );
}

.business-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(40px, 8vw, 120px);
  max-width: 700px;
}

.business-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 12px 0 24px;
}

.business-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  color: rgba(242, 237, 228, 0.85);
  max-width: 520px;
}

.business-caption {
  position: absolute;
  bottom: 20px;
  left: clamp(20px, 4vw, 60px);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.carousel-controls {
  position: absolute;
  bottom: 40px;
  right: clamp(20px, 4vw, 60px);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 24, 14, 0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease-smooth), border-color 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: rgba(20, 24, 14, 0.85);
  border-color: var(--gold);
}

/* ── Contact Section ── */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.contact-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.contact-header { margin-bottom: 56px; }

.contact-header .section-heading {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.contact-form { display: flex; flex-direction: column; gap: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.optional {
  font-family: var(--font-serif);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
  opacity: 0.6;
}

input, textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(44,52,32,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

input::placeholder, textarea::placeholder { color: var(--text-light); }
textarea { resize: vertical; }

input:focus, textarea:focus {
  border-color: var(--olive-light);
  box-shadow: 0 0 0 3px rgba(78,94,53,0.1);
}

input.error, textarea.error { border-color: #c0392b; }

.field-error {
  font-size: 0.72rem;
  color: #c0392b;
  letter-spacing: 0.05em;
  min-height: 1em;
}

.btn-primary {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 40px;
  background: var(--olive);
  color: var(--beige);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--olive);
  transition: background 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--olive-light);
  transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-spring);
}

.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.form-success {
  display: none;
  padding: 18px 24px;
  background: rgba(78,94,53,0.08);
  border: 1px solid rgba(78,94,53,0.2);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--olive-light);
  letter-spacing: 0.05em;
  gap: 10px;
}

.form-success.visible { display: flex; align-items: center; }

/* ── Footer ── */
#footer {
  position: relative;
  background: url('../assets/images/Footer.png') center/cover no-repeat;
  color: var(--beige);
  padding: 40px 0 0;
  overflow: hidden;
}


.footer-top {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px) 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr auto;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-brand .logo-silver {
  font-size: 1.3rem;
  letter-spacing: 0.4em;
}

.footer-brand .logo-serenity { font-size: 0.9rem; }

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(242,237,228,0.55);
  max-width: 320px;
}

.footer-contact h4,
.footer-partners h4,
.rera-block h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.address-block { margin-bottom: 24px; }

.footer-line {
  height: 1px;
  background-color: var(--beige);
  margin-bottom: 24px;
  opacity: 0.4;
}

.addr-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
  margin-bottom: 8px;
}

.footer-contact p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(242,237,228,0.6);
}

.partner-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 10px;
  align-items: center;
  margin-bottom: 32px;
}

.partner-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  justify-self: start;
}

.partner-logo.wide { height: 43px; width: auto; max-width: 160px; }
.partner-logo.large { height: 65px; }

.rera-block { margin-top: 0; }

.rera-num {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(242,237,228,0.6);
  margin-bottom: 10px;
}

.rera-num strong {
  color: var(--beige);
  letter-spacing: 0.04em;
}

.rera-link {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(184,151,90,0.3);
  padding-bottom: 2px;
  margin-bottom: 16px;
  transition: border-color 0.3s, color 0.3s;
}

.rera-link:hover { color: var(--gold); border-color: var(--gold); }

.qr-code {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--white);
  padding: 6px;
  border-radius: 4px;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(24px, 5vw, 80px);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.copyright {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(242,237,228,0.35);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.4);
  transition: color 0.3s;
}

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

/* ── Responsive ── */

/* Tablet & iPad (Portrait/Landscape) - Interpolated positions */
@media (min-width: 769px) and (max-width: 1180px) {
  .point-vikhroli { top: 32.05%; left: 36.95%; }  /* Between 30% and 43.9% */
  .point-godrej   { top: 60%;   left: 25%; }  /* Constant at 25% */
  .point-adi      { top: 8%;    left: 75%; }  /* Between 80% and 70% */
}

/* iPad View Fix for Connectivity Text Overlap */
@media (min-width: 769px) and (max-width: 1024px) {
  .connectivity-header {
    background: rgba(44, 52, 32, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius);
    max-width: 480px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }

  .amenities-container { max-width: 680px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--olive);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-smooth);
    z-index: 1000;
    padding: clamp(40px, 6vw, 80px) 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #hero { height: 100svh; }

  .hero-headline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1.15;
  }

  .hero-content { transform: translateY(-90%); width: 100%; padding: 0 24px; max-width: 100%; }

  .hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.25em; margin-bottom: 16px; }

  .hamburger { display: flex; position: relative; z-index: 1101; }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.25em;
  }

  /* Mobile nav close button */
  .nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    color: var(--beige);
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1102;
    display: block;
  }

  .nav-close:focus { outline: 2px solid rgba(255,255,255,0.12); }

  .about-container { grid-template-columns: 1fr; }

  .about-image { order: -1; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .connectivity-section {
    display: block;
    padding: 0;
    min-height: auto;
  }
  .connectivity-map-wrap {
    position: relative;
    height: 80vh;
    inset: auto;
  }

  .connectivity-container {
    align-items: flex-start;
    text-align: left;
    padding: calc(var(--section-pad) * .25) clamp(24px, 5vw, 80px);
  }
  .connectivity-header, .connectivity-desc {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    padding: 0;
    max-width: 100%;
  }

  .connectivity-desc {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(242, 237, 228, 0.95);
  }

  /* Hide specific map points on mobile */
  .desktop-point { display: none; }

  /* Mobile List Styling */
  .mobile-connectivity-list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 0 0 40px;
    gap: 12px;
  }
  .mobile-loc-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
    justify-content: flex-end;
    gap: 16px;
    color: var(--beige);
    font-size: 0.95rem;
  }
  .loc-time {
    color: var(--gold);
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.1rem;
  }

  /* Reduced map point size on mobile */
  .point-marker { width: 13px; height: 13px; border-width: 2px; box-shadow: 0 0 0 3px rgba(184, 151, 90, 0.3); }
  .point-card { padding: 7px 11px; min-width: auto; }
  .point-time { font-size: 0.9rem; }
  .point-name { font-size: 0.585rem; }

  /* Point Position Overrides (Mobile) */
  .point-vikhroli { top: 29.89%; left: 30%; }
  .point-godrej   { top: 60%;    left: 25%; }
  .point-adi      { top: 8%;     left: 80%; }

  .maps-link { margin: 24px 0 0; justify-content: flex-start; background: transparent; color: var(--gold-light); }

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

  .business-content { max-width: 100%; padding: 0 clamp(24px, 5vw, 40px); }
}

/* Ensure nav-links open state visually accessible */
.nav-links.open {
  transform: translateX(0) !important;
}

/* Keep rounded corners when visible */
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2rem, 8.25vw, 2.9rem); }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .btn-primary { align-self: stretch; justify-content: center; }
}
