/* ============================================================
   GODREJ HINJEWADI — LANDING PAGE STYLES
   Primary: #146321 | Built mobile-first for speed + conversion
   ============================================================ */

/* :root {
  --primary: #173679;
  --primary-dark: #0F2455;
  --primary-light: #3E5FA8;
  --gold: #b6902f;
  --gold-light: #d4af5a;
  --cream: #f7f5ef;
  --ink: #152016;
  --ink-soft: #41504a;
  --white: #ffffff;
  --line: rgba(20, 99, 33, .14);
  --shadow: 0 12px 30px rgba(12, 40, 18, .12);
  --shadow-lg: 0 25px 60px rgba(12, 40, 18, .22);
  --radius: 14px;
  --radius-sm: 8px;
  --ff-display: 'Marcellus', serif;
  --ff-body: 'Manrope', sans-serif;
  --container: 1200px;
  --header-h: 76px;
} */
:root {

  /* Primary Brand */
  --primary: #E8542F;
  --primary-dark: #B83B22;
  --primary-light: #F4775A;

  /* Luxury Accent */
  --gold: #ae845d;
  --gold-light: #D4AF78;

  /* Backgrounds */
  --cream: #F8F3ED;
  --white: #FFFFFF;

  /* Typography */
  --ink: #211815;
  --ink-soft: #5C4B43;

  /* Borders */
  --line: rgba(232, 84, 47, .16);

  /* Shadows */
  --shadow: 0 12px 30px rgba(60, 35, 25, .12);
  --shadow-lg: 0 25px 60px rgba(60, 35, 25, .22);

  /* Layout */
  --radius: 14px;
  --radius-sm: 8px;

  /* Fonts */
  --ff-display: 'Marcellus', serif;
  --ff-body: 'Manrope', sans-serif;

  /* Container */
  --container: 1200px;
  --header-h: 76px;

}



*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  margin: 0 0 .5em;
  line-height: 1.15;
  color: var(--primary-dark);
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
  line-height: 1.7;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

.section {
  padding: 50px 0;
}

.section-alt {
  background: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .14);
}

.btn-ghost {
  background: var(--primary);
  color: var(--white);
}

.btn-ghost:hover {
  background: var(--primary-dark);
}

.btn-block {
  width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  height: 75px;
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 60px;
  width: 100%;
  filter: brightness(0) invert(1);
  transition: filter .3s ease;
}

@media (max-width:700px) {
  .brand img {
  height: 45px;
}
}

.site-header.scrolled .brand img {
  filter: none;
}

.brand-text {
  font-family: var(--ff-display);
  color: var(--white);
  font-size: 1.05rem;
  transition: color .3s ease;
}

.site-header.scrolled .brand-text {
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
  position: relative;
  padding: 4px 0;
  transition: color .3s ease;
}

.site-header.scrolled .nav-links a {
  color: var(--ink);
}

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

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  transition: color .3s ease;
}

.site-header.scrolled .header-phone {
  color: var(--primary-dark);
}

.header-phone i {
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 34px;
  position: relative;
  z-index: 1200;
}

.nav-toggle span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
}

.site-header.scrolled .nav-toggle span {
  background: var(--ink);
}

.nav-toggle span:nth-child(1) {
  top: 10px;
}

.nav-toggle span:nth-child(2) {
  top: 17px;
}

.nav-toggle span:nth-child(3) {
  top: 24px;
}

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

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

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

@media (max-width:960px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 100px 30px 30px;
    transform: translateX(100%);
    transition: transform .4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .15);
  }

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

  .nav-links a {
    color: var(--ink);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .header-phone {
    display: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 30, 15, .55) 0%, rgba(12, 30, 15, .35) 35%, rgba(9, 25, 13, .85) 100%),
    linear-gradient(90deg, rgba(9, 25, 13, .65) 0%, rgba(9, 25, 13, .1) 55%);
}

.hero-media iframe {
    /* position: relative;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    pointer-events: none; */
        position: relative;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 70.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 50px 0 0px;
  align-self: center;
}

.hero-card {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  margin-bottom: 0px;
}

.hero-sub {
  color: rgba(255, 255, 255, .88);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  margin-bottom: 22px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-pill {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-pill {
  position: relative;
  overflow: hidden;

  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Gold shimmer */
.hero-pill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  transform: skewX(-25deg);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(182, 144, 47, 0.15),
    rgba(182, 144, 47, 0.75),
    rgba(255, 255, 255, 0.9),
    rgba(182, 144, 47, 0.75),
    rgba(182, 144, 47, 0.15),
    transparent
  );

  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 170%;
  }
}

.hero-config {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-config i {
  color: var(--gold);
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-price span {
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
}

.hero-price strong {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .75);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-cue .mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 14px;
  position: relative;
}

.scroll-cue .mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 6px;
  }

  100% {
    opacity: 0;
    top: 18px;
  }
}

.wave-divider {
  position: relative;
  line-height: 0;
  z-index: 2;
  margin-top: -2px;
}

.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width:640px) {
  .hero {
    align-items: center;
  }

  .hero-content {
    padding: 100px 0 60px;
    text-align: left;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .scroll-cue{
    display: none;
  }

  
}


/* ============================================================
   MOBILE HERO
   ============================================================ */

@media (max-width: 640px) {

  .hero {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    overflow: hidden;
  }

  /* Video comes first */
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
        height: 80vw;
    min-height: 220px;
    max-height: 420px;
    z-index: 1;
    flex-shrink: 0;
  }

  .hero-media video,
  .hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Remove desktop dark overlay on mobile */
  .hero-media::after {
    display: none;
  }

  .hero-content {
    position: relative;
        z-index: 2;
        width: 100%;
        padding: 20px 10px 40px;
        align-self: auto;
        border-radius: 20px;
        margin-top: -16px;
        text-align: center;
        background: var(--white);
  }

  .hero-card {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-badge {
    color: var(--primary);
    background: rgba(232, 84, 47, .08);
    border: 1px solid rgba(232, 84, 47, .20);
    margin-bottom: 16px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-title {
    color: var(--ink);
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .hero-sub {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero-pills {
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero-pill {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
    font-size: .72rem;
    padding: 7px 12px;
  }

  .hero-config {
    justify-content: center;
    color: var(--ink);
    font-size: .9rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .hero-config i {
    color: var(--primary);
  }

  .hero-price {
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-bottom: 22px;
  }

  .hero-price span {
    color: var(--ink-soft);
    font-size: .8rem;
  }

  .hero-price strong {
    color: var(--ink);
    font-size: 1.6rem;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .scroll-cue {
    display: none;
  }

  .btn-outline {
    background: transparent;
    color: #e8542f;
    border: 1.5px solid rgb(232 84 47);
}

}


/* ============================================================
   OVERVIEW
   ============================================================ */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.overview-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.overview-media img {
  border-radius: var(--radius);
      height: 630px;
    object-fit: cover;
}

.overview-media .ripple-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow);
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.overview-body p {
  text-align: left;
}

.overview-body ul {
  margin: 20px 0;
  display: grid;
  gap: 12px;
}

.overview-body ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}

.overview-body ul li i {
  color: var(--primary);
  margin-top: 3px;
}

@media (min-width:900px) {
  .overview-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.full-bleed-img {
  width: 100%;
  /* height: clamp(180px, 32vw, 420px); */
  object-fit: cover;
}

/* ============================================================
   PRICING / CONFIGURATION
   ============================================================ */
.price-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.pt-50{
    padding-top: 50px;
}

.price-tab-label {
  text-align: center;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  margin: 56px 0 8px;
  color: var(--primary-dark);
}

.price-tab-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (min-width:760px) {
  .price-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* When exactly 2 cards are present, center them */
.price-grid:has(.price-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 66.666%;
  margin-inline: auto;
}
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: .15;
  transition: transform .5s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card:hover::before {
  transform: scale(1.6);
}

.price-card .unit-type {
  font-weight: 700;
  font-size: 24px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}

.price-card .unit-price {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.price-card .unit-note {
  font-size: .72rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.price-card .unit-size {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 2px;
}

.price-card .btn {
  margin-top: 16px;
  width: 100%;
  padding: 11px 10px;
  font-size: .78rem;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width:900px) {
  .location-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.location-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  position: relative;
}

.location-media img {
  transition: transform .5s ease;
}

.location-media:hover img {
  transform: scale(1.04);
}

.location-list {
  display: grid;
  gap: 2px;
}

.location-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 4px;
  border-bottom: 1px dashed var(--line);
}

.location-list li .loc-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
}

.location-list li i {
  color: var(--primary);
  font-size: .85rem;
  flex-shrink: 0;
}

.location-list li strong {
  color: var(--gold);
  font-size: .85rem;
  white-space: nowrap;
  font-weight: 800;
}

.location-scroll {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
}

.location-scroll::-webkit-scrollbar {
  width: 5px;
}

.location-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 10px;
}

.loc-accordion {
  display: grid;
  gap: 8px;
}

.loc-group {
  border-bottom: 1px solid var(--line);
}

.loc-group summary {
  list-style: none;
  cursor: pointer;
}

.loc-group summary::-webkit-details-marker {
  display: none;
}

.loc-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  padding: 14px 4px;
}

.loc-chevron {
  font-size: 0.75rem;
  color: var(--primary);
  transition: transform .3s ease;
}

.loc-group[open] .loc-chevron {
  transform: rotate(180deg);
}

.loc-group .location-list {
  padding-bottom: 8px;
}

.loc-group .location-list li:last-child {
  border-bottom: none;
}

/* ============================================================
   FLOOR PLAN
   ============================================================ */
.floor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width:700px) {
  .floor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.floor-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.floor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.floor-card .floor-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
  background: var(--cream);
}

.floor-card .floor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
  transform: scale(1.05);
}

.floor-card .floor-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(20, 99, 33, .35);
  color: var(--white);
  gap: 6px;
  font-weight: 700;
  font-size: .85rem;
  
    cursor: pointer;
}

.floor-card .floor-lock i {
  font-size: 1.4rem;
  color: var(--gold);
}

.floor-card h4 {
  padding: 16px 0 4px;
  font-size: 1.15rem;
}

.floor-card p.tag {
  color: var(--ink-soft);
  font-size: .8rem;
  padding-bottom: 16px;
  margin: 0;
}

/* ============================================================
   AMENITIES — original numbered list
   ============================================================ */
.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width:640px) {
  .amenity-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width:960px) {
  .amenity-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.amenity-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background .25s ease;
}

.amenity-list li:hover {
  background: var(--cream);
}

.amenity-list li span {
  font-family: var(--ff-display);
  color: var(--primary-light);
  font-size: 1.1rem;
  flex-shrink: 0;
  opacity: .55;
}

.amenity-list li div {
  font-weight: 700;
  font-size: .85rem;
  color: var(--ink);
  line-height: 1.3;
}

/* ============================================================
   AMENITIES — extra photo grid (second amenities section)
   ============================================================ */
.amenity-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width:640px) {
  .amenity-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width:960px) {
  .amenity-photo-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.amenity-photo-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}

.amenity-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.amenity-photo-card .photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream);
}

.amenity-photo-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.amenity-photo-card .cap {
  padding: 10px 8px;
  font-weight: 700;
  font-size: .78rem;
  color: var(--ink);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width:700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "\f065";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 69, 23, 0);
  color: transparent;
  font-size: 1.4rem;
  transition: all .3s ease;
}

.gallery-item:hover::after {
  background: rgba(12, 69, 23, .45);
  color: #fff;
}

/* ============================================================
   VIRTUAL TOUR
   ============================================================ */
.tour-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tour-wrap img {
  width: 100%;
  height: clamp(220px, 42vw, 460px);
  object-fit: cover;
  filter: blur(0px) brightness(.75);
}

.tour-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, .18);
  transition: transform .3s ease;
}

.tour-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.tour-play i {
  color: var(--primary);
  font-size: 1.6rem;
  margin-left: 4px;
}

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact-section {
  background: var(--primary-dark);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  
    align-items: end;
}

@media (min-width:900px) {
  .contact-grid {
    grid-template-columns: 1.1fr .9fr;
  }
}

.contact-about h4 {
  color: var(--white);
}

.contact-about p {
  color: rgba(255, 255, 255, .78);
}

.rera-box {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 18px;
}

.rera-box h5 {
  margin: 0 0 6px;
  font-size: .85rem;
  letter-spacing: .05em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.rera-box p {
  margin: 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .8);
}

.rera-box-qr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rera-box-qr .rera-box-text {
  flex: 1;
}

.rera-qr img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .rera-box-qr {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 16px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .95rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .25s ease, background .25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.phone-row {
  display: flex;
  gap: 8px;
}

.phone-row select {
  flex: 0 0 92px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: .9rem;
  padding: 0 8px;
  color: var(--ink);
}

.phone-row input {
  flex: 1;
}

.consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .72rem;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
}

.footer-bottom {
  background: var(--ink);
  color: rgba(255, 255, 255, .6);
  padding: 26px 0;
  font-size: .8rem;
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .7);
}

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

.disclaimer-box {
  background: var(--white);
  padding: 30px 0;
}

.disclaimer-box p {
  font-size: .78rem;
  color: var(--ink-soft);
  text-align: justify;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-actions {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 900;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
  transition: transform .25s ease;
}

.fab:hover {
  transform: scale(1.08);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-call {
  background: var(--primary);
  animation: pulseRing 1s infinite;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 99, 33, .5), 0 8px 22px rgba(0, 0, 0, .25);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(20, 99, 33, 0), 0 8px 22px rgba(0, 0, 0, .25);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(20, 99, 33, 0), 0 8px 22px rgba(0, 0, 0, .25);
  }
}

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, .12);
  padding: 10px 14px;
  gap: 10px;
}

@media (max-width:640px) {

  .fab-call{
    display: none!important;
  }

    .floating-actions {
  
      left: 14px;
  
      bottom: 88px;
    }

  .mobile-cta-bar {
    display: flex;
  }
}

.mobile-cta-bar .btn {
  flex: 1;
  padding: 13px 10px;
  font-size: .85rem;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 25, 13, .72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 34px 28px 28px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 92vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--cream);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.modal-box img.modal-logo {
  height: 34px;
  margin-bottom: 16px;
  filter: none;
}

.modal-box h4 {
  font-size: 21px;
    padding-bottom: 15px;
    padding-top: 30px;
}

/* ============================================================
   CHATBOT
   ============================================================ */
#chatbot-btn {
  position: fixed;
  bottom: 88px;
  right: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
  z-index: 940;
  border: 2px solid var(--white);
}

#chatbot-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#chatbot {
  position: fixed;
  bottom: 150px;
  right: 18px;
  width: 320px;
  max-width: 90vw;
  height: min(460px, 65vh);
  background: var(--white);
  border-radius: 16px;
  display: none;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 1600;
}

#chat-header {
  background: var(--primary);
  color: #fff;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chat-header .profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

#chat-header img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

#chat-header span {
  font-size: .82rem;
  line-height: 1.3;
}

.close-btn {
  cursor: pointer;
  opacity: .85;
}

#chat-body {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: var(--cream);
}

.message {
  margin: 8px 0;
  padding: 9px 14px;
  border-radius: 16px;
  max-width: 78%;
  font-size: .85rem;
  line-height: 1.4;
}

.message.bot {
  background: #fff;
  border: 1px solid var(--line);
}

.message.user {
  background: var(--primary);
  color: #fff;
  margin-left: auto;
}

.option {
  background: #fff;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 9px 14px;
  max-width: 85%;
  margin: 6px 0;
  border-radius: 16px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.option:hover {
  background: var(--primary);
  color: #fff;
}

#chat-input {
  display: flex;
  border-top: 1px solid var(--line);
}

#chat-input input {
  flex: 1;
  padding: 11px;
  border: none;
  font-size: .85rem;
  background: #fff;
}

#chat-input input:focus {
  outline: none;
}

#chat-input button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 16px;
}

.typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 2px;
  background: #8a978d;
  border-radius: 50%;
  animation: blink 1.4s infinite;
}

.typing span:nth-child(2) {
  animation-delay: .2s;
}

.typing span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes blink {

  0%,
  80%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

@media (max-width:480px) {
  #chatbot {
    right: 5%;
    width: 90%;
    bottom: 158px;
  }

  #chatbot-btn {
    right: 14px;
  }
}


@media (max-width:640px) {
  .overview-media img{
    height: 280px;
  }

  .price-grid{
    grid-template-columns: 1fr;
  }

  .location-media img{
    height: 100%;
  }

  .full-bleed-img {
    height: 300px;
    object-position: center;
    object-fit: cover;
}
}

