@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #f47920;          /* Vibrant Township Orange */
  --gold-light: #ff914d;    /* Bright Accent Orange */
  --gold-dark: #cc5a0e;     /* Deep Shadow Orange */
  --navy: #06101E;          /* Rich Luxury Deep Midnight Navy Background */
  --navy-light: #0b172a;    /* Refined Luxury Muted Slate Navy */
  --navy-mid: #0e223c;      /* Deep Luxury Accent Navy */
  --emerald: #009688;       /* Elegant Township Teal */
  --emerald-light: #00aeef; /* Radiant Sky Blue */
  --white: #ffffff;         /* Premium Pure White */
  --offwhite: #e2e8f0;      /* Modern Muted White */
  --text: #cbd5e1;          /* Sleek Contrast Body Text */
  --text-light: #94a3b8;    /* Muted Description Text */
  --glass: rgba(14, 34, 60, 0.35);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 70px rgba(2, 4, 8, 0.8);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1); /* Elite expensive transitions */
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
}

/* Global Content Protection & Anti-Theft */
*:not(input):not(textarea):not(select):not(option) {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
}

/* Copy protection on images */
img {
  -webkit-user-drag: none !important;
  -khtml-user-drag: none !important;
  -moz-user-drag: none !important;
  -o-user-drag: none !important;
}

/* ========== AMBIENT GLOW BLOBS ========== */
.ambient-blobs-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-blob {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: screen;
  animation: pulse-slow 20s infinite alternate ease-in-out;
}

.blob-orange {
  background: radial-gradient(circle, var(--gold) 0%, rgba(6, 16, 30, 0) 70%);
}

.blob-teal {
  background: radial-gradient(circle, var(--emerald) 0%, rgba(6, 16, 30, 0) 70%);
  animation-delay: -5s;
  animation-duration: 25s;
}

.blob-blue {
  background: radial-gradient(circle, var(--emerald-light) 0%, rgba(6, 16, 30, 0) 70%);
  animation-delay: -10s;
  animation-duration: 22s;
}

@keyframes pulse-slow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(40px, -60px) scale(1.15);
    opacity: 0.15;
  }
  100% {
    transform: translate(-30px, 40px) scale(0.9);
    opacity: 0.08;
  }
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 500;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ========== UTILITIES ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,168,76,0.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 48px;
  transition: var(--transition);
}

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

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 28px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--navy) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 6px 30px rgba(201,168,76,0.4); transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  outline: none;
  z-index: 1100;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f35 50%, #0f2540 100%);
  padding-bottom: 80px; /* Modern bottom gap so stats do not touch the next section */
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
}

.hero-glow-1 {
  top: -200px; right: -100px;
  background: var(--gold);
}

.hero-glow-2 {
  bottom: -200px; left: -100px;
  background: var(--emerald);
  opacity: 0.08;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 60px; /* Beautiful bottom container padding for luxury spacing */
}

.hero-content {
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}

.hero-stat-divider {
  width: 1.5px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  align-self: center;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-location-badge .loc-icon {
  color: var(--gold);
}

.hero-image {
  position: relative;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-image-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
  position: relative;
}

.hero-image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  padding: 20px 28px;
  background: rgba(10, 22, 40, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(20px);
  animation: float 4s ease-in-out infinite;
}

.hero-floating-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--gold);
  font-weight: 600;
}

.hero-floating-card .label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========== ABOUT / OVERVIEW ========== */
.about {
  padding: 120px 0;
  position: relative;
}

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

.about-image-wrapper {
  position: relative;
  padding-top: 20px;
  padding-right: 20px;
}

.about-image-inner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  position: relative;
}

.about-image-inner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-image-inner img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(201,168,76,0.3);
  z-index: 2;
}

.about-image-badge h3 {
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}

.about-image-badge p {
  font-size: 0.65rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  white-space: nowrap;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-feature h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ========== CONNECTIVITY ========== */
.connectivity {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
  position: relative;
}

.connectivity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.connectivity-card {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.connectivity-card .time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.connectivity-card .unit {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.connectivity-card .destination {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.connectivity-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

/* ========== PROJECTS SECTION ========== */
.projects {
  padding: 120px 0;
  position: relative;
}

.projects-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.project-tab {
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--text);
}

.project-tab:hover,
.project-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: var(--gold);
}

.project-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

.project-grid.active {
  display: grid;
}

.project-card {
  overflow: hidden;
  position: relative;
}

.project-card-header {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.project-card-status {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.status-handover { background: var(--emerald); color: white; }
.status-upcoming { background: rgba(201,168,76,0.9); color: var(--navy); }
.status-new { background: #e44d6e; color: white; }

.project-card-body {
  padding: 28px;
}

.project-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.project-card-body .project-type {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.project-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.project-spec {
  display: flex;
  flex-direction: column;
}

.project-spec .spec-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.project-spec .spec-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.project-card-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
}

.project-price-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-card-footer .btn-sm {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* ========== VILLA SECTION ========== */
.villas {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
  position: relative;
  overflow: hidden;
}

.villas-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.villa-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.villa-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.villa-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

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

.villa-gallery-item:first-child {
  grid-column: 1 / -1;
}

.villa-gallery-item:first-child img {
  height: 300px;
}

.villa-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.villa-highlight {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.villa-highlight:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
}

.villa-highlight .icon {
  font-size: 1.6rem;
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
}

.villa-highlight h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.villa-highlight p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.villa-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.villa-price-card {
  padding: 32px;
  text-align: center;
}

.villa-price-card .type {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.villa-price-card h3 {
  font-size: 2rem;
  margin-bottom: 4px;
}

.villa-price-card .area {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.villa-price-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 600;
}

.villa-price-card .price-note {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ========== AMENITIES ========== */
.amenities {
  padding: 120px 0;
  position: relative;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.amenity-card {
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.amenity-card .icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.amenity-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.amenity-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ========== FLOOR PLANS ========== */
.floorplans {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
}

.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.floorplan-card {
  overflow: hidden;
  cursor: pointer;
}

.floorplan-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.floorplan-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition);
}

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

.floorplan-card-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.floorplan-card:hover .overlay {
  opacity: 1;
}

.overlay-text {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.floorplan-card-body {
  padding: 24px;
}

.floorplan-card-body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.floorplan-card-body p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ========== CTA / ENQUIRY ========== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-wrapper {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 24px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent);
  border-radius: 50%;
}

.cta-content h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.8;
}

.cta-features {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.cta-feature .check {
  width: 24px;
  height: 24px;
  background: rgba(42,122,90,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-light);
  font-size: 0.8rem;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

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

.enquiry-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 18px;
}

/* ========== FOOTER ========== */
.footer {
  padding: 80px 0 30px;
  background: linear-gradient(180deg, var(--navy), #060e1a);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1; /* Reset line-height to perfectly center emojis */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-light);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-light);
}

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

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

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

.lightbox-close:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 500;
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.5);
}

/* Media Queries Relocated to Bottom of Stylesheet for Cascading Precedence */

/* ========== PREMIUM SUCCESS MODAL ========== */
.success-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 26, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px;
}

.success-modal-backdrop.active {
  opacity: 1;
}

.success-modal-card {
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  padding: 50px 40px;
  max-width: 550px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  position: relative;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-modal-backdrop.active .success-modal-card {
  transform: translateY(0);
}

.success-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.success-modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(42, 122, 90, 0.15);
  border: 2px solid var(--emerald-light);
  color: var(--emerald-light);
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(42, 122, 90, 0.2);
}

.success-modal-card h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.success-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 30px;
}

.success-details-list {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: left;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}

.brochure-download-box {
  background: rgba(201, 168, 76, 0.05);
  border: 1px dashed rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 30px;
}

.brochure-download-box p {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 500;
}

.success-download-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 12px 24px;
}

.brochure-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
}

.brochure-link-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.success-modal-done-btn {
  width: 100%;
  padding: 14px;
  font-size: 0.85rem;
}

/* ========== INTERACTIVE ZOOM INDICATOR ========== */
.zoom-indicator {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.hero-image:hover .zoom-indicator,
.about-image-wrapper:hover .zoom-indicator {
  opacity: 1;
  transform: translateY(0);
}

/* ========== TOAST NOTIFICATIONS ========== */
.toast-notification {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 22, 40, 0.95);
  border: 1px solid var(--gold-dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  z-index: 99999;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s;
  pointer-events: none;
  text-align: center;
  max-width: 90%;
}

.toast-notification.active {
  bottom: 40px;
  opacity: 1;
}

/* ========== MOBILE MENU CLOSE ANIMATION ========== */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== PROJECT RERA BADGE ========== */
.project-rera {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 14px;
  border: 1px solid var(--glass-border);
  font-weight: 500;
  text-transform: uppercase;
}

/* ========== Walkthrough Video Section ========== */
.video-section {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, var(--navy), var(--navy-light));
}

.video-placeholder-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
  background: var(--navy-mid);
}

.video-placeholder-card {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-placeholder-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 30, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--white);
  text-align: center;
  padding: 24px;
}

.play-btn-ripple {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 0 rgba(244, 121, 32, 0.5), 
              0 0 0 12px rgba(244, 121, 32, 0.25), 
              0 15px 30px rgba(244, 121, 32, 0.3);
  animation: premium-ripple 2.4s infinite cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-placeholder-card:hover .play-btn-ripple {
  transform: scale(1.12);
  background: radial-gradient(circle, var(--gold-light) 30%, #ff8c00 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5), 
              0 0 0 24px rgba(255, 107, 0, 0.2), 
              0 25px 45px rgba(255, 107, 0, 0.4);
}

.play-btn {
  font-size: 2.2rem;
  color: #fff;
  margin-left: 6px; /* Perfect centering */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.video-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--white), #f47920);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-overlay p {
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.85;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

@keyframes premium-ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 121, 32, 0.55), 
                0 0 0 10px rgba(244, 121, 32, 0.3), 
                0 10px 25px rgba(244, 121, 32, 0.25);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(244, 121, 32, 0), 
                0 0 0 35px rgba(244, 121, 32, 0.15), 
                0 15px 35px rgba(244, 121, 32, 0.35);
  }
  100% {
    box-shadow: 0 0 0 40px rgba(244, 121, 32, 0), 
                0 0 0 55px rgba(244, 121, 32, 0), 
                0 10px 25px rgba(244, 121, 32, 0.25);
  }
}

/* ========== Township Master Plan Section ========== */
.masterplan-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
}

.masterplan-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.masterplan-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.masterplan-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.mp-stat {
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  text-align: center;
}

.mp-stat h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.mp-stat p {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-top: 4px;
}

.masterplan-image-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(244, 121, 32, 0.25);
  position: relative;
  cursor: zoom-in;
  background: #ffffff;
}

.masterplan-image-container img {
  width: 100%;
  height: auto;
  display: block;
  background: #ffffff;
  transition: transform 0.5s ease;
}

.masterplan-image-container:hover img {
  transform: scale(1.03);
}

/* ========== MAP CONTAINER ========== */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(244, 121, 32, 0.2);
  position: relative;
  margin-top: 40px;
  margin-bottom: 50px;
  background: #0b1523;
  transition: border-color 0.4s ease;
}

.map-container:hover {
  border-color: rgba(244, 121, 32, 0.4);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  filter: grayscale(0.2) invert(0.9) contrast(1.1) hue-rotate(180deg);
  opacity: 0.85;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.map-container:hover iframe {
  filter: none;
  opacity: 1;
}

/* ========== Combined Project Gallery ========== */
.gallery-section {
  padding: 120px 0;
  background: var(--navy);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 10px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-tab:hover,
.gallery-tab.active {
  background: var(--gold);
  color: var(--navy-light);
  border-color: var(--gold);
  box-shadow: 0 5px 20px rgba(244, 121, 32, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s;
}

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

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

.gallery-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 18, 31, 0.8) 0%, rgba(9, 18, 31, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-card:hover .gallery-info {
  opacity: 1;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 121, 32, 0.4);
}

.gallery-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 2px;
}

.gallery-info p {
  font-size: 0.8rem;
  color: var(--gold-light);
}

/* Multi-size Masonry details */
@media (min-width: 769px) {
  .gallery-grid > div:nth-child(3n+1) {
    grid-column: span 2;
  }
  .gallery-grid > div:nth-child(5n+2) {
    grid-row: span 2;
  }
}

/* ==========================================================================
   FLAGSHIP ULTRA-LUXURY PROJECT CARDS STYLING
   ========================================================================== */
.project-flagship-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 50px;
}

.flagship-card {
  background: #081425;
  border: 1px solid rgba(244, 121, 32, 0.12); /* Razor-thin orange micro-border */
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  position: relative;
  transition: border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.flagship-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 121, 32, 0.45);
  box-shadow: 0 25px 60px rgba(244, 121, 32, 0.08), 0 30px 70px rgba(0, 0, 0, 0.7);
}

.flagship-card .status-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  padding: 6px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.flagship-card .flagship-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  padding: 6px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  background: rgba(6, 16, 30, 0.95);
  border: 1px solid rgba(244, 121, 32, 0.3);
  color: var(--gold);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.flagship-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .flagship-grid-layout {
    grid-template-columns: 1.15fr 1fr;
  }
}

.flagship-preview-pane {
  background: #050b15;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 992px) {
  .flagship-preview-pane {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
  }
}

.main-preview-img-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: default;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.main-preview-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-preview-img-container:hover img {
  transform: none;
}

/* ========== IMAGE COVER BADGE ========== */
.image-project-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #081425; /* Match --navy background */
  color: var(--white);
  padding: 12px 24px; /* Taller and wider to fully cover original watermarks */
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-top-left-radius: 10px;
  border-left: 1.5px solid rgba(244, 121, 32, 0.4);
  border-top: 1.5px solid rgba(244, 121, 32, 0.4);
  z-index: 5;
  box-shadow: -4px -4px 15px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  transition: var(--transition);
}

.main-preview-img-container:hover .image-project-badge,
.hero-image-main:hover .image-project-badge,
.about-image-inner:hover .image-project-badge {
  color: var(--gold);
  border-color: rgba(244, 121, 32, 0.65);
}

.zoom-helper {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(6, 16, 30, 0.85);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  font-size: 0.68rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.flagship-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.flagship-thumb {
  width: 85px;
  height: 55px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.flagship-thumb:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.flagship-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.03);
}

.flagship-info-pane {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .flagship-info-pane {
    padding: 40px;
  }
}

.flagship-info-pane h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(135deg, #ffffff 50%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.flagship-info-pane .project-type {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
  font-weight: 500;
}

.flagship-info-pane .project-rera {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.villa-highlights-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.highlight-item {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(244, 121, 32, 0.06);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(244, 121, 32, 0.15);
  letter-spacing: 0.2px;
}

.villa-pricing-table {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.01);
}

.villa-pricing-table .table-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.villa-pricing-table .table-header span:last-child {
  text-align: right;
}

.villa-pricing-table .table-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  padding: 12px 16px;
  font-size: 0.85rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.villa-pricing-table .table-row:last-child {
  border-bottom: none;
}

.villa-pricing-table .table-row span:first-child {
  font-weight: 500;
  color: #fff;
}

.villa-pricing-table .table-row span:nth-child(2) {
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
}

.villa-pricing-table .price-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--gold);
  font-size: 1.05rem;
  text-align: right;
}

.flagship-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-box-label {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.price-box-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.flagship-actions .button-box {
  flex-grow: 1;
  text-align: right;
}

@media (max-width: 480px) {
  .flagship-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .price-box {
    margin-bottom: 10px;
    align-items: center;
  }
  .flagship-actions .button-box {
    text-align: center;
  }
  .flagship-actions .button-box button {
    width: 100%;
    justify-content: center;
  }
}

.pricing-disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.72rem;
  color: var(--text-light);
  opacity: 0.7;
}

/* ========== E-BROCHURE LEAD POPUP ========== */
#leadPopup.lightbox {
  background: rgba(4, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex !important;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s;
}

#leadPopup.lightbox.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.lead-popup-card {
  background: var(--navy-light);
  border: 1px solid rgba(244, 121, 32, 0.25);
  border-radius: var(--radius);
  padding: 40px 30px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(244, 121, 32, 0.08);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#leadPopup.lightbox.active .lead-popup-card {
  transform: translateY(0);
}

.popup-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.1rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.popup-close-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transform: rotate(90deg);
}

.popup-header {
  text-align: center;
  margin-bottom: 24px;
}

.popup-header img {
  margin-bottom: 12px;
}

.popup-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.popup-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.popup-subtitle strong {
  color: var(--gold-light);
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popup-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.popup-form label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popup-form label .required {
  color: var(--gold-light);
}

.popup-form label .optional {
  font-size: 0.65rem;
  color: var(--text-light);
  opacity: 0.7;
}

.popup-form input[type="text"],
.popup-form input[type="tel"],
.popup-form input[type="email"] {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}

/* Fix for intl-tel-input structure inside form group */
.popup-form .iti {
  width: 100%;
}

.popup-form .iti__country-list {
  background-color: var(--navy-light);
  border: 1px solid var(--glass-border);
  color: var(--white);
}

.popup-form .iti__country:hover,
.popup-form .iti__country.iti__highlight {
  background-color: rgba(255, 255, 255, 0.05);
}

.popup-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(244, 121, 32, 0.2);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ========== GALLERY INFINITE MARQUEE ========== */
.gallery-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
  cursor: grab;
}

.gallery-marquee:active {
  cursor: grabbing;
}

/* Subtle luxury side fade masks */
.gallery-marquee::before,
.gallery-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 2;
  pointer-events: none;
}

.gallery-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(6, 16, 30, 0) 100%);
}

.gallery-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--navy) 0%, rgba(6, 16, 30, 0) 100%);
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: scroll-marquee 45s linear infinite;
}

.gallery-marquee:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-marquee-card {
  width: 320px;
  height: 240px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  cursor: pointer;
  position: relative;
}

.gallery-marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-marquee-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 121, 32, 0.5);
  box-shadow: 0 15px 40px rgba(244, 121, 32, 0.15);
}

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

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========== FLOATING ACTIONS WIDGET ========== */
.floating-actions-widget {
  position: fixed;
  bottom: 30px;
  left: 30px; /* Docked to the left corner */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.call-btn {
  background: var(--navy-light);
  border: 1px solid rgba(244, 121, 32, 0.4);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(244, 121, 32, 0.15);
}

.call-btn:hover {
  background: var(--gold);
  border-color: var(--gold-light);
  box-shadow: 0 12px 30px rgba(244, 121, 32, 0.4);
}

.whatsapp-btn {
  background: #25d366;
  border: none;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-icon {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-tooltip {
  position: absolute;
  left: 65px;
  background: var(--navy-light);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-10px);
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn:hover .btn-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ========== Master Plan Stats Classes Styling ========== */
.mp-stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.mp-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-top: 4px;
}

/* ========== RESPONSIVE MEDIA QUERIES (APPENDED FOR PRECEDENCE) ========== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { max-width: 600px; margin: 0 auto; }
  .hero-floating-card { left: auto; right: -10px; }
  .about-grid, .masterplan-grid { grid-template-columns: 1fr; }
  .about-image-wrapper { max-width: 600px; margin: 0 auto; }
  .connectivity-grid { grid-template-columns: 1fr 1fr; }
  .villas-showcase { grid-template-columns: 1fr; }
  .cta-wrapper { grid-template-columns: 1fr; padding: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; background: rgba(10,22,40,0.98); padding: 30px; gap: 20px; backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); z-index: 1050; }
  .nav-links.active { display: flex; }
  .mobile-toggle { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 20px; justify-content: center; }
  .stat-number { font-size: 1.8rem; }
  .hero-stat-divider { display: none; }
  .masterplan-grid { gap: 30px; }
  .masterplan-stats { grid-template-columns: 1fr; gap: 12px; }
  .connectivity-grid { grid-template-columns: 1fr 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .villa-gallery { grid-template-columns: 1fr; }
  .villa-gallery-item:first-child img { height: 220px; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .floorplan-grid { grid-template-columns: 1fr; }
  .cta-wrapper { padding: 30px; }
  .form-row { grid-template-columns: 1fr; }
  
  /* Video Placeholder Mobile Fix */
  .video-overlay { padding: 10px; gap: 8px; }
  .play-btn-ripple { width: 50px; height: 50px; }
  .play-btn { font-size: 1.2rem; margin-left: 3px; }
  .video-overlay h3 { font-size: 1.4rem; margin-top: 0; }
  .video-overlay p { font-size: 0.7rem; letter-spacing: 1px; }

  /* Styled and Structured Mobile Footer */
  .footer { padding: 60px 0 100px; } /* Generous bottom padding pushes interactive content above floating buttons */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; text-align: left; }
  .footer-brand { grid-column: span 2; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 24px; margin-bottom: 10px; }
  .footer-col { grid-column: span 1; }
  .footer-col:nth-child(4) { grid-column: span 2; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 24px; }
  .footer-col h4 { margin-bottom: 16px; }
  
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .connectivity-grid { grid-template-columns: 1fr; }
  .projects-tabs { justify-content: center; }
  .villa-pricing-grid { grid-template-columns: 1fr; }
}
