/* ===== TULIP INFINITY EVANA — Luxury Real Estate Website ===== */

:root {
  --navy: #0B1D3A;
  --navy-light: #132a52;
  --navy-dark: #071226;
  --gold: #C5A55A;
  --gold-light: #dfc27a;
  --gold-dark: #a8893f;
  --cream: #FAF8F5;
  --cream-dark: #f0ebe3;
  --white: #FFFFFF;
  --black: #1a1a1a;
  --gray-100: #f7f7f7;
  --gray-200: #e9e9e9;
  --gray-300: #d4d4d4;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-600: #444444;
  --gray-700: #333333;
  --shadow-sm: 0 2px 8px rgba(11,29,58,0.06);
  --shadow-md: 0 4px 20px rgba(11,29,58,0.08);
  --shadow-lg: 0 8px 40px rgba(11,29,58,0.12);
  --shadow-xl: 0 12px 60px rgba(11,29,58,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

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

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.section-title .accent { color: var(--gold); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-cta:hover { background: var(--gold-light); }

.nav-cta svg { flex-shrink: 0; }

.nav-mobile-group { display: none; }

.nav-hamburger {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,0.85) 0%, rgba(11,29,58,0.4) 50%, rgba(11,29,58,0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 165, 90, 0.2);
  border: 1px solid rgba(197, 165, 90, 0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title .accent { color: var(--gold); }

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-num .plus { font-size: 20px; }

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 165, 90, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 165, 90, 0.1);
}

.btn-ghost {
  color: var(--navy);
  border: 2px solid var(--navy);
  background: transparent;
}

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

.btn-full { width: 100%; }

.btn-large { padding: 18px 48px; font-size: 16px; }

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-rera {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.hero-rera strong { color: rgba(255,255,255,0.8); }

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

/* ===== OVERVIEW ===== */
.overview {
  padding: 100px 0;
  background: var(--white);
}

.overview-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.overview-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.overview-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
}

.overview-badge svg { width: 18px; height: 18px; }

.overview-content { padding-right: 40px; }

.overview-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.overview-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.overview-title .gold { color: var(--gold); }

.overview-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.overview-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.overview-stat { text-align: center; }

.overview-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}

.overview-stat-label {
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  display: block;
}

.overview-stat-divider {
  width: 1px;
  background: var(--gray-300);
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  background: var(--cream);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.highlight-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}

.highlight-card p {
  font-size: 14px;
  color: var(--gray-400);
}

/* ===== PRICING ===== */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

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

.pricing-featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
  position: relative;
}

.pricing-featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
}

.pricing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blur-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.blur-overlay img {
  filter: blur(12px);
  -webkit-filter: blur(12px);
  transition: filter var(--transition);
}

.blur-overlay.revealed img {
  filter: blur(0);
}

.blur-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(11,29,58,0.5);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  gap: 4px;
  transition: opacity var(--transition);
}

.blur-overlay.revealed .blur-label {
  opacity: 0;
  pointer-events: none;
}

.blur-label small {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-body {
  padding: 28px;
}

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-type {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 20px;
}

.pricing-rupee {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.pricing-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing-lacs {
  font-size: 16px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===== AMENITIES ===== */
.amenities {
  background: var(--cream);
}

.amenities-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0 24px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.amenity-card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.amenity-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.amenity-card p {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

.amenity-hidden { display: none; }

.amenities-toggle {
  text-align: center;
  margin-top: 36px;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,29,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.gallery-hidden { display: none; }

.gallery-toggle {
  text-align: center;
  margin-top: 36px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  color: var(--white);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  background: rgba(0,0,0,0.5);
  padding: 6px 16px;
  border-radius: 50px;
}

/* ===== CONNECTIVITY ===== */
.connectivity {
  background: var(--navy);
  color: var(--white);
}

.connectivity .section-eyebrow { color: var(--gold); }
.connectivity .section-title { color: var(--white); }

.connectivity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.connectivity-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.connectivity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.connectivity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}

.connectivity-item:hover {
  background: rgba(255,255,255,0.1);
}

.connectivity-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(197, 165, 90, 0.15);
}

.connectivity-item-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.connectivity-item-info {
  flex: 1;
}

.connectivity-item-name {
  font-size: 14px;
  font-weight: 500;
}

.connectivity-item-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.connectivity-item-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--gold);
}

.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  transition: color var(--transition);
  user-select: none;
}

.faq-item.active .faq-q {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-500);
}

.faq-item.active .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(197, 165, 90, 0.05);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(197, 165, 90, 0.03);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-title em { color: var(--gold); font-style: normal; }

.cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.contact-copy { padding-right: 20px; }

.contact-copy .section-title {
  margin-bottom: 16px;
}

.contact-copy > p {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: background var(--transition);
  border: 1px solid var(--gray-200);
}

.contact-item:hover {
  background: var(--cream-dark);
}

.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

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

.contact-form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.panel-kicker {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success .check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray-500);
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gray-400);
  border-radius: 50%;
  transition: all var(--transition);
  border: none;
  background: none;
  cursor: pointer;
}

.popup-close:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.popup-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.popup-sub {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.popup-success {
  display: none;
  text-align: center;
  padding: 20px;
}

.popup-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.popup-success strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.popup-success p {
  color: var(--gray-500);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-qr img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
}

.footer-qr span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-qr-rera {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.5;
  margin-top: 2px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-column li a:hover {
  color: var(--gold);
}

.footer-rera {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-rera p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-rera a {
  color: var(--gold);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-rera a:hover { opacity: 1; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-disclaimer p {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

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

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--navy);
  padding: 10px 16px;
  gap: 10px;
  border-top: 2px solid var(--gold);
}

.mobile-sticky a {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-sticky .sticky-call {
  background: var(--gold);
  color: var(--navy);
}

.mobile-sticky .sticky-wa {
  background: #25D366;
  color: var(--white);
}

.mobile-sticky svg { width: 18px; height: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .overview-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-content { padding-right: 0; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-8px); }

  .amenities-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 100px 24px 24px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-link {
    width: 100%;
    padding: 16px 12px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-link::after { display: none; }

  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex !important; }
  .nav-mobile-group { display: flex; align-items: center; gap: 8px; }

  .nav-cta-mobile {
    display: inline-flex;
    padding: 8px 12px;
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    align-items: center;
    gap: 6px;
  }

  .hero-title { font-size: 40px; }
  .hero-desc { font-size: 15px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 24px; }
  .whatsapp-float { display: none; }

  .section { padding: 64px 0; }
  .section-title { font-size: 30px; }

  .overview-title { font-size: 30px; }

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

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-8px); }

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

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }

  .contact-split { grid-template-columns: 1fr; }
  .contact-copy { padding-right: 0; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand { align-items: center; }
  .footer-desc { max-width: none; }
  .footer-rera { flex-direction: column; text-align: center; }

  .cta-title { font-size: 30px; }
  .btn-large { padding: 14px 32px; font-size: 15px; }

  .mobile-sticky { display: flex; }

  body { padding-bottom: 64px; }

  .popup-box { padding: 28px 20px; }

  .lightbox { padding: 20px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 22px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .hero-stat { flex: 1; min-width: 60px; }
  .hero-stat-divider { display: none; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; } 

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

  .amenities-grid { grid-template-columns: 2; }

  .connectivity-item { flex-wrap: wrap; }

  .contact-form { padding: 24px 16px; }

  .nav-logo-img { height: 36px; }
}
