/* Utpalaa – The Condoville | single stylesheet for the Netlify static build.
   Ported from the original Webflow section embeds and consolidated: tokens first,
   then base/layout, then nav + footer (new), then each page section in DOM order,
   then modal/overlay UI, then shared responsive rules.
   Section class prefixes are kept identical to the Webflow originals so existing
   markup and JS selectors keep working; only .up-amenities__description was renamed
   to .up-amenities__text to remove a specificity clash with the section intro.
   Card entrance animations are NOT keyframes-on-load any more: everything runs
   through the .reveal / .is-visible pair driven by IntersectionObserver in main.js,
   so cards animate when they are actually scrolled to and stay visible if JS fails. */

/* ============================= TOKENS ============================= */
:root {
  --green: #2c6901;
  --green-2: #3d8601;
  --green-3: #3c7911;
  --green-dark: #1e4c01;
  --orange: #f1961e;
  --orange-2: #f5a742;
  --orange-dark: #e07e09;
  --ink: #2a2a2a;
  --body: #555;
  --muted: #777;
  --line: rgba(44, 105, 1, 0.12);
  --bg: #fafafa;
  --white: #fff;
  --nav-h: 72px;
  --bar-h: 38px;
  --display: 'Marcellus', 'Segoe UI', Georgia, serif;
  --sans: 'Inter', 'Segoe UI', Tahoma, Arial, sans-serif;
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 40px rgba(44, 105, 1, 0.12);
}

/* ============================= BASE ============================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 10px); }

body {
  font-family: var(--sans);
  background-color: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

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

h1, h2, h3, .display { font-family: var(--display); font-weight: 400; letter-spacing: 0.01em; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ====================== ANNOUNCEMENT BAR ====================== */
.gb-bar {
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-3));
  color: #fff;
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 60;
}

.gb-bar__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(241, 150, 30, 0.7);
  animation: barPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes barPulse {
  70% { box-shadow: 0 0 0 10px rgba(241, 150, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(241, 150, 30, 0); }
}

.gb-bar__sep { opacity: 0.4; }
.gb-bar__link { text-decoration: none; font-weight: 600; color: var(--orange-2); }
.gb-bar__link:hover { color: #fff; }

/* ============================= NAVBAR ============================= */
.gb-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.gb-nav.is-stuck { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08); }

.gb-nav__inner {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.gb-nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.gb-nav__brand img { height: 46px; width: auto; }

.gb-nav__brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.gb-nav__brand-name { font-family: var(--display); font-size: 1.15rem; color: var(--green); }
.gb-nav__brand-sub { font-size: 0.66rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); }

.gb-nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.gb-nav__link {
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3f4a3a;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gb-nav__link:hover { background: rgba(44, 105, 1, 0.08); color: var(--green); }

.gb-nav__actions { display: flex; align-items: center; gap: 10px; margin-left: 12px; }

.gb-nav__phone {
  display: flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 0.9rem; color: var(--green);
  text-decoration: none; white-space: nowrap;
}

.gb-nav__cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(241, 150, 30, 0.3);
  transition: all 0.3s ease;
}

.gb-nav__cta:hover { transform: translateY(-2px); box-shadow: 0 7px 18px rgba(241, 150, 30, 0.4); }

.gb-nav__burger {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  background: rgba(44, 105, 1, 0.07);
  border: none; border-radius: 10px;
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}

.gb-nav__burger span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--green); transition: all 0.3s ease;
}

.gb-nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gb-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.gb-nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.gb-nav__drawer {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 10px 16px 20px;
  display: none;
  flex-direction: column;
  z-index: 89;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

.gb-nav__drawer.is-open { display: flex; }

.gb-nav__drawer a {
  padding: 14px 8px;
  border-bottom: 1px solid rgba(44, 105, 1, 0.08);
  text-decoration: none;
  font-weight: 500;
  color: #3f4a3a;
}

.gb-nav__drawer .gb-nav__cta { margin-top: 16px; width: 100%; padding: 14px; }

/* ============================= HERO ============================= */
/* min-height, not height: a 700px-tall laptop window has ~590px of hero, which is
   less than the content stack needs. Fixed height clipped it; min-height lets the
   section grow and still fills the viewport on tall screens. */
.hero-section { display: flex; position: relative; overflow: hidden; min-height: calc(100vh - var(--nav-h) - var(--bar-h)); }

.elevation-section {
  width: 62%;
  background: url('../img/hero-banner.avif') center/cover no-repeat;
  position: relative;
}

.elevation-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.35), rgba(0,0,0,0)); }

.elevation-badge {
  position: absolute; bottom: 30px; left: 30px;
  background: rgba(255,255,255,0.92);
  padding: 10px 20px; border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.92rem; z-index: 5;
}

.elevation-badge svg { color: var(--green); }

.igbc-badge {
  position: absolute; top: 30px; left: 30px;
  background: linear-gradient(135deg, var(--green), var(--green-3));
  color: #fff; padding: 12px 20px; border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; z-index: 6; border: 2px solid var(--orange);
}

.igbc-badge-icon {
  width: 40px; height: 40px; background: #fff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}

.igbc-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.igbc-badge-title { font-size: 0.85rem; opacity: 0.95; }
.igbc-badge-rating { font-size: 1.05rem; font-weight: 800; color: var(--orange); }

.content-wrapper {
  width: 38%;
  background-image: linear-gradient(45deg, rgba(44,105,1,0.95), rgba(44,105,1,0.85)), url('../img/texture-bg.avif');
  background-size: cover; background-position: center;
  position: relative; color: #fff;
}

.content-pattern {
  position: absolute; inset: 0; opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.glass-overlay { position: absolute; inset: 0; background: rgba(255,255,255,0.05); backdrop-filter: blur(5px); }

.content-inner {
  position: relative; z-index: 1; height: 100%;
  padding: 34px 30px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center;
  background: rgba(0,0,0,0.2);
}

/* In flow, not absolute: while it was positioned the logo needed a magic
   margin-top to clear it, and any short viewport put the two on top of each other. */
.offer-badge {
  background: linear-gradient(135deg, var(--orange), #e67e22);
  color: #fff; padding: 11px 20px; border-radius: 25px;
  font-weight: 700; animation: pulse 2.4s infinite;
  text-align: center; max-width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  display: flex; flex-direction: column; gap: 2px; line-height: 1.3;
}

.offer-badge-main { font-size: 0.95rem; }
.offer-badge-sub { font-size: 0.8rem; opacity: 0.95; font-weight: 600; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.project-logo {
  width: 240px; margin: 0 0 1.1rem;
  background: rgba(255,255,255,0.95); border-radius: 12px; padding: 1.1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  opacity: 0; transform: translateY(-20px);
  animation: fade-in-up 0.8s forwards; z-index: 3;
}

.project-title {
  font-family: var(--display); font-size: 2rem; line-height: 1.15;
  margin-bottom: 0.4rem; opacity: 0; transform: translateY(-20px);
  animation: fade-in-up 0.8s 0.15s forwards;
}

.project-tagline {
  font-size: 1.02rem; font-weight: 500; margin-bottom: 1.6rem;
  color: rgba(255,255,255,0.9);
  opacity: 0; transform: translateY(-20px);
  animation: fade-in-up 0.8s 0.25s forwards;
}

@keyframes fade-in-up { to { opacity: 1; transform: translateY(0); } }

.hero-content {
  width: 100%; display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  opacity: 0; transform: translateY(-20px); animation: fade-in-up 0.8s 0.4s forwards;
}

.hero-price {
  font-size: 1.3rem; font-weight: 700; letter-spacing: 0.3px;
}
.hero-price span { color: var(--orange-2); font-size: 1.6rem; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem;
  width: 100%; max-width: 460px;
}

.feature-item {
  background: rgba(241,150,30,0.18); padding: 14px 10px; border-radius: 10px;
  text-align: center; backdrop-filter: blur(5px);
  border: 1px solid rgba(241,150,30,0.3);
  transition: all 0.3s ease; font-size: 0.88rem; font-weight: 500;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}

.feature-item svg { color: var(--orange); }
.feature-item:hover { background: rgba(241,150,30,0.3); transform: translateY(-3px); }

.cta-group { display: flex; gap: 1rem; width: 100%; max-width: 460px; justify-content: center; }

.cta-button {
  padding: 14px 26px; border-radius: 30px; font-size: 1rem; font-weight: 600;
  text-decoration: none; text-align: center; cursor: pointer; border: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

.cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.cta-button:active { transform: translateY(-1px); }

.cta-primary { background: linear-gradient(to right, var(--green), var(--green-3)); color: #fff; min-width: 150px; }
.cta-primary:hover { background: linear-gradient(to right, var(--green-dark), var(--green)); }
.cta-secondary { background: linear-gradient(to right, var(--orange), var(--orange-2)); color: #fff; min-width: 150px; }
.cta-secondary:hover { background: linear-gradient(to right, var(--orange-dark), var(--orange)); }

.trust-indicators { display: flex; justify-content: center; gap: 0.7rem; flex-wrap: wrap; }

.trust-item {
  font-size: 0.85rem; color: #fff; display: flex; align-items: center; gap: 0.5rem;
  background: rgba(44,105,1,0.32); padding: 7px 14px; border-radius: 20px;
  border: 1px solid rgba(241,150,30,0.3); transition: all 0.3s ease;
}

.trust-item:hover { background: rgba(44,105,1,0.45); transform: translateY(-2px); }

/* ============================= OVERVIEW ============================= */
.up-overview-section { padding: 80px 20px; position: relative; overflow: hidden; }

.up-overview-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(120deg, rgba(44,105,1,0.03), rgba(241,150,30,0.03));
}

.up-overview-container { max-width: 1200px; margin: 0 auto; position: relative; }
.up-overview__heading-wrapper { text-align: center; margin-bottom: 50px; }

.up-overview__subheading {
  color: var(--orange); font-size: 1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
}

.up-overview__heading {
  font-size: 2.5rem; color: var(--green); position: relative;
  display: inline-block; padding-bottom: 20px;
}

.up-overview__heading::after {
  content: ''; width: 80px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
}

.up-overview__content-wrapper { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; }

.up-overview__image {
  flex: 1; min-width: 300px; border-radius: 15px; overflow: hidden;
  box-shadow: var(--shadow-md); position: relative;
}

.up-overview__image img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.up-overview__image:hover img { transform: scale(1.03); }

.up-overview__content {
  flex: 1.5; min-width: 300px; font-size: 1.05rem; line-height: 1.8; color: #3d3d3d;
  background: #fff; padding: 40px; border-radius: 15px;
  box-shadow: var(--shadow-md); border-left: 4px solid var(--green); position: relative; z-index: 1;
}

.up-overview__content strong { color: var(--green); font-weight: 600; }
.up-overview__highlight { color: var(--orange); font-weight: 600; }
.up-overview__para { margin-bottom: 20px; }

.up-overview__stats {
  display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px;
  padding-top: 20px; border-top: 1px solid var(--line);
}

.up-overview__stat-item {
  flex: 1; min-width: 120px; text-align: center; padding: 15px 10px;
  background: rgba(44,105,1,0.05); border-radius: 10px; transition: all 0.3s ease;
}

.up-overview__stat-item:hover { background: rgba(44,105,1,0.1); transform: translateY(-5px); }
.up-overview__stat-number { font-family: var(--display); font-size: 2rem; color: var(--green); margin-bottom: 5px; }
.up-overview__stat-label { font-size: 0.88rem; color: var(--muted); }

/* ============================= USP ============================= */
.usp-section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; position: relative; }

.usp-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(241,150,30,0.03), rgba(44,105,1,0.03));
}

.usp-heading-wrapper { text-align: center; margin-bottom: 40px; }

.usp-subtitle {
  color: var(--orange); font-size: 1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}

.usp-heading { font-size: 2.2rem; color: var(--green); margin-bottom: 15px; position: relative; display: inline-block; }

.usp-heading::after {
  content: ''; width: 80px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
}

.usp-description { max-width: 800px; margin: 0 auto 34px; text-align: center; font-size: 1rem; line-height: 1.6; color: var(--body); }

.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.usp-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.3s ease;
  border: 1px solid var(--line); height: 100%;
  display: flex; flex-direction: column; position: relative;
}

.usp-card:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(44,105,1,0.14); }

.usp-card-header {
  height: 96px; background: linear-gradient(45deg, var(--green), var(--green-2));
  display: flex; align-items: center; justify-content: center;
  padding: 15px; position: relative; overflow: hidden;
}

.usp-card-header::before {
  content: ''; position: absolute; width: 200%; height: 200%; top: -50%; left: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.usp-card:nth-child(even) .usp-card-header { background: linear-gradient(45deg, var(--orange), var(--orange-2)); }

.usp-icon { color: #fff; }
.usp-card-body { padding: 20px 15px; flex-grow: 1; display: flex; flex-direction: column; }
.usp-title { font-size: 1.12rem; color: var(--green); margin-bottom: 10px; text-align: center; }
.usp-card:nth-child(even) .usp-title { color: var(--orange); }
.usp-text { font-size: 0.88rem; color: var(--body); line-height: 1.5; text-align: center; flex-grow: 1; }

.usp-detail {
  margin-top: 10px; padding-top: 10px; text-align: center;
  border-top: 1px dashed var(--line); font-weight: 700; color: var(--green); font-size: 0.98rem;
}

.usp-card:nth-child(even) .usp-detail { color: var(--orange); border-top-color: rgba(241,150,30,0.2); }

/* ======================= CONFIGURATIONS (BHK) ======================= */
.gb-bhk { padding: 70px 20px; max-width: 1200px; margin: 0 auto; text-align: center; position: relative; overflow: hidden; }
.gb-bhk__background { position: absolute; inset: 0; background-color: #f6f8f4; opacity: 0.75; z-index: -1; }

.gb-bhk__heading { font-size: 2.5rem; color: var(--green); margin-bottom: 15px; position: relative; display: inline-block; }

.gb-bhk__heading::after {
  content: ''; width: 80px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
}

.gb-bhk__subheading { font-size: 1.08rem; color: var(--body); margin: 26px auto 40px; max-width: 700px; }
.gb-bhk__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 30px; padding: 20px 0; }

.gb-bhk__card {
  padding: 35px 25px; border-radius: 20px; background: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08); cursor: pointer;
  display: flex; flex-direction: column; gap: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden; border: 1px solid var(--line);
}

.gb-bhk__card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
  background: linear-gradient(to right, var(--green), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}

.gb-bhk__card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.gb-bhk__card:hover::before { transform: scaleX(1); }

.gb-bhk__type {
  font-family: var(--display); font-size: 1.9rem; color: var(--green);
  padding-bottom: 15px; border-bottom: 2px solid var(--line);
  display: inline-block; margin: 0 auto;
}

.gb-bhk__area { font-size: 1.1rem; color: #444; display: flex; flex-direction: column; gap: 8px; }
.gb-bhk__area-label { font-weight: 500; color: var(--muted); font-size: 0.9rem; }
.gb-bhk__area-value { font-weight: 600; color: var(--ink); font-size: 1.2rem; }

.gb-bhk__spec { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 15px; margin-top: 10px; }
.gb-bhk__spec-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.gb-bhk__spec-icon { color: var(--orange); margin-bottom: 4px; }
.gb-bhk__spec-label { font-size: 0.8rem; color: var(--muted); }
.gb-bhk__spec-value { font-weight: 600; color: #444; font-size: 0.98rem; }

.gb-bhk__price { margin-top: auto; background: rgba(44,105,1,0.05); padding: 15px; border-radius: 10px; }
.gb-bhk__price-label { font-weight: 500; color: var(--muted); margin-bottom: 10px; font-size: 0.92rem; }
.gb-bhk__price-special { color: var(--green); font-weight: 700; font-size: 1.6rem; }
.gb-bhk__price-range { font-family: var(--display); color: var(--green); font-size: 1.6rem; }

.gb-bhk__cta {
  display: inline-block; background: linear-gradient(45deg, var(--green), var(--green-2));
  color: #fff; padding: 12px 24px; border-radius: 30px; font-size: 0.95rem;
  margin-top: 10px; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(44,105,1,0.2);
}

.gb-bhk__cta:hover { background: linear-gradient(45deg, var(--green-dark), var(--green)); transform: translateY(-3px); }

.gb-bhk__special-tag {
  position: absolute; top: 15px; right: 15px;
  background: linear-gradient(45deg, var(--orange), var(--orange-2));
  color: #fff; padding: 5px 15px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; box-shadow: 0 2px 8px rgba(241,150,30,0.3);
}

/* ============================= FLOOR PLANS ============================= */
.up-floor { padding: 60px 20px; max-width: 1200px; margin: 0 auto; position: relative; }
.up-floor__bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(241,150,30,0.03), rgba(44,105,1,0.03)); }
.up-floor__heading-wrapper { text-align: center; margin-bottom: 35px; }

.up-floor__subtitle { color: var(--orange); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.up-floor__heading { font-size: 2.2rem; color: var(--green); margin-bottom: 12px; position: relative; display: inline-block; }

.up-floor__heading::after {
  content: ''; width: 80px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
}

.up-floor__description { max-width: 800px; margin: 25px auto; text-align: center; font-size: 1rem; line-height: 1.6; color: var(--body); }
.up-floor__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; padding: 15px 10px; }

.up-floor__card {
  position: relative; overflow: hidden; border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08); cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; user-select: none;
}

.up-floor__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(44,105,1,0.2); }
.up-floor__img-container { position: relative; overflow: hidden; }

.up-floor__badge {
  position: absolute; top: 10px; right: 10px; background: var(--orange);
  color: #fff; padding: 4px 10px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; z-index: 2;
}

.up-floor__watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 1.2rem; font-weight: 700; color: rgba(255,255,255,0.75);
  background: rgba(44,105,1,0.4); padding: 8px 16px; border-radius: 20px;
  z-index: 2; white-space: nowrap; pointer-events: none;
}

.up-floor__img {
  width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: blur(4px); pointer-events: none;
}

.up-floor__card:hover .up-floor__img { transform: scale(1.03); filter: blur(3px); }
.up-floor__content { padding: 20px; border-top: 1px solid var(--line); background: #fff; }
.up-floor__title { font-size: 1.2rem; color: var(--green); margin-bottom: 12px; }
.up-floor__text { font-size: 0.9rem; color: var(--body); line-height: 1.5; margin-bottom: 15px; }

.up-floor__cta {
  display: inline-block; background: rgba(44,105,1,0.1); color: var(--green);
  padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
  border: 1px solid rgba(44,105,1,0.2); transition: all 0.3s ease;
}

.up-floor__card:hover .up-floor__cta { background: var(--green); color: #fff; }

.up-floor__overlay {
  position: absolute; inset: 0; background: rgba(44,105,1,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease; backdrop-filter: blur(2px);
}

.up-floor__card:hover .up-floor__overlay { opacity: 1; }

.up-floor__overlay-btn {
  background: var(--orange); color: #fff; padding: 10px 20px; border-radius: 20px;
  font-size: 0.95rem; font-weight: 600; border: none; cursor: pointer;
  transform: translateY(20px); opacity: 0; transition: all 0.4s ease 0.1s;
}

.up-floor__card:hover .up-floor__overlay-btn { transform: translateY(0); opacity: 1; }
.up-floor__overlay-btn:hover { background: var(--orange-dark); }

.up-floor__disclaimer {
  text-align: center; margin: 30px auto 0; color: var(--muted); font-size: 0.85rem;
  max-width: 800px; padding: 12px; background: rgba(44,105,1,0.05); border-radius: 8px;
}

/* ============================= MASTER PLAN ============================= */
.masterplan-section { padding: 70px 20px; max-width: 1200px; margin: 0 auto; text-align: center; position: relative; }
.masterplan-section__bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(241,150,30,0.03), rgba(44,105,1,0.03)); }
.masterplan-section__heading-wrapper { margin-bottom: 40px; }
.masterplan-section__subtitle { color: var(--orange); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.masterplan-section__heading { font-size: 2.2rem; color: var(--green); position: relative; display: inline-block; margin-bottom: 15px; }

.masterplan-section__heading::after {
  content: ''; width: 80px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
}

.masterplan-section__description { max-width: 800px; margin: 30px auto; font-size: 1.05rem; line-height: 1.7; color: var(--body); }

.masterplan-section__container {
  position: relative; overflow: hidden; border-radius: 15px;
  box-shadow: var(--shadow-md); cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto; max-width: 1000px; border: 1px solid var(--line);
}

.masterplan-section__image { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.masterplan-section__container:hover { box-shadow: 0 25px 50px rgba(44,105,1,0.15); }
.masterplan-section__container:hover .masterplan-section__image { transform: scale(1.03); }

.masterplan-section__overlay {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease;
  background: linear-gradient(to top, rgba(44,105,1,0.88), rgba(44,105,1,0.4));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 30px; backdrop-filter: blur(3px);
}

.masterplan-section__container:hover .masterplan-section__overlay { opacity: 1; }

.masterplan-section__overlay-title {
  color: #fff; font-family: var(--display); font-size: 1.6rem; margin-bottom: 15px;
  transform: translateY(20px); opacity: 0; transition: all 0.4s ease 0.1s;
}

.masterplan-section__container:hover .masterplan-section__overlay-title { transform: translateY(0); opacity: 1; }

.masterplan-section__overlay-description {
  color: rgba(255,255,255,0.9); font-size: 1.02rem; max-width: 80%; margin-bottom: 25px;
  transform: translateY(20px); opacity: 0; transition: all 0.4s ease 0.2s;
}

.masterplan-section__container:hover .masterplan-section__overlay-description { transform: translateY(0); opacity: 1; }

.masterplan-section__overlay-button {
  background: var(--orange); color: #fff; padding: 12px 30px; border-radius: 30px;
  font-weight: 600; border: none; cursor: pointer; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 1px;
  transform: translateY(20px); opacity: 0; transition: all 0.4s ease 0.3s;
}

.masterplan-section__container:hover .masterplan-section__overlay-button { transform: translateY(0); opacity: 1; }
.masterplan-section__overlay-button:hover { background: var(--orange-dark); }

/* ============================= AMENITIES ============================= */
.up-amenities { padding: 70px 20px; max-width: 1200px; margin: 0 auto; position: relative; }
.up-amenities__bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(241,150,30,0.03), rgba(44,105,1,0.03)); }
.up-amenities__heading-wrapper { text-align: center; margin-bottom: 30px; }
.up-amenities__subtitle { color: var(--orange); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.up-amenities__heading { font-size: 2.5rem; color: var(--green); margin-bottom: 15px; position: relative; display: inline-block; }

.up-amenities__heading::after {
  content: ''; width: 80px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
}

.up-amenities__intro { max-width: 800px; margin: 30px auto; text-align: center; font-size: 1.05rem; line-height: 1.7; color: var(--body); }
.up-amenities__filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }

.up-amenities__filter {
  padding: 10px 20px; background: #fff; border: 1px solid rgba(44,105,1,0.2);
  border-radius: 30px; color: #444; font-weight: 500; cursor: pointer;
  transition: all 0.3s ease; font-size: 0.92rem;
}

.up-amenities__filter.active { background: var(--green); color: #fff; box-shadow: 0 4px 10px rgba(44,105,1,0.2); }
.up-amenities__filter:hover:not(.active) { background: rgba(44,105,1,0.1); transform: translateY(-2px); }

.up-amenities__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; padding: 10px; }

.up-amenities__item {
  background: #fff; padding: 30px 20px; border-radius: 15px;
  box-shadow: var(--shadow-md); text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--line); height: 100%;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
}

.up-amenities__item::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(to right, var(--green), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}

.up-amenities__item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.up-amenities__item:hover::before { transform: scaleX(1); }

.up-amenities__icon {
  background: linear-gradient(45deg, rgba(44,105,1,0.9), rgba(44,105,1,0.7));
  width: 68px; height: 68px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; margin-bottom: 18px; color: #fff;
  box-shadow: 0 8px 20px rgba(44,105,1,0.15); transition: all 0.3s ease;
}

.up-amenities__item:hover .up-amenities__icon { transform: scale(1.1); }

.up-amenities__item:nth-child(even) .up-amenities__icon {
  background: linear-gradient(45deg, rgba(241,150,30,0.9), rgba(241,150,30,0.7));
  box-shadow: 0 8px 20px rgba(241,150,30,0.15);
}

.up-amenities__name { font-family: var(--display); font-size: 1.1rem; color: var(--green); margin-bottom: 6px; }
.up-amenities__item:nth-child(even) .up-amenities__name { color: var(--orange); }
.up-amenities__text { font-size: 0.86rem; color: var(--muted); line-height: 1.45; flex-grow: 1; }
.up-amenities__item.hidden { display: none; }

/* ============================= LIFESTYLE ============================= */
.lifestyle-section {
  padding: 60px 20px; max-width: 1400px; margin: 0 auto; position: relative;
  background: linear-gradient(135deg, rgba(44,105,1,0.02), rgba(241,150,30,0.02));
}

.lifestyle-heading-wrapper { text-align: center; margin-bottom: 40px; }
.lifestyle-subtitle { color: var(--orange); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.lifestyle-heading { font-size: 2.4rem; color: var(--green); margin-bottom: 20px; position: relative; display: inline-block; }

.lifestyle-heading::after {
  content: ''; width: 100px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
}

.lifestyle-description { max-width: 900px; margin: 0 auto 40px; text-align: center; font-size: 1.05rem; line-height: 1.8; color: var(--body); }
.lifestyle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 40px; }

.lifestyle-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  border: 2px solid var(--line); cursor: pointer; position: relative;
  height: 260px; display: flex; flex-direction: column;
}

.lifestyle-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(44,105,1,0.15); border-color: var(--orange); }

.lifestyle-card-image { width: 100%; height: 170px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.lifestyle-card-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(44,105,1,0.7) 100%); transition: all 0.3s ease; }
.lifestyle-card:hover .lifestyle-card-image::before { background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(241,150,30,0.8) 100%); }

.lifestyle-card-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3.2rem; z-index: 2; transition: all 0.3s ease; }
.lifestyle-card:hover .lifestyle-card-icon { transform: translate(-50%, -50%) scale(1.1); }

.lifestyle-card-body { padding: 18px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f8f9fa, #fff); flex-grow: 1; }
.lifestyle-card-title { font-family: var(--display); font-size: 1.25rem; color: var(--green); text-align: center; transition: all 0.3s ease; }
.lifestyle-card:hover .lifestyle-card-title { color: var(--orange); }

/* ============================= ECO / IGBC ============================= */
.eco-section {
  padding: 60px 20px; max-width: 1200px; margin: 0 auto; position: relative;
  background: linear-gradient(135deg, rgba(44,105,1,0.03), rgba(76,175,80,0.03));
}

.eco-badge-wrapper { display: flex; justify-content: center; margin-bottom: 30px; }

.eco-badge {
  background: linear-gradient(135deg, var(--green), var(--green-3)); color: #fff;
  padding: 20px 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(44,105,1,0.2);
  display: flex; align-items: center; gap: 20px; border: 3px solid var(--orange);
}

.eco-badge-icon { width: 58px; height: 58px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; }
.eco-badge-text { display: flex; flex-direction: column; line-height: 1.3; }
.eco-badge-title { font-size: 0.95rem; opacity: 0.95; font-weight: 500; }
.eco-badge-rating { font-size: 1.7rem; font-weight: 800; color: var(--orange); }

.eco-heading-wrapper { text-align: center; margin-bottom: 30px; }
.eco-subtitle { color: var(--green); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.eco-heading { font-size: 2.2rem; color: var(--green); margin-bottom: 15px; position: relative; display: inline-block; }

.eco-heading::after {
  content: ''; width: 80px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), #4caf50);
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
}

.eco-description { max-width: 800px; margin: 0 auto 40px; text-align: center; font-size: 1rem; line-height: 1.6; color: var(--body); }
.eco-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.eco-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.3s ease;
  border: 2px solid rgba(76,175,80,0.1); height: 100%;
  display: flex; flex-direction: column; position: relative; cursor: pointer;
}

.eco-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(44,105,1,0.15); border-color: #4caf50; }

.eco-card-header {
  height: 96px; background: linear-gradient(135deg, var(--green), #4caf50);
  display: flex; align-items: center; justify-content: center;
  padding: 15px; position: relative; overflow: hidden;
}

.eco-card-header::before {
  content: ''; position: absolute; width: 200%; height: 200%; top: -50%; left: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.eco-icon { color: #fff; }
.eco-card-body { padding: 20px 15px; flex-grow: 1; display: flex; flex-direction: column; }
.eco-title { font-size: 1.05rem; color: var(--green); margin-bottom: 10px; text-align: center; line-height: 1.3; }
.eco-text { font-size: 0.84rem; color: var(--muted); line-height: 1.5; text-align: center; flex-grow: 1; }

/* ============================= GALLERY ============================= */
.up-gallery { width: 100%; margin: auto; padding: 60px 20px; text-align: center; max-width: 1200px; }
.up-gallery__heading { font-size: 2.2rem; color: var(--green); margin-bottom: 40px; position: relative; display: inline-block; }

.up-gallery__heading::after {
  content: ''; width: 100px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
}

.up-slider { position: relative; overflow: hidden; width: 100%; border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.up-slider__wrapper { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); width: 100%; will-change: transform; height: 62vh; }
.up-slider__image-container { min-width: 100%; height: 100%; overflow: hidden; position: relative; }
.up-slider__image { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; }
.up-slider__image-container:hover .up-slider__image { transform: scale(1.05); }

.up-slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(44,105,1,0.8); border: none; border-radius: 50%;
  cursor: pointer; z-index: 10; transition: all 0.3s ease; font-size: 20px;
}

.up-slider__arrow:hover { background: var(--green); transform: translateY(-50%) scale(1.1); }
.up-slider__arrow--left { left: 20px; }
.up-slider__arrow--right { right: 20px; }

.up-slider__dots { text-align: center; margin-top: 22px; }
.up-slider__dot { height: 11px; width: 11px; margin: 0 5px; background: #ddd; border: none; border-radius: 50%; display: inline-block; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.up-slider__dot--active { background: var(--orange); transform: scale(1.25); }

.up-slider__counter {
  position: absolute; top: 20px; right: 20px;
  background: rgba(44,105,1,0.85); color: #fff; padding: 6px 12px;
  border-radius: 20px; font-size: 0.88rem; font-weight: 500; z-index: 5;
}

/* ============================= LOCATION ============================= */
.up-location { padding: 70px 20px; max-width: 1200px; margin: 0 auto; position: relative; }
.up-location__heading-wrapper { text-align: center; margin-bottom: 40px; }
.up-location__subheading { color: var(--orange); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.up-location__heading { font-size: 2.2rem; color: var(--green); margin-bottom: 15px; position: relative; display: inline-block; }

.up-location__heading::after {
  content: ''; width: 100px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
}

.up-location__description { max-width: 800px; margin: 0 auto 36px; text-align: center; font-size: 1.05rem; line-height: 1.7; color: var(--body); }
.up-location__tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }

.up-location__tab {
  padding: 10px 20px; border-radius: 30px; background: #fff; cursor: pointer;
  font-size: 0.92rem; transition: all 0.3s ease;
  border: 1px solid rgba(44,105,1,0.2); color: #444; font-weight: 500;
}

.up-location__tab.active { background: var(--green); color: #fff; box-shadow: 0 4px 10px rgba(44,105,1,0.2); }
.up-location__tab:hover:not(.active) { background: rgba(44,105,1,0.1); transform: translateY(-2px); }

.up-location__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 10px; }

.up-location__item {
  background: #fff; padding: 18px 20px; border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: all 0.3s ease;
  display: flex; align-items: center; gap: 15px;
  border: 1px solid rgba(241,150,30,0.1); position: relative; overflow: hidden;
}

.up-location__item::before {
  content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--green), var(--green-2)); opacity: 0.8;
}

.up-location__item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: rgba(241,150,30,0.3); }

.up-location__icon {
  color: var(--green); min-width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(44,105,1,0.1); border-radius: 50%;
}

.up-location__content { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 10px; }
.up-location__name { font-size: 0.98rem; color: var(--ink); font-weight: 500; }

.up-location__distance {
  font-size: 0.9rem; color: var(--orange); font-weight: 600; white-space: nowrap;
  background: rgba(241,150,30,0.1); padding: 4px 10px; border-radius: 20px;
}

.up-location__item.hidden { display: none; }


/* ============================= DOWNLOADS ============================= */
.download-section { padding: 70px 20px; text-align: center; max-width: 1200px; margin: 0 auto; position: relative; overflow: hidden; }
.download-section__heading { font-size: 2.2rem; color: var(--green); margin-bottom: 15px; position: relative; display: inline-block; }

.download-section__heading::after {
  content: ''; width: 100px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
}

.download-section__subheading { font-size: 1.05rem; color: var(--muted); margin: 30px auto 40px; max-width: 700px; }
.download-section__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; max-width: 900px; margin: 0 auto; }

.download-section__button {
  background-color: var(--green); color: #fff; padding: 25px 30px;
  border: none; border-radius: 12px; font-size: 1rem; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); width: 100%; font-weight: 500;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  box-shadow: 0 8px 15px rgba(44,105,1,0.15); position: relative; overflow: hidden;
}

.download-section__button:hover { background-color: var(--green-dark); transform: translateY(-5px); box-shadow: 0 12px 25px rgba(44,105,1,0.2); }

.download-section__button::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%); transition: transform 0.6s ease;
}

.download-section__button:hover::before { transform: translateX(100%); }
.download-section__button:nth-child(even) { background-color: var(--orange); }
.download-section__button:nth-child(even):hover { background-color: #d87c09; }

.download-section__button-icon {
  background: rgba(255,255,255,0.2); width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 0.3s ease;
}

.download-section__button:hover .download-section__button-icon { background: rgba(255,255,255,0.3); transform: scale(1.1); }
.download-section__button-title { font-weight: 600; font-size: 1.15rem; margin-bottom: 5px; }
.download-section__button-description { font-size: 0.86rem; opacity: 0.9; }

.download-section__badge {
  position: absolute; top: 10px; right: 10px; background: #fff; color: var(--green);
  padding: 5px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
  transform: rotate(5deg);
}

/* ========================= INLINE ENQUIRY ========================= */
.gb-enquire {
  padding: 70px 20px;
  background-image: linear-gradient(rgba(44,105,1,0.93), rgba(30,76,1,0.95)), url('../img/texture-bg.avif');
  background-size: cover; background-position: center; background-attachment: fixed;
}

.gb-enquire__inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: center; }
.gb-enquire__copy { color: #fff; }
.gb-enquire__eyebrow { color: var(--orange-2); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; }
.gb-enquire__title { font-size: 2.3rem; line-height: 1.2; margin-bottom: 16px; }
.gb-enquire__text { font-size: 1.02rem; line-height: 1.7; color: rgba(255,255,255,0.88); margin-bottom: 26px; }
.gb-enquire__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.gb-enquire__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.98rem; color: rgba(255,255,255,0.95);
}

.gb-enquire__tick {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700;
}

.gb-enquire__card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.gb-enquire__card-head { background: linear-gradient(135deg, var(--green), var(--green-3)); color: #fff; padding: 16px 20px; text-align: center; border-bottom: 3px solid var(--orange); }
.gb-enquire__card-head h3 { font-size: 1.25rem; margin-bottom: 4px; }
.gb-enquire__card-head p { font-size: 0.85rem; opacity: 0.9; }
.gb-enquire__frame { height: 500px; background: #fff; transition: height 0.3s ease; }
.gb-enquire__frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================= RERA ============================= */
.rera-section {
  position: relative; padding: 60px 20px; max-width: 1200px; margin: 50px auto;
  background-image: linear-gradient(rgba(44,105,1,0.85), rgba(44,105,1,0.92)), url('../img/texture-bg.avif');
  background-size: cover; background-position: center; border-radius: 12px; overflow: hidden;
}

.rera-section .section-heading { font-size: 2rem; color: #fff; margin-bottom: 40px; position: relative; text-align: center; z-index: 2; letter-spacing: 1px; }

.rera-section .section-heading::after {
  content: ''; width: 120px; height: 4px; background: var(--orange); border-radius: 2px;
  position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
}

.rera-content { display: flex; justify-content: space-between; align-items: center; gap: 30px; z-index: 2; max-width: 900px; margin: 0 auto; position: relative; }
.rera-logo { flex: 1; display: flex; justify-content: center; }
.rera-logo img { max-width: 210px; filter: brightness(0) invert(1); opacity: 0.9; }

.rera-details-box { flex: 2; background: rgba(255,255,255,0.15); padding: 30px; border-radius: 10px; border-left: 5px solid var(--orange); backdrop-filter: blur(5px); }
.rera-number-label { font-size: 1.05rem; color: rgba(255,255,255,0.9); margin-bottom: 8px; font-weight: 500; }
.rera-number-value { font-size: 1.3rem; color: #fff; margin-bottom: 15px; font-weight: 700; letter-spacing: 0.5px; }
.rera-text { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: 15px; }

.rera-link {
  display: inline-block; color: var(--orange); font-weight: 600; text-decoration: none;
  padding: 10px 20px; border: 2px solid var(--orange); border-radius: 30px;
  transition: all 0.3s ease; margin-top: 10px;
}

.rera-link:hover { background: var(--orange); color: #fff; }

.rera-footer-info { margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 30px; display: flex; justify-content: space-between; color: #fff; position: relative; z-index: 2; }
.rera-footer-info > div { flex: 1; padding: 0 15px; }
.rera-footer-title { font-size: 1.1rem; margin-bottom: 12px; color: rgba(255,255,255,0.9); font-weight: 600; }
.rera-footer-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ============================= FOOTER ============================= */
.gb-footer { background: #16330a; color: rgba(255,255,255,0.78); padding: 60px 20px 0; font-size: 0.92rem; }
.gb-footer__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.gb-footer__logo { height: 54px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; margin-bottom: 18px; }
.gb-footer__about { line-height: 1.7; margin-bottom: 20px; }
.gb-footer__title { font-family: var(--display); color: #fff; font-size: 1.1rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.gb-footer__title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 2px; background: var(--orange); }
.gb-footer__list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.gb-footer__list a { text-decoration: none; transition: color 0.2s ease; }
.gb-footer__list a:hover { color: var(--orange-2); }
.gb-footer__contact-row { display: flex; gap: 12px; margin-bottom: 16px; line-height: 1.6; }
.gb-footer__contact-row svg { flex-shrink: 0; color: var(--orange); margin-top: 3px; }
.gb-footer__contact-row a { text-decoration: none; }
.gb-footer__contact-row a:hover { color: var(--orange-2); }

.gb-footer__socials { display: flex; gap: 10px; margin-top: 18px; }

.gb-footer__socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}

.gb-footer__socials a:hover { background: var(--orange); transform: translateY(-3px); }

.gb-footer__disclaimer {
  max-width: 1200px; margin: 45px auto 0; padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem; line-height: 1.7; color: rgba(255,255,255,0.55); text-align: justify;
}

.gb-footer__bottom {
  max-width: 1200px; margin: 0 auto; padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}

.gb-footer__bottom a { text-decoration: none; }
.gb-footer__bottom a:hover { color: var(--orange-2); }

/* ========================= MOBILE STICKY CTA ========================= */
.mobile-cta {
  display: none; grid-template-columns: 1fr 1fr 1fr;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.95); z-index: 100; width: 100%; overflow: hidden;
}

.mobile-cta .cta-button {
  padding: 11px 0; font-size: 0.9rem; border-radius: 0; width: 100%;
  flex-direction: column; gap: 4px; box-shadow: none; min-width: auto;
}

.mobile-cta .cta-button:hover { transform: none; }
.mobile-cta .cta-button span { font-size: 0.78rem; line-height: 1; font-weight: 700; white-space: nowrap; }
.mobile-cta .cta-call { background: var(--orange); color: #fff; }
.mobile-cta .cta-primary { background: var(--green); color: #fff; }
.mobile-cta .cta-whatsapp { background: #25D366; color: #fff; }

/* ============================= MODAL ============================= */
.gb-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.8); z-index: 9999; opacity: 0;
  transition: opacity 0.3s ease; overflow-y: auto; -webkit-overflow-scrolling: touch;
}

.gb-modal.is-active { display: flex; opacity: 1; align-items: center; justify-content: center; }
.gb-modal.timed-modal { z-index: 10000; }

.gb-modal__content {
  background: #fff; border-radius: 12px; width: 90%; max-width: 550px;
  position: relative; margin: 20px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateY(16px) scale(0.97); opacity: 0;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
  max-height: calc(100vh - 40px); height: auto;
  display: flex; flex-direction: column;
}

.gb-modal.is-active .gb-modal__content { transform: translateY(0) scale(1); opacity: 1; }

.gb-modal__header {
  background: linear-gradient(135deg, var(--green), var(--green-3));
  padding: 14px 12px; text-align: center; color: #fff;
  border-bottom: 3px solid var(--orange); flex-shrink: 0;
  border-radius: 15px 0 0 0;
}

.gb-modal__title { font-size: 1.35rem; margin: 0 0 8px; }
.gb-modal__subtitle { font-size: 0.85rem; margin: 0; opacity: 0.9; }
.gb-modal__form-wrapper { position: relative; flex: 0 1 auto; overflow: auto; -webkit-overflow-scrolling: touch; }

/* Height is set by the Zoho postMessage resize handler in main.js; this is the fallback. */
.gb-modal__form-wrapper iframe { width: 100%; border: none; display: block; background: #fff; height: 440px; }

.gb-modal__close {
  position: absolute; top: 12px; right: 12px; width: 30px; height: 30px;
  background: rgba(255,255,255,0.9); border: none; border-radius: 50%;
  cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2); transition: all 0.2s ease; padding: 0; color: #333;
}

.gb-modal__close:hover { background: #fff; transform: scale(1.1); }

/* ============================= THANK YOU ============================= */
.ty-wrap {
  min-height: calc(100vh - var(--nav-h) - var(--bar-h));
  display: flex; align-items: center; justify-content: center;
  padding: 50px 20px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f4f8f0, #e9f5e1);
}

.ty-card {
  position: relative; background: rgba(255,255,255,0.96);
  padding: 50px 40px; border-radius: 16px;
  box-shadow: 0 8px 32px rgba(44,105,1,0.15);
  text-align: center; max-width: 640px; z-index: 2;
  border: 1px solid var(--line); overflow: hidden;
}

.ty-accent { position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(to right, var(--green), var(--green-2)); }

.ty-icon {
  width: 78px; height: 78px; background: linear-gradient(135deg, var(--green), var(--green-2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 15px rgba(44,105,1,0.3);
  color: #fff; font-size: 2.3rem; animation: tyPop 0.6s cubic-bezier(0.19, 1, 0.22, 1) both;
}

@keyframes tyPop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.ty-logo { max-width: 190px; margin: 0 auto 18px; display: block; }
.ty-card h1 { font-size: 2.4rem; color: var(--green); margin-bottom: 22px; position: relative; display: inline-block; }
.ty-card h1::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: linear-gradient(to right, var(--orange), var(--orange-2)); }
.ty-card p { font-size: 1.05rem; color: #444; line-height: 1.75; margin-bottom: 26px; }
.ty-highlight { color: var(--orange); font-weight: 600; }
.ty-buttons { display: flex; gap: 15px; justify-content: center; margin-top: 26px; }
.ty-extra { margin-top: 38px; padding-top: 22px; border-top: 1px dashed rgba(44,105,1,0.3); }
.ty-extra h3 { font-family: var(--display); color: var(--green); font-size: 1.1rem; margin-bottom: 16px; }
.ty-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.ty-highlights span {
  background: rgba(44,105,1,0.08); border-radius: 20px; padding: 8px 15px;
  font-size: 0.86rem; color: var(--green);
}

.ty-confetti { position: absolute; top: -10px; width: 10px; height: 18px; opacity: 0; animation: tyFall linear infinite; }

@keyframes tyFall {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ============================= 404 ============================= */
.nf-wrap { min-height: 62vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; gap: 18px; }
.nf-wrap h1 { font-size: 4rem; color: var(--green); }
.nf-wrap p { color: var(--body); max-width: 460px; }

/* ============================= RESPONSIVE ============================= */
@media (max-width: 1200px) {
  .usp-grid, .eco-grid, .lifestyle-grid { grid-template-columns: repeat(3, 1fr); }
  .up-amenities__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
  .gb-nav__links, .gb-nav__actions { display: none; }
  .gb-nav__burger { display: flex; }
  .gb-enquire__inner { grid-template-columns: 1fr; gap: 28px; }
  .gb-enquire { background-attachment: scroll; }
  .gb-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 991px) {
  .hero-section { flex-direction: column; height: auto; min-height: 0; }
  .elevation-section { width: 100%; height: 36vh; min-height: 240px; }
  .elevation-badge { bottom: 15px; left: 15px; padding: 8px 15px; font-size: 0.85rem; }
  .igbc-badge { top: 15px; left: 15px; padding: 8px 12px; gap: 8px; }
  .igbc-badge-icon { width: 32px; height: 32px; font-size: 1rem; }
  .igbc-badge-title { font-size: 0.72rem; }
  .igbc-badge-rating { font-size: 0.92rem; }
  .content-wrapper { width: 100%; }
  .content-inner { padding: 24px 20px 78px; gap: 11px; }
  .project-logo { width: 200px; padding: 13px; }
  .project-title { font-size: 1.7rem; }
  .project-tagline { font-size: 1rem; margin-bottom: 1.1rem; }
  .hero-content { gap: 1.1rem; }
  .offer-badge { width: 100%; max-width: 400px; padding: 9px 14px; }
  .offer-badge-main { font-size: 0.86rem; }
  .offer-badge-sub { font-size: 0.72rem; }
  .cta-group { display: none; }
  .mobile-cta { display: grid; }
  .gb-footer { padding-bottom: 60px; }
  .usp-grid, .eco-grid, .lifestyle-grid, .up-amenities__grid,
  .gb-bhk__grid, .up-floor__grid, .up-location__grid { grid-template-columns: repeat(2, 1fr); }
  .up-overview__content-wrapper { flex-direction: column; }
  .up-overview__content { padding: 30px; }
  .up-overview__heading, .lifestyle-heading, .gb-bhk__heading, .up-amenities__heading { font-size: 1.9rem; }
  .usp-heading, .eco-heading, .up-floor__heading, .up-location__heading,
  .masterplan-section__heading, .up-gallery__heading, .download-section__heading { font-size: 1.7rem; }
  .up-slider__wrapper { height: 46vh; }
  .rera-content { flex-direction: column; }
  .rera-footer-info { flex-direction: column; gap: 20px; }
  .download-section__grid { grid-template-columns: 1fr; }
  .download-section__button { flex-direction: row; text-align: left; padding: 20px; gap: 16px; }
  .download-section__button-icon { width: 48px; height: 48px; flex-shrink: 0; }
  .eco-badge { padding: 15px 26px; gap: 14px; }
  .eco-badge-rating { font-size: 1.4rem; }
  .gb-enquire__title { font-size: 1.8rem; }
}

@media (max-width: 700px) {
  .gb-bar { font-size: 0.72rem; gap: 10px; padding: 0 12px; }
  .gb-bar__sep, .gb-bar__phone-label { display: none; }
  .gb-nav__brand-name { font-size: 1rem; }
  .gb-nav__brand img { height: 34px; }
  .ty-buttons { flex-direction: column; }
  .ty-card { padding: 36px 22px; }
  .ty-card h1 { font-size: 1.9rem; }
  .gb-enquire__frame { height: 500px; }
  .gb-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .gb-footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .usp-grid, .eco-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .up-amenities__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .usp-card-header, .eco-card-header { height: 78px; }
  .usp-card-body, .eco-card-body { padding: 15px 10px; }
  .usp-title, .eco-title { font-size: 0.95rem; }
  .usp-text, .eco-text { font-size: 0.76rem; }
  .usp-detail { font-size: 0.84rem; }
  .up-amenities__icon { width: 52px; height: 52px; }
  .up-amenities__name { font-size: 0.95rem; }
  .up-amenities__text { font-size: 0.78rem; }
  .lifestyle-card { height: 200px; }
  .lifestyle-card-image { height: 120px; }
  .lifestyle-card-icon { font-size: 2.2rem; }
  .lifestyle-card-title { font-size: 1rem; }
  .up-location__grid { grid-template-columns: 1fr; }
  .up-slider__wrapper { height: 34vh; }
  .up-slider__arrow { width: 36px; height: 36px; font-size: 16px; }
  .up-slider__arrow--left { left: 10px; }
  .up-slider__arrow--right { right: 10px; }
  .gb-bhk__grid, .up-floor__grid { grid-template-columns: 1fr; gap: 16px; padding: 5px; }
  .gb-bhk__card { padding: 20px 15px; gap: 15px; }
  .gb-bhk__type { font-size: 1.6rem; }
  .up-floor__text { display: none; }
  .up-floor__content { padding: 12px; }
}

@media (max-width: 478px) {
  .elevation-section { height: 30vh; }
  .content-inner { padding: 20px 15px 70px; gap: 9px; }
  .project-logo { width: 165px; padding: 0.85rem; }
  .project-title { font-size: 1.45rem; }
  .hero-price { font-size: 1.1rem; }
  .hero-price span { font-size: 1.35rem; }
  .feature-item { font-size: 0.74rem; padding: 8px 6px; }
  .feature-item svg { width: 16px; height: 16px; }
  .trust-item { font-size: 0.7rem; padding: 4px 9px; }
  .elevation-badge { bottom: 10px; left: 10px; padding: 5px 10px; font-size: 0.68rem; }
  .igbc-badge { top: 10px; left: 10px; padding: 6px 9px; gap: 6px; }
  .igbc-badge-icon { width: 26px; height: 26px; font-size: 0.85rem; }
  .igbc-badge-title { font-size: 0.62rem; }
  .igbc-badge-rating { font-size: 0.8rem; }
  .gb-modal__content { margin: 10px; width: 96vw; max-width: 96vw; max-height: 92vh; }
  .gb-modal__title { font-size: 1.05rem; }
  .gb-modal__subtitle { font-size: 0.75rem; }
  .rera-section { padding: 40px 15px; margin: 30px 12px; }
  .eco-badge { flex-direction: column; text-align: center; }
  .gb-enquire__frame { height: 500px; }
}

/* ==================================================================
   ENHANCEMENT LAYER — added after the base sheet so it wins the cascade.
   Contains: scroll-reveal primitives, the desktop sticky enquiry rail,
   hero entrance choreography, and CTA micro-interactions.
   ================================================================== */

:root { --rail-w: 356px; --ease-out: cubic-bezier(0.22, 1, 0.36, 1); }

/* --------------------------- scroll reveal --------------------------- */
/* main.js tags elements with .reveal and a --i stagger index, then swaps in
   .is-visible on intersect. Base state is visible, so no-JS never blanks out. */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 65ms);
  will-change: opacity, transform;
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal--scale { transform: translateY(18px) scale(0.965); }
.reveal--left { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal--fade { transform: none; }

/* Heading rules draw in rather than just appearing. */
.up-overview__heading::after, .usp-heading::after, .gb-bhk__heading::after,
.up-floor__heading::after, .masterplan-section__heading::after,
.up-amenities__heading::after, .lifestyle-heading::after, .eco-heading::after,
.up-gallery__heading::after, .up-location__heading::after,
.download-section__heading::after {
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.8s var(--ease-out) 0.15s;
}

.reveal.is-visible h2::after,
h2.reveal.is-visible::after { transform: translateX(-50%) scaleX(1); }

/* ----------------------- hero choreography ----------------------- */
.elevation-media {
  position: absolute; inset: 0;
  background: url('../img/hero-banner.avif') center/cover no-repeat;
  transform: scale(1.06);
  animation: heroDrift 22s ease-out forwards;
}

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

.elevation-section { background-image: none; }

.igbc-badge, .elevation-badge {
  opacity: 0; animation: fade-in-up 0.7s var(--ease-out) forwards;
}

.igbc-badge { animation-delay: 0.45s; }
.elevation-badge { animation-delay: 0.6s; }

.offer-badge { opacity: 0; animation: offerIn 0.6s var(--ease-out) 0.2s forwards, pulse 2.6s 1.4s infinite; }

@keyframes offerIn {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-price { opacity: 0; transform: translateY(-16px); animation: fade-in-up 0.7s var(--ease-out) 0.5s forwards; }
.features-grid .feature-item { opacity: 0; transform: translateY(14px); animation: fade-in-up 0.6s var(--ease-out) forwards; }
.features-grid .feature-item:nth-child(1) { animation-delay: 0.62s; }
.features-grid .feature-item:nth-child(2) { animation-delay: 0.72s; }
.features-grid .feature-item:nth-child(3) { animation-delay: 0.82s; }
.trust-indicators .trust-item { opacity: 0; transform: translateY(12px); animation: fade-in-up 0.6s var(--ease-out) forwards; }
.trust-indicators .trust-item:nth-child(1) { animation-delay: 0.95s; }
.trust-indicators .trust-item:nth-child(2) { animation-delay: 1.03s; }
.trust-indicators .trust-item:nth-child(3) { animation-delay: 1.11s; }
.cta-group { opacity: 0; animation: fade-in-up 0.7s var(--ease-out) 0.88s forwards; }

/* --------------------- CTA micro-interactions --------------------- */
.cta-button, .gb-nav__cta, .gb-bhk__cta, .up-floor__overlay-btn,
.masterplan-section__overlay-button, .rera-link { position: relative; overflow: hidden; }

.cta-button::after, .gb-nav__cta::after, .gb-bhk__cta::after {
  content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); pointer-events: none;
}

.cta-button:hover::after, .gb-nav__cta:hover::after, .gb-bhk__cta:hover::after {
  animation: shine 0.85s ease forwards;
}

@keyframes shine { to { left: 130%; } }

.cta-button:active, .gb-nav__cta:active { transform: translateY(0) scale(0.98); }

.gb-nav__link { position: relative; }

.gb-nav__link::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.gb-nav__link:hover::after { transform: scaleX(1); }

.up-overview__stat-number { font-variant-numeric: tabular-nums; }

/* ----------------- desktop sticky enquiry rail ----------------- */
/* Content-height floating card anchored under the nav — a full-height column left
   several hundred px of dead white below the submit button. It starts parked
   off-canvas and slides in only once the hero has scrolled past. */
.gb-rail {
  display: none;
  position: fixed;
  right: 0;
  top: calc(var(--nav-h) + 22px);
  bottom: auto;
  width: var(--rail-w);
  max-height: calc(100vh - var(--nav-h) - 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-right: none;
  border-radius: 16px 0 0 16px;
  box-shadow: -14px 14px 40px rgba(0, 0, 0, 0.16);
  z-index: 80;
  flex-direction: column;
  transform: translateX(calc(100% + 24px));
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.35s ease;
}

body.rail-in .gb-rail { transform: none; opacity: 1; }
body.rail-in.rail-closed .gb-rail { transform: translateX(100%); opacity: 1; }

.gb-rail__head {
  background: linear-gradient(135deg, var(--green), var(--green-3));
  color: #fff; padding: 15px 18px; text-align: center;
  border-bottom: 3px solid var(--orange); flex-shrink: 0;
  border-radius: 15px 0 0 0;
}

.gb-rail__head h3 { font-size: 1.14rem; margin-bottom: 4px; }
.gb-rail__head p { font-size: 0.8rem; opacity: 0.9; }

.gb-rail__body { flex: 0 1 auto; overflow-y: auto; overflow-x: hidden; }
.gb-rail__body iframe { width: 100%; border: none; display: block; height: 440px; background: #fff; }

.gb-rail__foot {
  flex-shrink: 0; border-top: 1px solid var(--line);
  padding: 12px 16px; display: flex; gap: 10px; align-items: center; justify-content: center;
  background: #f7f9f5; font-size: 0.78rem; color: var(--muted);
  border-radius: 0 0 0 15px;
}

.gb-rail__foot strong { color: var(--green); }

.gb-rail__toggle {
  position: absolute; left: -36px; top: 84px;
  width: 36px; min-height: 60px; padding: 12px 0; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff; border-radius: 10px 0 0 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: -4px 4px 14px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
}

.gb-rail__toggle:hover { width: 42px; left: -42px; }
.gb-rail__toggle svg { transition: transform 0.35s var(--ease-out); }
body.rail-closed .gb-rail__toggle svg { transform: rotate(180deg); }

.gb-rail__toggle-label {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 0.72rem; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 700;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.35s var(--ease-out), opacity 0.25s ease, margin-top 0.35s var(--ease-out);
}

body.rail-closed .gb-rail__toggle-label { max-height: 80px; opacity: 1; margin-top: 8px; }

/* .has-rail is set in the markup so the gutter exists before first paint, and so
   pages without a rail (thank-you, 404) never reserve the space. */
@media (min-width: 1200px) {
  body.has-rail { padding-right: var(--rail-w); transition: padding-right 0.5s var(--ease-out); }
  body.has-rail .gb-rail { display: flex; }

  /* Collapsing is an explicit user action, so reclaiming the gutter is expected. */
  body.has-rail.rail-closed { padding-right: 0; }
  body.has-rail.rail-closed .gb-bar,
  body.has-rail.rail-closed .gb-nav,
  body.has-rail.rail-closed .hero-section { margin-right: 0; }
  body.has-rail .gb-enquire { display: none; }
  body.has-rail .mobile-cta { display: none !important; }

  /* The rail is anchored below the nav, so the bar, nav and hero all run edge to
     edge and the reserved gutter is never visible as a bare strip. */
  body.has-rail .gb-bar,
  body.has-rail .gb-nav,
  body.has-rail .hero-section { margin-right: calc(-1 * var(--rail-w)); }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  :root { --rail-w: 320px; }
  .up-overview__content { padding: 30px; }
}

/* --------------------------- mobile polish --------------------------- */
@media (max-width: 991px) {
  .hero-section { min-height: 0; }
  .elevation-media { animation-duration: 16s; }
  body { padding-bottom: 58px; }
  .gb-footer { padding-bottom: 24px; }
  .mobile-cta { box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25); }
  .mobile-cta .cta-button::after { display: none; }
  .reveal { transform: translateY(18px); transition-duration: 0.55s; transition-delay: calc(var(--i, 0) * 45ms); }
}

@media (max-width: 600px) {
  .gb-enquire__frame { height: 500px; }
  .gb-modal__content { border-radius: 14px; }
}

@media (hover: none) {
  .up-floor__overlay { opacity: 1; background: rgba(44, 105, 1, 0.55); }
  .up-floor__overlay-btn { opacity: 1; transform: none; }
  .masterplan-section__overlay { opacity: 1; background: linear-gradient(to top, rgba(44,105,1,0.9), rgba(44,105,1,0.15)); }
  .masterplan-section__overlay-title,
  .masterplan-section__overlay-description,
  .masterplan-section__overlay-button { opacity: 1; transform: none; }
  .masterplan-section__overlay-description { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .elevation-media { animation: none; transform: none; }
  .igbc-badge, .elevation-badge, .offer-badge, .hero-price,
  .cta-group, .feature-item, .trust-item, .project-logo,
  .project-title, .project-tagline, .hero-content { opacity: 1 !important; animation: none !important; transform: none !important; }
}

/* -------------------- post-review corrections -------------------- */
/* The nav wordmark lives in the SVG, so no text lockup sits beside it. */
.gb-bar__short { display: none; }

/* Toggle sits mid-rail so it never collides with the hero offer badge. */
.gb-rail__toggle { top: 84px; }

@media (max-width: 991px) {
  .up-overview-section { padding: 44px 18px; }
  .usp-section, .eco-section, .lifestyle-section { padding: 44px 16px; }
  .gb-bhk, .up-floor, .masterplan-section, .up-amenities,
  .up-location, .download-section, .up-gallery { padding: 44px 16px; }
  .up-overview__heading-wrapper, .up-location__heading-wrapper,
  .up-amenities__heading-wrapper, .lifestyle-heading-wrapper { margin-bottom: 26px; }
  .up-overview__stats { gap: 12px; }
  .gb-enquire { padding: 46px 16px; }
  .rera-section { margin: 26px 14px; }
}

@media (max-width: 700px) {
  .gb-bar { height: auto; min-height: var(--bar-h); padding: 8px 12px; line-height: 1.3; }
  .gb-bar__long { display: none; }
  .gb-bar__short { display: inline; }
  .gb-nav { height: 64px; }
  .gb-nav__brand img { height: 38px; }
  .up-overview__content { padding: 22px 18px; font-size: 0.98rem; line-height: 1.7; }
  .up-overview__para { margin-bottom: 14px; }
}

/* Four configurations: 4-up only on wide screens, 2-up once the rail or a
   narrower viewport eats the width, 1-up on phones (handled at 600px above). */
@media (max-width: 1439px) {
  .gb-bhk__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Top padding clears the absolutely-positioned "Most Popular" / "Premium" tag. */
.gb-bhk__card { padding: 50px 20px 28px; gap: 18px; }
.gb-bhk__type { font-size: 1.6rem; white-space: nowrap; }
.gb-bhk__special-tag { top: 14px; right: 14px; padding: 4px 12px; font-size: 0.74rem; }
.gb-bhk__area-value { font-size: 1.06rem; }
.gb-bhk__price-range { font-size: 1.25rem; white-space: nowrap; }
.gb-bhk__price-special { font-size: 1.25rem; }
.gb-bhk__spec-label { font-size: 0.74rem; }

@media (max-width: 600px) {
  .gb-bhk__card { padding: 46px 16px 22px; }
  .gb-bhk__price-range, .gb-bhk__price-special { font-size: 1.35rem; }
}

/* Must stay last: the 1439px two-up rule above would otherwise win on phones. */
@media (max-width: 620px) {
  .gb-bhk__grid { grid-template-columns: 1fr; gap: 16px; }
  .gb-bhk__type { font-size: 1.5rem; }
  .gb-bhk__area-value { font-size: 1.05rem; }
}

/* --------------------------- production pass --------------------------- */
/* `clip` instead of `hidden`: it suppresses the phantom scrollbar the off-state
   horizontal reveals create, without turning html/body into a scroll container
   (which would break position: sticky on the nav). */
html, body { overflow-x: clip; }

/* 992-1199px had no persistent CTA: too narrow for the rail, too wide for the
   old 991px mobile bar. Extend the sticky bar to cover the gap. */
@media (max-width: 1199px) {
  .mobile-cta { display: grid; }
  body { padding-bottom: 58px; }
  .gb-footer { padding-bottom: 24px; }
}

/* Developer-published project facts strip under the overview stats. */
.up-overview__facts {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px 22px;
}

.up-overview__facts div { display: flex; flex-direction: column; gap: 3px; }
.up-overview__facts span { font-size: 0.72rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--orange); font-weight: 600; }
.up-overview__facts strong { font-size: 0.92rem; color: var(--ink); font-weight: 600; line-height: 1.35; }

@media (max-width: 600px) {
  .up-overview__facts { grid-template-columns: 1fr 1fr; gap: 14px; }
  .up-overview__facts strong { font-size: 0.85rem; }
}


/* width/height attributes are presentational hints: without an explicit height rule
   they set the image to its full intrinsic pixel height. These two had width-only
   rules and blew out to 1353px and 253px respectively. */
.up-floor__img { height: auto; }
.project-logo { height: auto; }

/* Thank-you page carries one promise, so it gets its own emphasis. */
.ty-promise {
  font-size: 1.12rem !important;
  font-weight: 600;
  color: var(--green);
  background: rgba(44, 105, 1, 0.06);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 0 auto 8px !important;
  max-width: 460px;
}
.gb-footer__contact-row em { font-style: normal; font-size: 0.78rem; opacity: 0.6; }

/* Replaces the map. Location credibility comes from the connectivity grid above;
   this converts "where is it" into a booked, accompanied visit instead of handing
   over turn-by-turn directions to the developer's own sales gallery. */
.up-location__visit {
  margin-top: 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(44,105,1,0.05), rgba(241,150,30,0.06));
}

.up-location__visit-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff; box-shadow: 0 6px 16px rgba(44,105,1,0.22);
}

.up-location__visit-copy h3 { font-size: 1.25rem; color: var(--green); margin-bottom: 6px; }
.up-location__visit-copy p { font-size: 0.94rem; line-height: 1.6; color: var(--body); }
.up-location__visit-btn { flex-shrink: 0; white-space: nowrap; }

@media (max-width: 768px) {
  .up-location__visit {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
  }
  .up-location__visit-copy h3 { font-size: 1.1rem; }
  .up-location__visit-copy p { font-size: 0.88rem; }
  .up-location__visit-btn { width: 100%; max-width: 300px; }
}

/* ------------------------------ legal pages ------------------------------ */
.legal {
  max-width: 780px; margin: 0 auto; padding: 56px 22px 70px;
  font-size: 0.98rem; line-height: 1.75; color: #3d3d3d;
}

.legal h1 { font-size: 2.1rem; color: var(--green); margin-bottom: 6px; }
.legal__meta { font-size: 0.86rem; color: var(--muted); margin-bottom: 30px; }

.legal h2 {
  font-size: 1.22rem; color: var(--green); margin: 34px 0 10px;
  padding-top: 22px; border-top: 1px solid var(--line);
}

.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 20px; }
.legal li { margin-bottom: 10px; }
.legal a { color: var(--green); font-weight: 600; }
.legal code { background: rgba(44,105,1,0.07); padding: 1px 5px; border-radius: 4px; font-size: 0.88em; }

.legal__note {
  margin-top: 34px; padding: 14px 18px; border-radius: 10px;
  background: rgba(44,105,1,0.05); border-left: 3px solid var(--orange);
  font-size: 0.86rem; color: var(--body);
}

@media (max-width: 600px) {
  .legal { padding: 36px 18px 50px; font-size: 0.93rem; }
  .legal h1 { font-size: 1.6rem; }
  .legal h2 { font-size: 1.08rem; }
}

/* ---------------------- short-viewport hero compression ---------------------- */
/* Laptops at 1366x768 and 1280x720 leave ~600px of hero. Rather than let the
   section grow past the fold, tighten the stack so the CTAs stay visible. */
@media (min-width: 992px) and (max-height: 800px) {
  .content-inner { padding: 24px 26px; gap: 10px; }
  .project-logo { width: 200px; padding: 0.85rem; margin-bottom: 0.6rem; }
  .project-title { font-size: 1.7rem; }
  .project-tagline { font-size: 0.94rem; margin-bottom: 0.5rem; }
  .hero-price { font-size: 1.1rem; }
  .hero-price span { font-size: 1.35rem; }
  .hero-content { gap: 0.85rem; }
  .feature-item { padding: 10px 8px; font-size: 0.8rem; }
  .feature-item svg { width: 15px; height: 15px; }
  .cta-button { padding: 11px 20px; font-size: 0.92rem; }
  .trust-item { font-size: 0.78rem; padding: 5px 11px; }
  .offer-badge { padding: 9px 16px; }
  .offer-badge-main { font-size: 0.88rem; }
  .offer-badge-sub { font-size: 0.74rem; }
  .igbc-badge { top: 20px; left: 20px; }
  .elevation-badge { bottom: 20px; left: 20px; }
}

@media (min-width: 992px) and (max-height: 680px) {
  .content-inner { padding: 18px 22px; gap: 8px; }
  .project-logo { width: 170px; margin-bottom: 0.4rem; }
  .project-title { font-size: 1.45rem; }
  .project-tagline { font-size: 0.88rem; }
  .hero-content { gap: 0.7rem; }
  .trust-indicators { gap: 0.45rem; }
}

/* Tablet portrait had a large dead band under the trust chips because the hero
   still reserved a full viewport of height with no CTA row to fill it. */
@media (max-width: 991px) {
  .hero-section { min-height: 0; }
  .content-inner { padding-bottom: 30px; }
}

@media (max-width: 991px) and (min-width: 700px) {
  .elevation-section { height: 42vh; }
  .content-inner { padding: 30px 24px 34px; }
}

/* ------------------- narrow-desktop / scaled-laptop band ------------------- */
/* A 1366 screen at 125% Windows scaling reports ~1093px CSS. Three faults showed
   up there: the nav CTA was clipped because links still fit at 1081-1150, the hero
   CTA row duplicated the sticky bar, and the bar covered the hero's own buttons. */
@media (max-width: 1150px) {
  .gb-nav__links, .gb-nav__actions { display: none; }
  .gb-nav__burger { display: flex; }
}

@media (max-width: 1250px) and (min-width: 1151px) {
  .gb-nav__phone { display: none; }
  .gb-nav__link { padding: 9px 10px; font-size: 0.86rem; }
}

@media (max-width: 1199px) {
  /* the sticky bar already carries Call / Enquire / WhatsApp */
  .cta-group { display: none; }
  .content-inner { padding-bottom: 78px; }
}

/* Below ~620px of CSS height there is not enough room for the whole hero stack once
   the sticky bar takes 58px. Drop the trust chips — the same three claims appear as
   cards in Unparalleled Features — so price and key facts stay above the fold. */
@media (min-width: 992px) and (max-height: 620px) {
  .trust-indicators { display: none; }
  .content-inner { padding: 16px 20px 70px; gap: 7px; }
  .project-logo { width: 155px; }
  .project-title { font-size: 1.35rem; }
  .project-tagline { font-size: 0.84rem; }
  .feature-item { padding: 8px 6px; font-size: 0.76rem; }
}
