/* =============================================
   SHRI VRINDA AARADHYA - PREMIUM CSS STYLESHEET
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --gold: #D4AF37;
  --gold-light: #F5E090;
  --gold-dark: #B8960C;
  --deep-navy: #0A0E1A;
  --dark-bg: #0D1117;
  --mid-dark: #161C2C;
  --card-bg: #1A2236;
  --card-border: rgba(212, 175, 55, 0.15);
  --text-primary: #F0EDE8;
  --text-secondary: #A8A29E;
  --text-gold: #D4AF37;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.2);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- Typography ---- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

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

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

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

/* ---- Container & Layout ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A0A;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

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

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  background: linear-gradient(135deg, #28E06C, #149C8C);
  color: #ffffff !important;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;
  padding: 12px 22px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  animation: pulseWa 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.65);
  color: #ffffff !important;
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.sticky-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(212,175,55,0.15);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.brand-sub {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A0A;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

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

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,14,26,0.85) 0%,
    rgba(10,14,26,0.55) 50%,
    rgba(10,14,26,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 120px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  animation: fadeInDown 0.8s ease;
}

.badge-icon { color: var(--gold); font-size: 0.6rem; }

.hero-by {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  background: linear-gradient(135deg, #fff 40%, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 36px;
  border-radius: 100px;
  animation: fadeIn 0.8s ease 0.5s both;
}

.hero-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pill-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pill-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.hero-divider {
  color: rgba(255,255,255,0.2);
  font-size: 1.4rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  animation: fadeIn 0.8s ease 0.6s both;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* =====================
   ABOUT SECTION
   ===================== */
.about-section { background: var(--mid-dark); }

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

.about-image-col { position: relative; }

.about-img-wrapper { position: relative; border-radius: var(--radius); overflow: hidden; }

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

.about-img-wrapper:hover .about-img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A0A;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ab-num { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; line-height: 1; }
.ab-txt { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; }

.about-img-small-wrapper {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--mid-dark);
  box-shadow: var(--shadow);
}

.about-img-small { width: 100%; height: 100%; object-fit: cover; }

.about-text-col { padding-left: 20px; }

.about-desc {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-desc strong { color: var(--text-primary); }

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 36px 0;
  padding: 28px;
  background: rgba(212,175,55,0.06);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

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

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

.stat-lbl {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--card-border);
}

/* =====================
   USP STRIP
   ===================== */
.usp-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: 24px 0;
}

.usp-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.usp-icon { font-size: 1.4rem; }

.usp-text {
  display: flex;
  flex-direction: column;
}

.usp-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0A0A0A;
}

.usp-text span {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.65);
}

.usp-sep {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.2);
}

/* =====================
   VILLAS SECTION
   ===================== */
.villas-section { background: var(--dark-bg); }

.villas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.villa-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.villa-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: var(--shadow-gold);
}

.villa-card-featured {
  border-color: rgba(212,175,55,0.35);
}

.villa-popular-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A0A;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.villa-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

.villa-card:hover .villa-card-img { transform: scale(1.06); }

.villa-type-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10,14,26,0.85);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(212,175,55,0.3);
}

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

.villa-size-tag {
  display: inline-block;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.villa-name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.villa-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.villa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.vf-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--text-secondary);
}

.vf-icon { font-size: 0.9rem; }

.villa-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
}

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

.price-from {
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.price-val {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.price-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* =====================
   AMENITIES SECTION
   ===================== */
.amenities-section {
  background: linear-gradient(135deg, #060914, #0D1117, #111827);
  position: relative;
  overflow: hidden;
}

.amenities-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.amenity-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.amenity-card:hover {
  background: rgba(212,175,55,0.06);
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-4px);
}

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

.amenity-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.amenity-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* =====================
   MASTER PLAN SECTION
   ===================== */
.masterplan-section { background: var(--mid-dark); }

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

.mp-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.mp-phases { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }

.mp-phase-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.mp-phase-tag {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.mp-phase-2 { background: rgba(100,180,255,0.1); color: #7EC8E3; }

.mp-phase-details { display: flex; flex-direction: column; gap: 6px; }

.mp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.mp-row span { color: var(--text-secondary); }
.mp-row strong { color: var(--text-primary); font-weight: 600; }

.mp-infra { display: flex; flex-direction: column; gap: 8px; }

.mp-infra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.mp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.mp-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: #0A0E1A;
}

.mp-img {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.mp-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,14,26,0.9));
  padding: 24px 20px 16px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
}

/* =====================
   LOCATION SECTION
   ===================== */
.location-section { background: var(--dark-bg); }

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

.loc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}

.loc-card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.loc-icon { font-size: 2rem; margin-bottom: 14px; }

.loc-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.loc-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* =====================
   SPECIFICATIONS SECTION
   ===================== */
.specs-section { background: var(--mid-dark); }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.spec-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}

.spec-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-3px);
}

.spec-icon { font-size: 1.8rem; margin-bottom: 12px; }

.spec-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.spec-list li span {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.78rem;
}

/* =====================
   PAYMENT SECTION
   ===================== */
.payment-section { background: var(--dark-bg); }

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

.pay-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
}

.price-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.9rem;
}

.price-box-row:last-child { border-bottom: none; }
.price-box-row span { color: var(--text-secondary); }
.price-box-row strong { color: var(--text-primary); }
.price-box-row.highlight { background: rgba(212,175,55,0.08); }
.price-box-row.highlight strong { color: var(--gold); font-size: 1.1rem; }
.price-box-divider { height: 1px; background: rgba(212,175,55,0.2); margin: 4px 0; }

.pay-plan-col {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
}

.pay-plan-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
}

.pay-steps { display: flex; flex-direction: column; gap: 12px; }

.pay-step {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  transition: var(--transition);
}

.pay-step:hover { background: rgba(212,175,55,0.05); }

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  border: 1.5px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.step-circle-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A0A;
  border-color: transparent;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.step-label { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }
.step-desc { font-size: 0.75rem; color: var(--text-secondary); }

.step-pct {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 44px;
  text-align: right;
}

.step-bar {
  display: none;
}

.pay-step-last .step-pct { color: #F5E090; }

.pay-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
  font-style: italic;
}

/* =====================
   WHY SECTION
   ===================== */
.why-section { background: var(--mid-dark); }

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

.why-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

.why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.wp-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(212,175,55,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.wp-content h5 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.wp-content p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* =====================
   GALLERY SECTION
   ===================== */
.gallery-section { background: var(--dark-bg); }

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

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

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

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

.gallery-large { grid-row: 1 / 3; }
.gallery-tall { grid-row: 1 / 3; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(10,14,26,0.85));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-light);
  font-style: italic;
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact-section {
  background: linear-gradient(135deg, #060914, var(--mid-dark));
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.contact-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.cd-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cd-icon { font-size: 1.2rem; margin-top: 2px; }

.cd-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cd-item strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cd-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

/* Contact Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 28px;
  text-align: center;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--card-bg); }
.form-group textarea { resize: none; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 12px;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #060810;
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-top: 16px;
}

.footer-links-col h5,
.footer-contact-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s ease;
}

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

.footer-contact-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 4px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.72rem !important;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto !important;
}

/* =====================
   STICKY CTA BAR
   ===================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10,14,26,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 14px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-info strong { font-size: 0.95rem; color: var(--text-primary); }
.sticky-info span { font-size: 0.78rem; color: var(--text-secondary); }

/* =====================
   BACK TO TOP
   ===================== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A0A;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}

/* =====================
   SCROLL REVEAL
   ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .about-grid,
  .masterplan-grid,
  .payment-grid,
  .why-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-img-small-wrapper { right: 0; bottom: -20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,14,26,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.mobile-open .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-serif);
  }

  .hero-highlights {
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
  }

  .hero-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }

  .villas-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-large, .gallery-tall { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .usp-inner { justify-content: flex-start; gap: 20px; }
  .usp-sep { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .amenities-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .about-img-small-wrapper { display: none; }
}
