/* ============================================================
   CUSTOM FONTS — MIDLAND LUXURY
   ============================================================ */

@font-face {
  font-family: 'Binerka';
  src: url('../fonts/binerka.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Brother-1816';
  src: url('../fonts/brother-1816.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #A07840;
  --green-deep: #102d2b;
  --green-mid: #1A5240;
  --cream: #F5F0E8;
  --charcoal: #F0EBE0;
  --white: #FFFFFF;
  --font-display: 'Binerka', Georgia, serif;
  --font-body: 'Brother-1816', sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: all 0.6s var(--ease-smooth);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--green-deep);
  overflow-x: hidden;
  width: 100%;
  cursor: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

/* ── CUSTOM CURSOR ──────────────────────────────────────────── */
.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 0;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.cursor-dot.hovered {
  transform: translate(-50%, -50%) rotate(45deg) scale(1.5);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 169, 110, 0.45);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease,
    background 0.4s ease, border-color 0.4s ease,
    border-radius 0.4s ease, transform 0.4s ease;
}

.cursor-ring.hovered {
  width: 52px;
  height: 52px;
  background: rgba(201, 169, 110, 0.06);
  border-color: var(--gold);
  border-radius: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

nav.scrolled {
  padding: 16px 60px;
  background: var(--green-deep);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
  display: block;
  padding-bottom: 10px;
}

.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: rgb(201 169 110 / 94%);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-dev-logo-stack {
  display: inline-grid;
  align-items: center;
}

.nav-dev-logo-stack .project-logo {
  grid-area: 1 / 1;
  transition: opacity 0.3s ease;
}

.nav-project-logo {
  display: flex;
  align-items: center;
}

.nav-project-logo .logo-main {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-project-logo .project-logo {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.nav-dev-logo-white {
  opacity: 1;
}

.nav-dev-logo-color {
  opacity: 0;
  display: none;
}

#mainNav.scrolled .nav-dev-logo-white {
  opacity: 0;
  display: none;
}

#mainNav.scrolled .nav-dev-logo-color {
  opacity: 1;
  display: block;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8);
  transition: color 0.3s ease;
  position: relative;
}

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

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

.nav-links a.active {
  color: var(--gold);
}

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

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

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 10px 24px !important;
  font-size: 9px !important;
  letter-spacing: 3px !important;
  transition: all 0.3s ease !important;
}

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

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

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

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cream);
  transition: var(--transition);
}

@media (min-width: 769px) {
  nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
  }

  .nav-logo {
    justify-self: start;
  }

  .nav-links {
    justify-self: center;
  }

  .nav-project-logo {
    justify-self: end;
  }
}

/* ── MOBILE MENU ────────────────────────────────────────────── */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mob-menu.open {
  display: flex;
}

.mob-menu a {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 5px !important;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.mob-menu a:hover {
  color: var(--gold);
}

.mob-menu a.active {
  color: var(--gold);
}

.mob-close {
  position: absolute;
  top: 32px;
  right: 40px;
  font-size: 28px;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 61, 46, 0.55) 0%,
      rgba(13, 61, 46, 0.15) 50%,
      rgba(28, 28, 28, 0.65) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 100px;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.8s forwards;
  margin-top: 10px;
}

.hero-title span {
  color: #ffd993;
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 27px);
  font-weight: 300;
  font-style: normal;
  color: #ffffffd4;
  letter-spacing: 3px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 1.1s forwards;
  margin-top: 10px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 1.4s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 80px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 3;
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}

.slide-dot {
  width: 30px;
  height: 1px;
  background: rgba(245, 240, 232, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.slide-dot::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.4s ease;
}

.slide-dot.active {
  background: rgba(201, 169, 110, 0.3);
}

.slide-dot.active::after {
  width: 100%;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 232, 0.4);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── MARQUEE ────────────────────────────────────────────────── */
.marquee-section {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--green-deep);
  padding: 0 40px;
  white-space: nowrap;
}

.marquee-div {
  color: var(--green-deep);
  opacity: 0.4;
  font-size: 14px;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

/* ── SECTION COMMONS ────────────────────────────────────────── */
.section {
  padding: 120px 80px;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--cream);
  margin-bottom: 24px;
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

.section-title em {
  font-style: italic;
}

.section-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.65);
  max-width: 500px;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  margin-top: 20px;
}

.d1 {
  transition-delay: 0.15s !important;
}

.d2 {
  transition-delay: 0.30s !important;
}

.d3 {
  transition-delay: 0.45s !important;
}

.d4 {
  transition-delay: 0.60s !important;
}

.d5 {
  transition-delay: 0.75s !important;
}

/* ── PHILOSOPHY ─────────────────────────────────────────────── */
.philosophy {
  background: var(--green-deep);
  overflow: hidden;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.phil-img {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.phil-img img {
  transition: transform 8s ease;
}

.phil-img:hover img {
  transform: scale(1.05);
}

.phil-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 32px;
  background: linear-gradient(to top, rgba(13, 61, 46, 0.9), transparent);
  font-family: var(--font-display);
  font-size: 32px;
  font-style: normal;
  letter-spacing: 0.5px;
  color: var(--gold-light);
}

#about .phil-showcase {
  overflow: visible;
}

#about .phil-showcase .phil-media-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: rgba(245, 240, 232, 0.04);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  isolation: isolate;
}

#about .phil-showcase .phil-media-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(233, 212, 170, 0.76) 0%,
      rgba(233, 212, 170, 0.14) 28%,
      rgba(255, 255, 255, 0.2) 55%,
      rgba(201, 169, 110, 0.62) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
  animation: philFrameGlow 7s ease-in-out infinite alternate;
}

#about .phil-showcase .phil-media-stage::after {
  content: '';
  position: absolute;
  inset: -18%;
  background: linear-gradient(115deg,
      transparent 34%,
      rgba(255, 255, 255, 0.14) 50%,
      transparent 66%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: translateX(-48%) rotate(10deg);
  animation: philFrameSweep 10s ease-in-out infinite;
}

#about .phil-showcase .phil-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

#about .phil-showcase .phil-media-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 61, 46, 0.52) 0%,
      rgba(13, 61, 46, 0.18) 36%,
      rgba(13, 61, 46, 0.08) 100%);
  pointer-events: none;
}

#about .phil-showcase .phil-media-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

#about .phil-showcase .phil-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.08);
  transition: transform 6.5s ease, filter 1s ease;
  filter: saturate(0.94) contrast(1.05) brightness(0.96);
  background: var(--green-deep);
}

#about .phil-showcase .phil-media-slide.is-active .phil-media-video {
  transform: scale(1.01);
}

#about .phil-showcase .phil-media-dots {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
  z-index: 6;
}

#about .phil-showcase .phil-media-dots span {
  width: 30px;
  height: 1px;
  background: rgba(245, 240, 232, 0.28);
  transition: transform 0.5s ease, background 0.5s ease, opacity 0.5s ease;
}

#about .phil-showcase .phil-media-dots span.is-active {
  background: var(--gold-light);
  transform: scaleX(1.18);
}

#about .phil-showcase .phil-media-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgb(201 169 110);
  overflow: hidden;
  z-index: 8;
}

#about .phil-showcase .phil-media-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg,
      rgba(233, 212, 170, 0.16) 0%,
      rgba(233, 212, 170, 0.92) 58%,
      rgba(255, 248, 235, 0.96) 100%);
  box-shadow: 0 0 12px rgba(233, 212, 170, 0.3);
}

#about .phil-showcase .phil-caption {
  right: 0;
  z-index: 5;
  padding: 56px 34px 30px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: linear-gradient(to top,
      rgba(13, 61, 46, 0.94) 0%,
      rgba(13, 61, 46, 0.5) 38%,
      rgba(13, 61, 46, 0) 100%);
}

#about .phil-showcase::after {
  right: 22px;
  bottom: 18px;
  z-index: 7;
}

@keyframes philFrameGlow {
  0% {
    opacity: 0.45;
  }

  100% {
    opacity: 0.92;
  }
}

@keyframes philFrameSweep {

  0%,
  14% {
    opacity: 0;
    transform: translateX(-48%) rotate(10deg);
  }

  30% {
    opacity: 0.34;
  }

  55% {
    opacity: 0.1;
    transform: translateX(54%) rotate(10deg);
  }

  100% {
    opacity: 0;
    transform: translateX(54%) rotate(10deg);
  }
}

@keyframes philMediaProgress {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

/* ── STATS ──────────────────────────────────────────────────── */
.stats {
  background: var(--charcoal);
  padding: 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.1);
}

.stat-item {
  padding: 48px 40px;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: #E5DDD0;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.stat-item:hover::after {
  width: 60%;
}




.stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
  letter-spacing: -1px;
}

.stat-lbl {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.55);
  margin-top: 10px;
  display: block;
}

/* ── TOWER SECTION ──────────────────────────────────────────── */
.tower-section {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.tower-img {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  --tower-offset: 0px;
}

.tower-img img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  transition: transform 6s ease;
  object-fit: cover;
  object-position: center center;
  transform: translateY(var(--tower-offset)) scale(1);
  will-change: transform;
}

.tower-img:hover img {
  transform: translateY(var(--tower-offset)) scale(1.03);
}

.tower-img-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--charcoal));
}

.tower-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.frow {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  transition: var(--transition);
}

.frow:hover {
  padding-left: 8px;
  border-bottom-color: rgba(201, 169, 110, 0.4);
}

.ficon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gold);
  margin-top: 2px;
}

.ftitle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.fdesc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(28, 28, 28, 0.55);
}

/* ── SKY CLUBHOUSE ──────────────────────────────────────────── */
.sky-club {
  padding: 0;
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  --sky-club-offset: 0px;
  --sky-club-scale: 1.08;
}

.sky-club.is-animated {
  --sky-club-scale: 1;
}

.sky-club>img {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center center;
  transform: translateY(clamp(-9svh, calc(var(--sky-club-offset) * 0.45), 9svh)) scale(var(--sky-club-scale));
  transform-origin: center center;
  transition: transform 8s ease;
  will-change: transform;
}

.sky-club:hover>img {
  transform: translateY(clamp(-9svh, calc(var(--sky-club-offset) * 0.45), 9svh)) scale(1.03);
}

.sky-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 61, 46, 0.88) 0%, rgba(13, 61, 46, 0.5) 50%, transparent 100%);
  z-index: 1;
}

.sky-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 650px;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.badge {
  padding: 8px 18px;
  border: 1px solid rgb(201 169 110 / 85%);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  transition: var(--transition);
}

.badge:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

/* ── AMENITIES ──────────────────────────────────────────────── */

.section-amenities {
  padding-bottom: 10px;
}


.amenities {
  background: var(--green-deep);
}

.amen-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.amen-wrapper {
  position: relative;
  overflow: hidden;
}

.amen-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s var(--ease-smooth);
}

.amen-card {
  flex: 0 0 340px;
  height: 480px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.amen-card img {
  transition: transform 0.8s ease;
}

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

.amen-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 61, 46, 0.92) 0%, rgba(13, 61, 46, 0.2) 65%, transparent 100%);
  transition: var(--transition);
}

.amen-card:hover .amen-ov {
  background: linear-gradient(to top, #102d2b 0%, rgba(13, 61, 46, 0.4) 60%, rgba(13, 61, 46, 0.1) 100%);
}

.amen-card.is-active .amen-ov {
  background: linear-gradient(to top, #102d2b 0%, rgba(13, 61, 46, 0.4) 60%, rgba(13, 61, 46, 0.1) 100%);
}

.amen-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  transform: translateY(30px);
  transition: transform 0.5s ease;
}

.amen-card:hover .amen-info {
  transform: translateY(0);
}

.amen-card.is-active .amen-info {
  transform: translateY(0);
}

.amen-floor {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e1bc77;
  margin-bottom: 10px;
  font-weight: 800;
}

.amen-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--cream);
  margin-bottom: 8px;
}

.amen-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #fffbf4b8;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.amen-card:hover .amen-desc {
  opacity: 1;
  transform: translateY(0);
}

.amen-card.is-active .amen-desc {
  opacity: 1;
  transform: translateY(0);
}

.amen-controls {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  justify-content: flex-end;
}

.amen-btn {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amen-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}

/* ── INTERIORS ──────────────────────────────────────────────── */
.int-header {
  padding: 100px 80px 0;
  background: var(--green-deep);
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 400px 400px;
  gap: 2px;
}

.int-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.int-item:hover img {
  transform: scale(1.06);
}

.int-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 61, 46, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.int-item:hover .int-ov {
  opacity: 1;
}

.int-item.is-active .int-ov {
  opacity: 1;
}

.int-lbl {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--cream);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.int-item:hover .int-lbl {
  transform: translateY(0);
  opacity: 1;
}

.int-item.is-active .int-lbl {
  transform: translateY(0);
  opacity: 1;
}

.int-tall {
  grid-row: span 2;
}

/* ── RESIDENCES ─────────────────────────────────────────────── */
.res-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.res-tab {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.45);
  padding: 16px 32px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.res-tab.active,
.res-tab:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.res-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.res-panel.active {
  display: grid;
}

.res-plan {
  position: relative;
  background: rgba(28, 28, 28, 0.04);
  /* padding: 24px; */
}

.res-plan img {
  object-fit: contain;
  /* height: 500px; */
}

.res-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 2.8vw, 47px);
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.res-title span {
  color: var(--gold);
  font-style: italic;
}

.res-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 169, 110, 0.1);
  margin: 32px 0;
}

.res-area-i {
  background: #E8E2D6;
  padding: 24px 20px;
}

.res-al {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.5);
  margin-bottom: 8px;
}

.res-av {
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--gold);
}

.res-au {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(28, 28, 28, 0.55);
  margin-left: 4px;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(28, 28, 28, 0.65);
}

.spec-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 6px;
  flex-shrink: 0;
}

/* ── LOCATION ───────────────────────────────────────────────── */
.loc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.loc-map {
  position: relative;
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.loc-map img {
  object-fit: contain;
  background: #0a0a0a;
}

.loc-cat {
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.loc-cat-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  transition: var(--transition);
}

.loc-cat-hd:hover {
  padding-left: 8px;
}

.loc-cat-nm {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;

}

.loc-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.loc-cat.open .loc-icon {
  transform: rotate(45deg);
}

.loc-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.loc-cat.open .loc-items {
  max-height: 240px;
}

.loc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.856);
}

.loc-dist {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--gold);
}

/* ── DESIGN TEAM ────────────────────────────────────────────── */
.benoy-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.benoy-projs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.benoy-p {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.benoy-p img {
  transition: transform 0.6s ease;
}

.benoy-p:hover img {
  transform: scale(1.08);
}

.benoy-lbl {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8);
  background: rgba(13, 61, 46, 0.85);
  padding: 4px 10px;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.1);
  margin-top: 60px;
}

.consult-item {
  background: var(--green-deep);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s ease;
}

.consult-item:hover {
  background: rgba(201, 169, 110, 0.06);
}

.consult-role {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.consult-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--cream);
}

/* ── DEVELOPER ──────────────────────────────────────────────── */
.dev-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.dev-tl {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.dev-ms {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  align-items: flex-start;
}

.dev-yr {
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  width: 84px;
}

.dev-ds {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(28, 28, 28, 0.6);
  padding-top: 8px;
}

/* ── ENQUIRY ────────────────────────────────────────────────── */
.enquiry {
  background: var(--green-deep);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.enquiry::before {
  content: 'EKANAM';
  position: absolute;
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.enq-inner {
  display: grid;
  grid-template-columns: minmax(272px, 601px) minmax(0, 715px);
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.enq-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 28px;
}

.enq-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

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

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

.form-lbl {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-top: 20px;
}

.form-inp {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.25);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-inp::placeholder {
  color: rgba(245, 240, 232, 0.2);
}

.form-inp:focus {
  border-bottom-color: var(--gold);
}

.phone-field {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(201, 169, 110, 0.25);
}

.phone-field:focus-within {
  border-bottom-color: var(--gold);
}

.phone-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 12px 14px;
  background: rgba(245, 240, 232, 0.08);
  color: rgba(245, 240, 232, 0.75);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  pointer-events: none;
  user-select: none;
}

.phone-input {
  border-bottom: none;
  padding: 12px 14px;
}

.phone-input:focus {
  border-bottom-color: transparent;
}

select.form-inp {
  cursor: pointer;
}

select.form-inp option {
  background: var(--green-deep);
}

.rera-box {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  background: rgba(201, 169, 110, 0.03);
}

.rera-t {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.rera-tx {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  line-height: 2;
  color: rgba(245, 240, 232, 0.45);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.ci {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cicon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.cdet {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
}

.cdet strong {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 400;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 60px 80px 90px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.ft {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.fl .lm {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
}

.fl .ls {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgb(201 169 110);
  margin-top: 4px;
  font-weight: 600;
}

.fn {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.fn a {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.5);
  transition: color 0.3s ease;
  font-weight: 500;
}

.fn a:hover {
  color: var(--gold);
}

.fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.fdis {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.8;
  color: rgb(28 28 28 / 74%);
  max-width: 600px;
}

.fcopy {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgb(28 28 28 / 71%);
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-rera {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 28px;
}

.footer-rera-qr {
  flex: 0 0 90px;
  width: 90px;
}

.footer-rera-qr img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-rera-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.8;
  color: rgb(28 28 28 / 74%);
}

.footer-rera-text p+p {
  margin-top: 2px;
}

/* ── FLOATING CTA ───────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-btn {
  background: var(--gold);
  color: var(--green-deep);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
}

.float-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 169, 110, 0.4);
}

/* ── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tower-section {
    grid-template-columns: 1fr;
  }

  .tower-img {
    height: 500px;
    min-height: 500px;
  }

  .tower-img-ov {
    background: linear-gradient(to bottom, transparent 60%, var(--charcoal));
  }

  .tower-content {
    padding: 60px 40px;
  }

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

  nav {
    padding: 24px 40px;
  }

  .section {
    padding: 80px 40px;
  }

  .hero-content {
    padding: 0 40px 80px;
  }

  .int-header {
    padding: 80px 40px 0;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  nav {
    padding: 20px 24px;
  }

  nav.scrolled {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .nav-logo .logo-main {
    display: flex;
    align-items: center;
    padding-bottom: 0;
    line-height: 0;
    margin-top: 0;
  }

  .nav-logo .project-logo {
    width: auto;
    height: 26px;
    max-width: 120px;
    object-fit: contain;
  }

  .nav-project-logo {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 0 12px;
  }

  .nav-project-logo .project-logo {
    width: auto;
    height: 24px;
    max-width: 120px;
    display: none;
  }

  .hamburger {
    display: flex;
    order: 3;
    flex: 0 0 auto;
    align-items: center;
  }

  body.menu-open .nav-project-logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.menu-open .hamburger {
    opacity: 0;
    pointer-events: none;
  }

  .hero-content {
    padding: 0 24px 80px;
  }

  .hero-scroll {
    right: 24px;
    bottom: 30px;
  }

  .hero-dots {
    left: 24px;
  }

  .section {
    padding: 60px 24px;
  }

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

  .philosophy-inner,
  .tower-section,
  .loc-inner,
  .benoy-feat,
  .dev-inner,
  .enq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .res-panel.active {
    grid-template-columns: 1fr;
  }

  .amen-header {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .amen-card {
    flex: 0 0 280px;
    height: 380px;
  }

  .amen-info {
    transform: translateY(0);
  }

  .amen-desc {
    opacity: 0;
    transform: translateY(10px);
  }

  .amen-card.is-active .amen-desc {
    opacity: 1;
    transform: translateY(0);
  }

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

  .int-tall {
    grid-row: span 1;
  }

  .int-grid {
    grid-template-rows: 280px 280px 280px;
  }

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

  .float-cta {
    bottom: 20px;
    right: 20px;
  }

  .sky-content {
    padding: 0 24px;
  }

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

  .benoy-projs {
    grid-template-columns: 1fr 1fr;
  }

  .ft {
    flex-direction: column;
    gap: 32px;
  }

  .fb {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .int-header {
    padding: 60px 24px 0;
  }

  .enquiry::before {
    font-size: 40vw;
  }

  .enquiry .enq-inner {
    gap: 18px;
  }

  .enquiry .enq-copy {
    gap: 8px;
    padding-top: 0;
  }

  .enquiry .section-title {
    margin-bottom: 0;
  }

  .enquiry .gold-line {
    margin: 10px 0 0;
  }
}

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */

/* Backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 28, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* Modal panel — slides up from bottom */
.modal-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9001;
  background: var(--green-deep);
  /* max-height: 90vh; */
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(201, 169, 110, 0.25);
  top: 38px;
  padding: 2px;
  margin: 17px;
}

.modal-panel.open {
  transform: translateY(0);
}

/* Golden top bar that animates width */
.modal-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.modal-panel.open::before {
  width: 100%;
}

.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 520px;
}

/* Left decorative panel */
.modal-deco {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--green-deep);
}

.modal-deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transform: scale(1.1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
    opacity 1.2s ease 0.3s;
}

.modal-panel.open .modal-deco img {
  transform: scale(1);
  opacity: 0.55;
}

.modal-deco-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
  background: linear-gradient(to top,
      rgba(13, 61, 46, 0.92) 0%,
      rgba(13, 61, 46, 0.4) 50%,
      transparent 100%);
}

.modal-deco-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

.modal-deco-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.92;
  letter-spacing: -0.5px;
  color: var(--cream);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.75s, transform 0.6s ease 0.75s;
}

.modal-deco-title span {
  color: var(--gold);
  font-style: italic;
}

.modal-deco-divider {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
  transition: width 0.7s ease 0.9s;
}

.modal-deco-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.6);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 1s, transform 0.6s ease 1s;
}

.modal-panel.open .modal-deco-tag,
.modal-panel.open .modal-deco-title,
.modal-panel.open .modal-deco-sub {
  opacity: 1;
  transform: translateY(0);
}

.modal-panel.open .modal-deco-divider {
  width: 48px;
}

/* Right form panel */
.modal-form-wrap {
  padding: 28px 54px 100px 49px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: transparent;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.modal-close:hover {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.modal-form-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 1.2vw, 46px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.3px;
  color: var(--cream);
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
  margin-bottom: 20px;
}

.modal-form-title span {
  color: var(--gold);
  font-style: italic;
}

.modal-panel.open .modal-form-title {
  opacity: 1;
  transform: translateY(0);
}

.modal-form-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.789);
  margin-bottom: 32px;
  opacity: 0;
  transition: opacity 0.6s ease 0.55s;
}

.modal-panel.open .modal-form-sub {
  opacity: 1;
}

/* Staggered field reveal */
.modal-field {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.modal-panel.open .modal-field:nth-child(1) {
  transition-delay: 0.50s;
  opacity: 1;
  transform: translateY(0);
}

.modal-panel.open .modal-field:nth-child(2) {
  transition-delay: 0.60s;
  opacity: 1;
  transform: translateY(0);
}

.modal-panel.open .modal-field:nth-child(3) {
  transition-delay: 0.68s;
  opacity: 1;
  transform: translateY(0);
}

.modal-panel.open .modal-field:nth-child(4) {
  transition-delay: 0.76s;
  opacity: 1;
  transform: translateY(0);
}

.modal-panel.open .modal-field:nth-child(5) {
  transition-delay: 0.84s;
  opacity: 1;
  transform: translateY(0);
}

.modal-panel.open .modal-field:nth-child(6) {
  transition-delay: 0.92s;
  opacity: 1;
  transform: translateY(0);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

/* Reuse existing form styles but override within modal */
.modal-form .form-lbl {
  color: rgb(245, 240, 232);
  font-size: 10px;
  letter-spacing: 3px;
}

.modal-form .form-inp {
  border-bottom-color: rgba(201, 169, 110, 0.2);
  font-size: 13px;
  padding: 10px 0;
}

.modal-form .form-inp:focus {
  border-bottom-color: var(--gold);
}

.modal-submit {
  margin-top: 8px;
  background: var(--gold);
  color: var(--green-deep);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.modal-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.modal-submit:hover::after {
  transform: translateX(0);
}

.modal-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35);
}

.modal-privacy {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 300;
  color: #f5f0e8b0;
  line-height: 1.7;
  margin-top: 12px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease 1.1s;
}

.modal-panel.open .modal-privacy {
  opacity: 1;
}

/* Success state */
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}

.modal-success.show {
  display: flex;
}

.modal-success-icon {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.modal-success-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.3px;
}

.modal-success-title span {
  color: var(--gold);
  font-style: italic;
}

.modal-success-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.55);
  max-width: 300px;
}

@media (min-width: 901px) {
  .modal-panel {
    top: 56px;
    bottom: 56px;
    margin: 0 20px;
    /* overflow: hidden; */
  }

  .modal-inner {
    height: 100%;
    min-height: 0;
  }

  .modal-deco {
    min-height: 0;
    height: 100%;
  }

  .modal-deco-content {
    padding: 36px 34px;
  }

  .modal-deco-title {
    line-height: 1.14;
  }

  .modal-form-wrap {
    padding: 24px 48px 32px 44px;
  }

  .modal-form-title {
    margin-bottom: 12px;
  }

  .modal-form-sub {
    margin-bottom: 24px;
    margin-top: 15px;
  }

  .modal-form {
    gap: 14px;
  }

  .modal-row {
    gap: 18px;
  }

  .modal-submit {
    padding: 14px 28px;
  }

  .modal-privacy {
    margin-top: 10px;
  }
}

@keyframes successPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ── MODAL RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .modal-panel {
    top: 16px;
    bottom: 16px;
    margin: 0 12px;
    /* overflow: hidden; */
  }

  .modal-inner {
    grid-template-columns: 1fr;
    height: 100%;
    min-height: 0;
  }

  .modal-deco {
    display: none;
  }

  .modal-form-wrap {
    padding: 46px 24px 28px;
    justify-content: flex-start;
  }

  .modal-close {
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
  }

  .modal-form-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .modal-form-sub {
    font-size: 9px;
    letter-spacing: 1.6px;
    margin-bottom: 18px;
    margin-top: 28px;
  }

  .modal-form {
    gap: 12px;
  }

  .modal-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .modal-form .form-inp {
    font-size: 12px;
    padding: 8px 0;
  }

  .modal-submit {
    padding: 13px 18px;
    font-size: 9px;
  }

  .modal-privacy {
    margin-top: 8px;
    font-size: 8px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .modal-panel {
    top: 12px;
    bottom: 12px;
    margin: 0 10px;
  }

  .modal-form-wrap {
    padding: 42px 18px 24px;
  }

  .modal-form-title {
    font-size: 22px;
  }
}

/* ============================================================
   LOCATION SECTION — REVAMP
   ============================================================ */

/* Override the old two-column inner */
.loc-inner-new {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

/* Right panel — the rich connections hub */
.loc-hub {
  position: relative;
  background: var(--green-deep);
  border: 1px solid rgba(201, 169, 110, 0.15);
  overflow: hidden;
}

/* Subtle radial glow from centre */
.loc-hub::before {
  content: '';
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Map image top half */
.loc-hub-map {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.loc-hub-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.loc-hub-map img {
  display: none;
}

.loc-hub:hover .loc-hub-map img {
  display: none;
}

/* Gold pin overlay */
.loc-hub-map::after {
  display: none;
  content: '◆ EKANAM';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(13, 61, 46, 0.85);
  padding: 8px 16px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* Connectivity grid below map */
.loc-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 169, 110, 0.1);
  position: relative;
  z-index: 1;
}

.loc-hub-item {
  background: var(--green-deep);
  padding: 28px 21px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.loc-hub-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.loc-hub-item:hover {
  background: rgba(201, 169, 110, 0.05);
}

.loc-hub-item:hover::after {
  width: 100%;
}

.loc-hub-icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 4px;
}

.loc-hub-dist {
  font-family: var(--font-display);
  font-size: clamp(27px, 0.8vw, 20px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.5px;
  color: var(--gold);
  margin-top: 10px;
}

.loc-hub-unit {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.45);
  margin-left: 3px;
}

.loc-hub-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 2px;
}

.loc-hub-sub {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: rgb(255 255 255 / 74%);
  line-height: 1.5;
}

/* Gold divider footer inside hub */
.loc-hub-footer {
  padding: 18px 24px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(201, 169, 110, 0.03);
  position: relative;
  z-index: 1;
}

.loc-hub-footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: locPulse 2.5s ease-in-out infinite;
}

.loc-hub-footer-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffffba;
}

.loc-hub-footer-rera {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: #c9a96ed4;
  letter-spacing: 1px;
}

@keyframes locPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.5);
  }

  50% {
    transform: scale(1.3);
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(201, 169, 110, 0);
  }
}

/* Left side improvements — section header + accordion */
.loc-left {
  display: flex;
  flex-direction: column;
}

/* highlight strip on accordion hover */
.loc-cat-hd:hover .loc-cat-nm {
  color: var(--gold-light);
}

.private-deck {
  display: none;
}


/* ── LOCATION RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .loc-inner-new {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .loc-hub-map {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .loc-hub-grid {
    grid-template-columns: 1fr 1fr;
  }

  .loc-hub-map {
    height: 270px;
  }

  .loc-hub-dist {
    font-size: 24px;
  }

  .private-deck {
    display: block;
  }

  .loc-hub-footer {
    display: grid;
    grid-template-columns: 6px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 10px;
    align-items: center;
  }

  .loc-hub-footer-dot {
    grid-column: 1;
    grid-row: 1;
  }

  .loc-hub-footer-text {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    white-space: nowrap;
    font-size: clamp(6px, 4vw, 10px);
    letter-spacing: clamp(0.5px, 0.28vw, 2px);
  }

  .loc-hub-footer-rera {
    grid-column: 2;
    grid-row: 2;
    margin-left: 0;
  }

  .nav-logo .logo-main {
    font-size: 16px;
    margin-top: 0;
  }

  .phil-caption {
    font-size: 22px;
  }

  #about .phil-showcase .phil-media-stage {
    border-radius: 0;
  }

  #about .phil-showcase .phil-media-dots {
    top: 22px;
    right: 22px;
    gap: 8px;
  }

  #about .phil-showcase .phil-media-dots span {
    width: 22px;
  }

  #about .phil-showcase .phil-caption {
    padding: 44px 24px 24px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  #about .phil-showcase::after {
    right: 18px;
    bottom: 14px;
  }
}

/* ============================================================
   LIGHT THEME — CHARCOAL SECTION OVERRIDES
   (green-deep sections retain their cream text automatically)
   ============================================================ */

/* Tower section */
.tower-content .section-title {
  color: var(--green-deep);
}

.tower-content .section-body {
  color: rgba(28, 28, 28, 0.65);
}

/* Residences / Floor Plans */
#residences .section-title {
  color: var(--green-deep);
}

#residences .section-body {
  color: rgba(28, 28, 28, 0.65);
}

/* Developer */
#developer .section-title {
  color: var(--green-deep);
}

#developer .section-body {
  color: rgba(28, 28, 28, 0.65);
}

/* Footer borders */
footer {
  border-top-color: rgba(28, 28, 28, 0.12);
}

.fb {
  border-top-color: rgba(28, 28, 28, 0.08);
}

/* Stats dividers — swap to warm dark lines so they're visible on ivory */
.stats {
  border-top-color: rgba(28, 28, 28, 0.1);
  border-bottom-color: rgba(28, 28, 28, 0.1);
}

.stats-grid {
  background: rgba(28, 28, 28, 0.08);
}

.stat-item {
  background: var(--charcoal);
}

/* Residences tab strip */
.res-tabs {
  border-bottom-color: rgba(28, 28, 28, 0.15);
}

/* Tower feature rows — slightly more visible dividers on ivory */
.frow {
  border-bottom-color: rgba(28, 28, 28, 0.1);
}

.frow:hover {
  border-bottom-color: rgba(201, 169, 110, 0.5);
}

/* ── ARTISTIC IMPRESSION LABEL ──────────────────────────────── */
.hero-slide::after,
.phil-img::after,
.tower-img::after,
.sky-club::after,
.amen-card::after,
.int-item::after,
.modal-deco::after {
  content: 'Artistic Impression';
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 3;
}

/* Floor plan images sit on a light background — use dark text */
.res-plan::after {
  content: 'Artistic Impression';
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.35);
  pointer-events: none;
  z-index: 3;
}


button:disabled {
  cursor: not-allowed;
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}


.error {
  border-bottom: 2px solid red !important;
  animation: error .2s linear 5 alternate .1s;
}

/* Consent / terms block */
.modal-query-box {
  position: relative;
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  margin: 14px 0 22px !important;
  margin-left: 0 !important;
  padding: 0;
}

.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  border: 1px solid rgba(201, 169, 110, 0.48);
  border-radius: 4px;
  background: rgba(245, 240, 232, 0.03);
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.form-check-input:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.08);
}

.form-check-input:checked {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.form-check-input:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--green-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-check-input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.14);
}

.terms-and-condition-block {
  position: relative;
  min-width: 0;
}

.condition-label,
.sidecondition-label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.3px;
  color: rgba(245, 240, 232, 0.78);
  cursor: pointer;
  transition: color 0.3s ease;
}

.condition-label:hover,
.sidecondition-label:hover {
  color: var(--gold-light);
}

.check-box,
.sidecheck-box {
  display: none;
  position: absolute !important;
  left: 0;
  top: calc(100% + 12px);
  width: min(420px, calc(100vw - 72px));
  padding: 12px 14px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(8, 34, 27, 0.98) 0%, rgba(12, 50, 39, 0.98) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.2px;
  color: rgba(245, 240, 232, 0.58);
  white-space: normal;
  z-index: 12;
}

.check-box::before,
.sidecheck-box::before {
  content: '';
  position: absolute;
  left: 16px;
  top: -6px;
  width: 12px;
  height: 12px;
  background: rgba(8, 34, 27, 0.98);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-left: 1px solid rgba(201, 169, 110, 0.2);
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .modal-query-box {
    gap: 10px;
    margin: 12px 0 18px !important;
  }

  .condition-label,
  .sidecondition-label {
    font-size: 11px;
  }

  .check-box,
  .sidecheck-box {
    width: min(320px, calc(100vw - 56px));
    font-size: 9px;
    line-height: 1.6;
  }
}

/* ============================================================
   THANK YOU / PRIVACY PAGES
   ============================================================ */

body.legal-page {
  cursor: auto;
  min-height: 100vh;
  /* background:
    radial-gradient(circle at top left, rgba(201, 169, 110, 0.09), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 240, 232, 0.06), transparent 26%),
    var(--green-deep); */
  color: var(--cream);
}

body.legal-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 34, 27, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(201, 169, 110, 0.05), transparent 38%);
  pointer-events: none;
  z-index: 0;
}

.legal-page header,
.legal-page main {
  position: relative;
  z-index: 1;
}

.legal-nav {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: rgba(13, 61, 46, 0.92);
  border-bottom: 1px solid rgba(201, 169, 110, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.legal-logo-link {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  max-width: 320px;
}

.legal-logo-link .logo-main {
  font-size: 28px;
  line-height: 0.95;
  padding-bottom: 0;
}

.legal-logo-link .logo-sub {
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 3px;
}

.legal-home-link {
  color: var(--cream);
  border-color: rgba(201, 169, 110, 0.48);
}

.legal-home-link:hover {
  /* color: var(--green-deep); */
  font-weight: 600;
}

.legal-shell {
  padding: 42px 24px 72px;
}

.legal-hero,
.legal-content-shell {
  max-width: 1280px;
  margin: 0 auto;
}

.legal-page .section-title {
  font-size: clamp(50px, 1.5vw, 28px);
  line-height: 1.92;
  letter-spacing: -1.3px;
  margin-bottom: 0px;
}

.legal-page .section-body {
  max-width: 720px;
  color: rgba(245, 240, 232, 0.72);
  font-size: 16px;
  line-height: 1.95;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.14);
  background: linear-gradient(160deg, rgba(10, 42, 33, 0.96), rgba(12, 56, 43, 0.88));
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  transform: scale(1.04);
}

.legal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #102d2b 0%, rgba(13, 61, 46, 0.8) 44%, rgba(13, 61, 46, 0.42) 100%);
}

.legal-hero>* {
  position: relative;
  z-index: 1;
}

.legal-hero-thankyou {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 48px;
  padding: 72px;
}

.legal-hero-thankyou::before {
  /* background-image: url('../images/banner-1.jpg'); */
}

.legal-hero-policy {
  padding: 72px;
}

.legal-hero-policy::before {
  /* background-image: url('../images/tower-exterior.jpg'); */
}

.thank-you-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
}

.thank-you-card {
  padding: 28px;
  border: 1px solid rgba(201, 169, 110, 0.18);
  background: rgba(245, 240, 232, 0.04);
}

.thank-you-card-label {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}

.thank-you-card-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.72);
}

.thank-you-card-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.thank-you-note {
  max-width: 420px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.52);
}

.thank-you-actions {
  margin-top: 8px;
}

.legal-content-shell {
  margin-top: 32px;
}

.legal-card {
  padding: 48px;
  border: 1px solid rgba(201, 169, 110, 0.14);
  background: linear-gradient(180deg, rgba(9, 39, 31, 0.96) 0%, rgba(12, 52, 40, 0.93) 100%);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}

.legal-richtext h2,
.legal-richtext h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--cream);
}

.legal-richtext h2 {
  font-size: clamp(26px, 2vw, 34px);
  margin-bottom: 18px;
}

.legal-richtext h3 {
  font-size: clamp(18px, 2.35vw, 24px);
  margin: 34px 0 12px;
  color: var(--gold-light);
}

.legal-richtext p {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.7);
}

.legal-richtext strong {
  font-weight: 500;
  color: var(--cream);
}

.legal-divider {
  width: 100%;
  height: 1px;
  margin: 28px 0 8px;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.38), rgba(201, 169, 110, 0.04));
}




.location-map-desk {
  display: block;
}


.location-map-mob {
  display: none;
}


.banner-sec-logo {
  width: 200px;
}

@media (max-width: 1100px) {
  .legal-hero-thankyou {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .legal-nav {
    padding: 20px 24px;
    align-items: flex-start;
    gap: 18px;
  }

  .legal-shell {
    padding: 28px 16px 48px;
  }

  .legal-logo-link {
    max-width: 220px;
  }

  .legal-logo-link .logo-main {
    font-size: 22px;
  }

  .legal-logo-link .logo-sub {
    font-size: 8px;
    letter-spacing: 2.5px;
  }

  .legal-hero-thankyou,
  .legal-hero-policy,
  .legal-card {
    padding: 36px 24px;
  }

  .legal-page .section-title {
    font-size: clamp(24px, 11vw, 37px);
  }

  .legal-page .section-body,
  .legal-richtext p {
    font-size: 14px;
    line-height: 1.8;
  }

  .thank-you-note {
    font-size: 12px;
  }

  .fcopy {
    padding-bottom: 12px;
    padding-top: 8px;
  }



  .location-map-desk {
    display: none !important;
  }

  .location-map-mob {
    display: block;
  }

  .int-lbl {
    font-size: 18px;
  }

  .loc-hub-footer {
    padding: 18px 12px;
  }


  footer {
    padding: 45px 40px 71px;
  }

  .ft {
    align-items: center;
    margin-bottom: 26px;
  }

  .footer-rera {
    flex-direction: column;
    gap: 16px;
  }

  .footer-rera-qr {
    flex-basis: auto;
    width: 82px;
  }

  .phil-img {
    height: 400px;
  }

  .banner-sec-logo {
    width: 168px;
  }


  .footer-rera {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 15px;
  }

}


.tower-img::after {
  color: #c9a96e;
}


.project-logo {
  width: 195px;
}