/* ============================================
   BIRLA TRIMAYA — style.css
   ============================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E6C0;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-4: #242424;
  --white: #FAFAF8;
  --muted: #888880;
  --accent: #2A4A3E;
  --wa-green: #25D366;
  --call-blue: #2196F3;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* ===== CUSTOM CURSOR (dot only, no ring) ===== */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}
.cursor.hover {
  width: 20px;
  height: 20px;
  background: var(--gold-light);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 16px 60px;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-decoration: none;
}
.nav-logo span { color: var(--white); font-weight: 600; }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin: 20px 0; }
.mobile-nav ul li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.mobile-nav ul li a:hover { color: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(42,74,62,0.3) 0%, transparent 50%),
    linear-gradient(to top, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.15) 100%),
    url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.13); }
}

/* Particles */
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* Hero Badge */
.hero-badge {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  width: 160px; height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.badge-ring {
  position: absolute;
  width: 160px; height: 160px;
  animation: rotateBadge 20s linear infinite;
}
.badge-text {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  fill: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.badge-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.badge-inner strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.badge-inner span {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 820px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 300;
  line-height: 0.93;
  margin-bottom: 12px;
  animation: fadeUp 1s ease 0.4s both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 44px;
  letter-spacing: 0.05em;
  animation: fadeUp 1s ease 0.6s both;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

.btn-primary {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 18px 44px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 20px 40px rgba(201,168,76,0.35); }
.btn-outline {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 17px 36px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-stats {
  position: absolute;
  bottom: 80px; right: 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 2;
  animation: fadeUp 1s ease 1s both;
}
.stat {
  text-align: right;
  border-right: 2px solid rgba(201,168,76,0.5);
  padding-right: 20px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: fadeUp 1s ease 1.2s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.5); transform-origin: top; }
}
.hero-scroll span {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  flex-shrink: 0;
}
.marquee-dot { color: rgba(10,10,10,0.4); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--dark-2);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
}
.about-strip-divider { background: rgba(201,168,76,0.2); }
.strip-item {
  padding: 0 50px;
  text-align: center;
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { padding-right: 0; }
.strip-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.strip-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.strip-item p { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ===== SECTION COMMONS ===== */
.section { padding: 120px 60px; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.section-label::after {
  content: '';
  height: 1px; width: 60px;
  background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ===== OVERVIEW ===== */
.overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.overview-image {
  position: relative;
  overflow: hidden;
}
.overview-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.overview-image:hover img { transform: scale(1.06); }
.overview-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(10,10,10,0.5));
}
.overview-image-tag {
  position: absolute;
  bottom: 30px; left: 30px;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 8px 18px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.overview-content {
  background: var(--dark-3);
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.overview-content p {
  font-size: 15px;
  line-height: 1.95;
  color: #AAA89F;
  margin-bottom: 40px;
}
.overview-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.spec-card {
  background: var(--dark-4);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.spec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s;
}
.spec-card:hover { border-color: rgba(201,168,76,0.4); }
.spec-card:hover::before { height: 100%; }
.spec-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.spec-key {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* ===== UNITS ===== */
.units-section { background: var(--dark-2); }
.units-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
  font-style: italic;
  letter-spacing: 0.02em;
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.units-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.unit-card {
  background: var(--dark-3);
  padding: 46px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  display: flex;
  flex-direction: column;
}
.unit-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
}
.unit-card:hover .unit-glow { opacity: 1; }
.unit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.unit-card:hover::before { transform: scaleX(1); }
.unit-card:hover { background: var(--dark-4); }
.featured-unit {
  background: var(--dark-4);
  border: 1px solid rgba(201,168,76,0.2);
}
.featured-unit::before { transform: scaleX(1); }
.unit-card-luxury {
  background: linear-gradient(160deg, #1A1208, #0F0A02);
  border: 1px solid rgba(201,168,76,0.3);
}
.unit-card-luxury::before {
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(1);
}
.unit-card-luxury .unit-glow {
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
}
.unit-card-luxury:hover { background: linear-gradient(160deg, #211508, #130C02); }

.unit-popular-badge {
  position: absolute;
  top: 20px; right: -32px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 44px;
  transform: rotate(35deg);
}
.unit-luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 5px 12px;
  width: fit-content;
}
.unit-type {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.4;
}
.unit-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}
.unit-size {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}
.unit-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
  line-height: 1.2;
}
.unit-card-luxury .unit-price { font-size: 24px; }
.unit-price-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  font-family: 'Syne', sans-serif;
}
.unit-features {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}
.unit-features li {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.unit-features li::before {
  content: '◆';
  font-size: 5px;
  color: var(--gold);
  flex-shrink: 0;
}
.unit-btn {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 11px 20px;
  display: inline-block;
  transition: all 0.3s;
  margin-top: auto;
  text-align: center;
}
.unit-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ===== AMENITIES ===== */
.amenities-section { background: var(--dark); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.amenity-item {
  background: var(--dark-3);
  padding: 42px 30px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.amenity-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(201,168,76,0.1), transparent);
  transition: height 0.4s;
}
.amenity-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.amenity-item:hover::after { height: 100%; }
.amenity-icon { font-size: 34px; margin-bottom: 16px; display: block; }
.amenity-name {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

/* ===== LOCATION ===== */
.location-section {
  background: var(--dark-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.location-content {
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-list {
  list-style: none;
  margin-top: 40px;
}
.location-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s;
  cursor: default;
}
.location-list li:hover { color: var(--white); padding-left: 8px; }
.location-list li .place { font-weight: 500; color: var(--white); }
.location-list li .dist {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold-light);
}
.location-map {
  position: relative;
  overflow: hidden;
  background: var(--dark-4);
}
.map-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.55);
  flex-direction: column;
  gap: 18px;
}
.map-pin {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(201,168,76,0.45);
  animation: pinPulse 2s ease-in-out infinite;
}
.map-pin span { transform: rotate(45deg); font-size: 22px; }
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 10px 60px rgba(201,168,76,0.8); }
}
.map-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--white);
  text-align: center;
}
.map-label span {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 6px;
}
.map-btn { cursor: pointer; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--dark); padding: 120px 0; }
.gallery-header { padding: 0 60px; margin-bottom: 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 290px 290px;
  gap: 3px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item.featured { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.09); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.4s;
}
.gallery-item-overlay span {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(10,10,10,0.5); }
.gallery-item:hover .gallery-item-overlay span { opacity: 1; transform: translateY(0); }

/* ===== ENQUIRY SECTION ===== */
.enquiry-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.enquiry-left {
  background: linear-gradient(135deg, var(--accent) 0%, #152820 100%);
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.enquiry-left::before {
  content: 'TRIMAYA';
  position: absolute;
  bottom: -40px; right: -30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 130px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  line-height: 1;
}
.enquiry-left .section-label { color: var(--gold-light); }
.enquiry-left .section-label::after { background: var(--gold-light); }
.enquiry-left p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.contact-item-link {
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 18px;
  border-radius: 2px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-item-link:hover {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.05);
  transform: translateX(4px);
}
.contact-item-link.whatsapp-contact:hover { border-color: rgba(37,211,102,0.5); background: rgba(37,211,102,0.06); }
.contact-item-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.whatsapp-icon-box { border-color: rgba(37,211,102,0.4); }
.contact-label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-value {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
}

.enquiry-right {
  background: var(--dark-3);
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.enquiry-right h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 40px;
  color: var(--white);
}
.enquiry-right h3 em { color: var(--gold-light); font-style: italic; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--dark-4);
  padding-right: 42px;
  cursor: pointer;
}
.form-group select option { background: #1A1A1A; color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4A4A48; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 20px 40px rgba(201,168,76,0.3); }

.success-msg {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.success-msg.show { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.success-icon {
  width: 72px; height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  color: var(--gold);
  animation: scaleIn 0.5s ease;
}
@keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }
.success-msg h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.success-msg p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 70px 60px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-size: 26px;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
}
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.85; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  color: var(--muted);
}
.whatsapp-social:hover { background: rgba(37,211,102,0.1); border-color: #25D366; color: #25D366; }
.call-social:hover { background: rgba(33,150,243,0.1); border-color: var(--call-blue); color: var(--call-blue); }
.email-social:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold-light); }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-rera {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: var(--dark-3);
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.2);
}

/* ===== FLOATING BUTTONS ===== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column-reverse;
  gap: 14px;
  z-index: 500;
}
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: visible;
}
.float-btn:hover { transform: scale(1.12); }
.float-label {
  position: absolute;
  left: 68px;
  background: rgba(10,10,10,0.92);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
  pointer-events: none;
}
.float-btn:hover .float-label { opacity: 1; transform: translateX(0); }

/* WhatsApp Float */
.whatsapp-float {
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
.whatsapp-float:hover { box-shadow: 0 12px 32px rgba(37,211,102,0.65); }
.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulsate 2.5s ease-out infinite;
}
@keyframes pulsate {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* WhatsApp typing bubble */
.float-btn-group { position: relative; }
.wa-typing-bubble {
  position: absolute;
  bottom: 70px; left: 0;
  background: #202C33;
  border-radius: 12px 12px 12px 2px;
  padding: 12px 16px;
  width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(37,211,102,0.2);
}
.wa-typing-bubble.visible { display: flex; animation: bubbleIn 0.4s ease; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(8px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.typing-dots { display: flex; gap: 4px; align-items: center; padding: 2px 0; }
.typing-dots span {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1.2); opacity: 1; }
}
.wa-preview-text {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  min-height: 18px;
}

/* Call Float */
.call-float {
  background: var(--call-blue);
  box-shadow: 0 8px 24px rgba(33,150,243,0.4);
}
.call-float:hover { box-shadow: 0 12px 32px rgba(33,150,243,0.6); }

/* AI Float */
.ai-float {
  background: linear-gradient(135deg, #6C3483, #1A237E, #0D47A1);
  box-shadow: 0 8px 24px rgba(108,52,131,0.5);
}
.ai-float:hover { box-shadow: 0 12px 32px rgba(108,52,131,0.7); }
.ai-orb {
  width: 32px; height: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-orb-inner {
  width: 20px; height: 20px;
  background: radial-gradient(circle, #E040FB, #7C4DFF);
  border-radius: 50%;
  animation: orbPulse 2s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(224,64,251,0.6); }
  50% { transform: scale(1.15); box-shadow: 0 0 20px rgba(224,64,251,1); }
}
.ai-ring {
  position: absolute;
  inset: -4px;
  border: 1.5px solid rgba(224,64,251,0.5);
  border-radius: 50%;
  animation: ringRotate 3s linear infinite;
}
.ai-ring::after {
  content: '';
  position: absolute;
  top: -2px; left: 50%;
  width: 5px; height: 5px;
  background: #E040FB;
  border-radius: 50%;
  transform: translateX(-50%);
}
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== AI ASSISTANT PANEL ===== */
.ai-assistant {
  position: fixed;
  bottom: 110px; left: 30px;
  width: 360px;
  background: var(--dark-3);
  border: 1px solid rgba(108,52,131,0.4);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(224,64,251,0.1);
  z-index: 499;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 500px;
}
.ai-assistant.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.ai-header {
  background: linear-gradient(135deg, #3A1D50, #1A1463);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(224,64,251,0.2);
}
.ai-header-left { display: flex; align-items: center; gap: 12px; }
.ai-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C3483, #1A237E);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(224,64,251,0.5);
  flex-shrink: 0;
}
.ai-avatar-orb {
  width: 18px; height: 18px;
  background: radial-gradient(circle, #E040FB, #7C4DFF);
  border-radius: 50%;
  animation: orbPulse 2s ease-in-out infinite;
}
.ai-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.ai-status {
  font-size: 11px;
  color: #25D366;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.ai-status-dot {
  width: 7px; height: 7px;
  background: #25D366;
  border-radius: 50%;
  animation: statusBlink 2s ease-in-out infinite;
}
@keyframes statusBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.ai-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--muted);
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ai-close:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.ai-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(108,52,131,0.3) transparent;
}
.ai-msg { display: flex; flex-direction: column; max-width: 88%; }
.ai-msg.bot { align-self: flex-start; }
.ai-msg.user { align-self: flex-end; }
.ai-msg-bubble {
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
}
.ai-msg.bot .ai-msg-bubble {
  background: var(--dark-4);
  border: 1px solid rgba(108,52,131,0.25);
  color: var(--white);
  border-radius: 4px 12px 12px 12px;
}
.ai-msg.user .ai-msg-bubble {
  background: linear-gradient(135deg, #5C2D8C, #2A1B6B);
  color: var(--white);
  border-radius: 12px 4px 12px 12px;
}
.ai-msg-time {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  padding: 0 4px;
}
.ai-msg.user .ai-msg-time { text-align: right; }

.ai-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0 8px;
}
.ai-quick-replies button {
  background: rgba(108,52,131,0.15);
  border: 1px solid rgba(108,52,131,0.35);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.ai-quick-replies button:hover { background: rgba(108,52,131,0.4); border-color: rgba(224,64,251,0.5); }

.ai-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 8px 12px;
  background: var(--dark-4);
  border-radius: 4px 12px 12px 12px;
  width: fit-content;
  border: 1px solid rgba(108,52,131,0.2);
}
.ai-typing span {
  width: 7px; height: 7px;
  background: rgba(224,64,251,0.7);
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite;
}
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }

.ai-input-area {
  display: flex;
  padding: 12px 14px;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--dark-4);
}
.ai-input-area input {
  flex: 1;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 20px;
  outline: none;
  transition: border-color 0.3s;
}
.ai-input-area input:focus { border-color: rgba(224,64,251,0.5); }
.ai-input-area input::placeholder { color: #4A4A48; }
.ai-send {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #6C3483, #1A237E);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.ai-send:hover { transform: scale(1.08); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 20px 30px; }
  nav.scrolled { padding: 14px 30px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 30px 80px; }
  .hero-badge { right: 24px; }
  .hero-stats { right: 24px; }
  .section { padding: 80px 30px; }
  .about-strip { grid-template-columns: 1fr; padding: 50px 30px; gap: 32px; }
  .about-strip-divider { display: none; }
  .strip-item { padding: 0 !important; }
  .overview { grid-template-columns: 1fr; }
  .overview-image { height: 320px; }
  .overview-content { padding: 60px 40px; }
  .units-grid, .units-grid-4 { grid-template-columns: 1fr !important; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .location-section { grid-template-columns: 1fr; }
  .location-map { height: 300px; }
  .location-content { padding: 60px 40px; }
  .gallery-section { padding: 80px 0; }
  .gallery-header { padding: 0 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.featured { grid-row: span 1; height: 260px; }
  .gallery-item { height: 200px; }
  .enquiry-section { grid-template-columns: 1fr; }
  .enquiry-left { padding: 60px 40px; }
  .enquiry-right { padding: 60px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { display: none; }
  .hero-badge { display: none; }
  .hero-scroll { display: none; }
  .ai-assistant { width: calc(100vw - 30px); left: 15px; bottom: 100px; }
  .floating-actions { left: 16px; bottom: 20px; gap: 10px; }
  .float-btn { width: 52px; height: 52px; }
  .footer-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 200px !important; }
}
