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

:root {
  --ivory: #f2f0eb;
  --ivory-dark: #e8e4dc;
  --ivory-deeper: #ddd8ce;
  --emerald: #7a4a00;
  --emerald2: #c8860a;
  --emerald3: #e6a020;
  --emerald-pale: rgba(200, 134, 10, 0.1);
  --emerald-glow: rgba(200, 134, 10, 0.3);
  --silver: #8a9aaa;
  --silver2: #b0c0cc;
  --silver-pale: rgba(138, 154, 170, 0.15);
  --champagne: #c8b896;
  --champagne2: #ddd0b4;
  --ink: #0e1e18;
  --ink-soft: #2a3c34;
  --cream: #f2f0eb;
  --white-warm: #fcfbf7;
  --glass: rgba(242, 240, 235, 0.7);
}

html {
  scroll-behavior: smooth;
}

/* Slideshow Styles */
.slideshow-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  height: 70vh;
  border-radius: 4px;
  background: var(--ivory-dark);
}

.slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide-blur-bg {
  position: absolute;
  top: -10%; left: -10%;
  width: 120%; height: 120%;
  background-size: cover;
  background-position: center;
  filter: blur(30px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 30, 24, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-family: serif;
  font-size: 24px;
}

.slide-nav:hover {
  background: var(--emerald2);
  transform: translateY(-50%) scale(1.1);
}

.slide-nav.prev { left: 30px; }
.slide-nav.next { right: 30px; }

.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
body {
  background-color: var(--ivory);
  font-family: 'Raleway', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--emerald2);
  border-radius: 50%;
  transition: transform 0.1s ease;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--emerald2);
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0.5;
}

@media (pointer: coarse),
(max-width: 1024px) {

  .cursor,
  .cursor-ring {
    display: none !important;
  }

  body {
    cursor: auto !important;
  }
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
  opacity: 0.3;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  border-bottom: none;
  transition: all 0.4s ease;
  --nav-text-color: #fff;
  --nav-divider-color: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
}

nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 64px;
  border-bottom: 1px solid rgba(26, 74, 58, 0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  --nav-text-color: black;
  --nav-divider-color: linear-gradient(90deg, rgba(26, 74, 58, 0.5) 0%, rgba(26, 74, 58, 0.1) 100%);
}

nav.nav-solid {
  background: var(--cream);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  height: 70px;
  border-bottom: 1px solid rgba(26, 74, 58, 0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  --nav-text-color: black;
  --nav-divider-color: linear-gradient(90deg, rgba(26, 74, 58, 0.5) 0%, rgba(26, 74, 58, 0.1) 100%);
}

nav.hidden {
  transform: translateY(-100%);
}

.nav-logo-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.3s ease;
}

.nav-logo-link:hover {
  opacity: 0.8;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-hex {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--emerald2), var(--emerald3));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--nav-text-color);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  -webkit-text-stroke: 0.4px rgba(0,0,0,0.2);
}

.reg-sup {
  font-size: 0.3em;
  vertical-align: super;
  margin-left: 3px;
  margin-top: -3px;
}

.nav-logo-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--nav-text-color);
  text-transform: uppercase;
  padding-left: 3px;
  opacity: 0.9;
}

.nav-divider {
  flex: 1;
  height: 1px;
  background: var(--nav-divider-color);
  margin: 0 40px;
}

@media(max-width: 1100px) {
  .nav-divider {
    display: none;
  }
}

.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: none;
  background: none;
  padding: 10px 0;
  border: none;
  color: var(--nav-text-color);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.35em;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  -webkit-text-stroke: 0.4px rgba(0,0,0,0.2);
}

.nav-menu-btn:hover {
  color: var(--emerald3);
  transform: translateX(-4px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--nav-text-color);
  transition: all 0.3s;
}

.hamburger span:last-child {
  width: 18px;
  background: var(--nav-text-color);
}

/* ── HERO ── */
.hero {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  height: auto;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 1;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 30, 24, 0.3) 0%, rgba(14, 30, 24, 0.6) 100%);
  z-index: 2;
}

/* Vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(14, 30, 24, 0.15) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  padding: 40px 20px;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--champagne2);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.hero-series {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--champagne2);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white-warm);
  line-height: 0.9;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.2s forwards;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255,255,255,0.1);
  -webkit-text-stroke: 0.8px rgba(0,0,0,0.35);
}

.hero-title .super {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--emerald2);
  font-weight: 500;
}

.hero-title-sub {
  color: var(--emerald2);
  display: block;
  font-size: 0.58em;
  letter-spacing: 0.28em;
  margin-top: 8px;
  font-weight: 400;
}

.silver-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}

.silver-rule::before,
.silver-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, transparent, var(--emerald2), transparent);
}

.silver-rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--emerald2);
  transform: rotate(45deg);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  animation: fadeUp 1s ease 2s forwards;
  max-width: 500px;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 2.3s forwards;
}

.btn-primary {
  padding: 16px 44px;
  background: var(--emerald);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  border: none;
  cursor: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  background: var(--emerald2);
  box-shadow: 0 8px 32px var(--emerald-glow);
}

.btn-outline {
  padding: 13px 40px;
  background: transparent;
  color: var(--ink);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  border: 1px solid var(--emerald2);
  cursor: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--emerald-pale);
}

/* ── CITYSCAPE ── */
.cityscape-wrap {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  animation: riseUp 1.8s ease 2.5s forwards;
  z-index: 5;
  padding: 0 24px;
  filter: brightness(1.2) contrast(1.1);
}

.cityscape {
  position: relative;
  width: 640px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 640/190;
}

.city-mist {
  position: absolute;
  bottom: -10px;
  left: -80px;
  right: -80px;
  height: 90px;
  background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(242, 240, 235, 0.97) 0%, rgba(242, 240, 235, 0.6) 50%, transparent 100%);
  pointer-events: none;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 3.5s forwards;
  z-index: 10;
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--emerald2);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--emerald2) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── SECTIONS ── */
.section {
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--emerald);
  text-transform: uppercase;
  padding-top: 60px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 48px;
}

.section-title em,
.hero-title em {
  position: relative;
  display: inline-block;
  color: var(--emerald2);
  font-style: italic;
  padding: 0 12px;
  z-index: 1;
}

.section-title em::after,
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: -4px;
  width: calc(100% + 8px);
  height: 42%;
  background: linear-gradient(90deg, 
    rgba(212, 175, 55, 0.0) 0%, 
    rgba(212, 175, 55, 0.5) 15%, 
    rgba(212, 175, 55, 0.75) 50%, 
    rgba(212, 175, 55, 0.5) 85%, 
    rgba(212, 175, 55, 0.0) 100%
  );
  z-index: -1;
  transform: skewX(-12deg);
  border-radius: 2px;
  pointer-events: none;
}

/* ── PROJECT CARDS ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.project-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
  transition: all 0.3s ease;
}

.project-card-link:hover {
  transform: translateY(-5px);
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: none;
  background: var(--ink);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-card.is-upcoming {
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.project-card.is-upcoming:hover {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

.project-card.is-upcoming .upcoming-badge {
  background: rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-card:hover .card-bg {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 22, 18, 0.4) 60%, rgba(10, 22, 18, 0.95) 100%);
  transition: opacity 0.4s ease;
}

.project-card:hover .card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(10, 22, 18, 0.5) 50%, rgba(10, 22, 18, 0.98) 100%);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-card:hover .card-content {
  transform: translateY(0);
}

.card-tag {
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--champagne2);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-name {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.card-loc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.card-rera {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}

.card-details {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  border-top: 0.5px solid rgba(255, 255, 255, 0.15);
  padding-top: 10px;
}

.project-card.plotting {
  background: linear-gradient(135deg, var(--emerald-glow) 0%, var(--emerald-pale) 100%);
  display: flex !important;
  align-items: flex-end;
}

.project-card.plotting .card-bg {
  display: none;
}

.project-card:hover .card-rera {
  opacity: 1;
}

/* Scan border on hover */
.project-card::before,
.project-card::after {
  content: '';
  position: absolute;
  z-index: 5;
  width: 22px;
  height: 22px;
  opacity: 0;
  transition: opacity 0.4s;
}

.project-card::before {
  top: 14px;
  left: 14px;
  border-top: 1.5px solid var(--emerald3);
  border-left: 1.5px solid var(--emerald3);
}

.project-card::after {
  bottom: 14px;
  right: 14px;
  border-bottom: 1.5px solid var(--champagne);
  border-right: 1.5px solid var(--champagne);
}

.project-card:hover::before,
.project-card:hover::after {
  opacity: 1;
}

/* ── STATS ── */
.stats-section {
  background: var(--emerald);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

/* ── CONNECTIVITY ── */
.connectivity-section {
  background: var(--ivory-dark);
  padding: 0 48px;
  border-top: 1px solid rgba(26, 74, 58, 0.1);
}

.connectivity-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.connectivity-map-box {
  position: relative;
  background: white;
  padding: 12px;
  border: 1px solid rgba(26, 74, 58, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.connectivity-map-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.connectivity-map-box:hover img {
  transform: scale(1.04);
}

.connectivity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.conn-item {
  background: white;
  padding: 28px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.conn-item:hover {
  background: var(--ivory-deeper);
  border-bottom-color: var(--emerald2);
  transform: translateY(-4px);
}

.conn-icon {
  font-size: 18px;
  color: var(--emerald2);
  margin-bottom: 12px;
}

.conn-label {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 4px;
}

.conn-dist {
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .connectivity-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* ── SPECIFICATIONS ── */
.specs-section {
  background: #fbfbfc;
  padding: 0 48px 60px 48px;
  position: relative;
  overflow: hidden;
}

.specs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(26, 74, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 74, 58, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.specs-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.spec-card {
  background: white;
  padding: 40px;
  border: 1px solid rgba(26, 74, 58, 0.08);
  position: relative;
  transition: all 0.4s ease;
}

.spec-card:hover {
  border-color: var(--emerald2);
  box-shadow: 0 12px 32px rgba(26, 74, 58, 0.06);
}

.spec-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--emerald);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-title::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--emerald2);
}

.spec-list {
  list-style: none;
}

.spec-item {
  margin-bottom: 24px;
}

.spec-item-label {
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald2);
  margin-bottom: 6px;
}

.spec-item-text {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.spec-vertical-tag {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(26, 74, 58, 0.15);
  white-space: nowrap;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--ivory-dark);
  padding: 60px 48px;
  text-align: center;
  border-top: 1px solid rgba(26, 74, 58, 0.1);
}

/* ── FOOTER ── */
footer {
  background: var(--emerald);
  padding: 80px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 300px;
}

.footer-col.contact {
  min-width: 200px;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
  margin-left: -12px;
}




.footer-address {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Raleway', sans-serif;
}

.footer-logo-name {

  font-family: 'Cinzel', serif;
  font-size: 48px;
  color: var(--emerald2);
  letter-spacing: 0.15em;
  display: flex;
  align-items: flex-start;
  -webkit-text-stroke: 0.6px rgba(0,0,0,0.3);
  text-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.footer-reg-sup {
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 6px;
  margin-top: -12px;
}

.footer-logo-tag {
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--emerald2);
  opacity: 0.8;
  margin-top: 4px;
}

.footer-rera {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  flex: 1;
  min-width: 300px;
}


.footer-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.credai-badge {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
}

.credai-sub {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.22);
  text-align: right;
}

.super6-badge {
  margin-top: 8px;
  text-align: right;
}

.super6-series {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--champagne2);
}

.super6-num {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: var(--champagne);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

/* ── MENU DRAWER ── */
.menu-overlay {
  position: fixed;
  top: 76px;
  right: 48px;
  z-index: 300;
  min-width: 220px;
  background: var(--ivory);
  border: 1px solid var(--emerald2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8px 0;
  transform: translateY(-10px) scale(0.98);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-shadow: 0 16px 48px rgba(14, 30, 24, 0.15);
}

.menu-overlay.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.menu-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.menu-link {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--ink);
  text-decoration: none;
  cursor: none;
  transition: all 0.3s ease;
  padding: 16px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(26, 74, 58, 0.08);
  display: block;
  width: 100%;
}

.menu-link:last-child {
  border-bottom: none;
}

.menu-link:hover,
.menu-link.active {
  color: var(--emerald2);
  letter-spacing: 0.2em;
  background: rgba(26, 74, 58, 0.04);
}

/* Sub-menu styling */
.menu-item-parent {
  position: relative;
}

.menu-item-parent::after {
  content: '▾';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  transition: transform 0.3s;
}

.menu-item-parent.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.sub-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(26, 74, 58, 0.02);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sub-menu.open {
  max-height: 300px;
  border-bottom: 1px solid rgba(26, 74, 58, 0.08);
}

.sub-menu-link {
  display: block;
  padding: 12px 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
}

.sub-menu-link:hover {
  color: var(--emerald2);
  background: rgba(26, 74, 58, 0.04);
}

.menu-close {
  display: none;
}

/* ── FABs ── */
.fab-whatsapp {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  cursor: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.fab-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.fab-chat {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  background: var(--emerald2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  cursor: none;
  box-shadow: 0 4px 20px var(--emerald-glow);
  transition: transform 0.3s;
}

.fab-chat:hover {
  transform: scale(1.1);
}

.fab-chat svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

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

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

/* ── MOBILE ── */
@media(max-width:900px) {
  nav {
    padding: 0 24px;
    height: 70px;
  }

  .nav-logo {
    align-items: center !important;
  }

  .nav-logo img {
    height: 48px !important;
  }

  .menu-overlay {
    right: 24px;
    top: 76px;
  }

  .hero {
    min-height: 80vh;
  }


  .hero-content {
    top: 60% !important;
    transform: translate(-50%, -40%) !important;
    padding: 0 24px;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(24px, 8vw, 38px) !important;
    line-height: 1.1;
    margin-bottom: 24px;
    width: 100%;
  }

  .hero-subtitle {
    font-size: 14px !important;
    max-width: 90%;
    margin-top: 0;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }

  .section {
    padding: 60px 24px !important;
  }

  .section-label {
    padding-top: 0;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(32px, 7vw, 42px) !important;
    margin-bottom: 32px;
  }

  .projects-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
    padding: 0;
  }

  .specs-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .amenities-wrap {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
  }

  .footer-col {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin: 0 auto 24px;
    height: 60px !important;
  }

  .footer-address {
    text-align: center;
  }

  .footer-rera {
    text-align: center;
    margin: 0;
    max-width: 100% !important;
    line-height: 1.8;
    padding: 0;
  }


  footer {
    padding: 60px 24px;
  }

  /* Gallery Mobile Refinement */
  .slide img {
    object-fit: contain !important;
  }
}

@media(max-width:600px) {
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat-item {
    border-left: none;
    border-bottom: 1px solid rgba(200, 184, 150, 0.2);
    padding: 32px 0;
    text-align: center;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 16px 24px !important;
  }

  .connectivity-wrap {
    flex-direction: column;
  }

  .connectivity-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── RESPONSIVE UTILITIES ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

@media(max-width:900px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .grid-auto {
    gap: 24px !important;
  }
}

@media(max-width:480px) {
  .hero-img {
    height: 100%;
    object-fit: cover;
  }
  
  .section {
    padding: 40px 20px !important;
  }
}

/* ── CONTACT PAGE RESPONSIVE ── */
.contact-grid-responsive {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

@media(max-width: 900px) {
  .contact-grid-responsive {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-flex-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

@media(max-width: 600px) {
  .contact-flex-actions {
    gap: 12px;
  }
  
  .contact-flex-actions .btn-primary,
  .contact-flex-actions .btn-outline {
    width: 100%;
    margin: 0;
  }
}

/* ── CHATBOT ── */
.chat-window {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 380px;
  height: 550px;
  max-height: calc(100vh - 120px);
  background: var(--ivory);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(10, 22, 18, 0.2), 0 0 0 1px rgba(26, 74, 58, 0.1);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-window.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

@media(max-width: 480px) {
  .chat-window {
    width: calc(100vw - 48px);
    right: 24px;
    bottom: 90px;
  }
}

.chat-header {
  background: linear-gradient(135deg, var(--emerald), var(--ink));
  padding: 20px 24px;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--emerald2), var(--emerald3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.chat-header-avatar svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.chat-header-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.chat-header-status {
  font-size: 11px;
  color: var(--champagne2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-status-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25d366;
}

.chat-close {
  background: none;
  border: none;
  color: var(--ivory);
  cursor: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.chat-close:hover {
  opacity: 1;
}

.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--ivory);
  scroll-behavior: smooth;
}

.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  animation: fadeUp 0.3s ease forwards;
}

.chat-message.bot {
  background: var(--white-warm);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  border: 1px solid rgba(26,74,58,0.05);
}

.chat-message.user {
  background: var(--emerald);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(122, 74, 0, 0.15);
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  animation: fadeUp 0.3s ease forwards;
}

.chat-quick-reply {
  background: transparent;
  border: 1px solid var(--emerald2);
  color: var(--ink);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.chat-quick-reply:hover {
  background: var(--emerald-pale);
  color: var(--emerald);
}

.chat-input-area {
  padding: 16px 20px;
  background: #fff;
  border-top: 1px solid rgba(26, 74, 58, 0.08);
  display: flex;
  gap: 12px;
  align-items: center;
}

.chat-input {
  flex: 1;
  border: none;
  background: var(--ivory);
  padding: 12px 16px;
  border-radius: 20px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: box-shadow 0.3s;
}

.chat-input:focus {
  box-shadow: inset 0 0 0 1px var(--emerald2);
}

.chat-send {
  background: var(--emerald2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: none;
  transition: all 0.3s;
}

.chat-send:hover {
  background: var(--emerald);
  transform: scale(1.05);
}

.chat-send svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transform: translateX(1px);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 4px 8px;
  align-items: center;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--silver);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
  0%, 80%, 100% { transform: scale(0.5); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}
