/* -------------------------------------------------------------
   MANNVAASAM FARMS - PREMIUM STYLESHEET
   ------------------------------------------------------------- */

/* DESIGN SYSTEM TOKENS */
:root {
  --primary: #0C3A1A;
  --primary-light: #165A31;
  --primary-dark: #061F0D;
  --accent: #D4A359;
  --accent-hover: #B8832E;
  --accent-light: rgba(212, 163, 89, 0.15);
  --bg-cream: #FAF6F0;
  --bg-cream-dark: #F3ECE0;
  --text-dark: #1E2821;
  --text-muted: #5D6B60;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(12, 58, 26, 0.06);
  --shadow-lg: 0 24px 64px rgba(12, 58, 26, 0.12);
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* CORE RESETS & BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* LEAF PARTICLE ENGINE */
.leaf-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.falling-leaf {
  position: absolute;
  font-size: 24px;
  opacity: 0.15;
  user-select: none;
  pointer-events: none;
  animation: fallDown linear infinite;
  will-change: transform, opacity;
}

@keyframes fallDown {
  0% {
    transform: translateY(-50px) translateX(0) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(50vh) translateX(40px) rotate(180deg);
    opacity: 0.15;
  }
  100% {
    transform: translateY(105vh) translateX(-20px) rotate(360deg);
    opacity: 0;
  }
}

/* BUTTONS & BADGES */
.badge-accent {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background-color: rgba(212, 163, 89, 0.12);
  border: 1px solid rgba(212, 163, 89, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(212, 163, 89, 0.35);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 163, 89, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(212, 163, 89, 0.6);
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: rgba(212, 163, 89, 0.08);
  transform: translateY(-2px);
}

.btn-text {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

.btn-text:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* SECTION STRUCTURES */
section {
  padding: 100px 0;
}

.section-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

.section-desc {
  max-width: 650px;
  color: var(--text-muted);
  margin: 0 auto;
  font-size: 15px;
}

.accent-line {
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.accent-line.center {
  margin: 16px auto 24px;
}

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

/* STICKY HEADER NAVIGATION */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(12, 58, 26, 0.06);
}

header.scrolled {
  padding: 11px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  color: #111111;
}

.logo-title {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: #111111;
}

.logo-subtitle {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-top: 2px;
}

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

.nav-link {
  color: #111111;
  font-size: 13.5px;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-btn-outline {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--accent);
  color: var(--accent) !important;
  font-size: 13px;
  font-weight: 600;
}

.nav-btn-outline:hover {
  background-color: var(--accent);
  color: var(--white) !important;
  box-shadow: 0 6px 18px rgba(212, 163, 89, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #111111;
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  padding: 24px;
  background-color: rgba(12, 58, 26, 0.98);
  backdrop-filter: blur(20px);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 2px solid var(--accent);
}

.mobile-link {
  display: block;
  padding: 14px 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-btn {
  display: block;
  margin-top: 20px;
  text-align: center;
  padding: 12px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}


/* HERO SECTION WITH LEAD CAPTURE */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url('images/backgr.png');
  background-size: cover;
  background-position: center -30px;
  background-repeat: no-repeat;
  background-color: #0C3A1A;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 140px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 163, 89, 0.1), transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(22, 90, 49, 0.3), transparent 60%);
  pointer-events: none;
}

.section-divider {
  width: 100%;
  height: 180px;
  background-color: var(--white);
  overflow: hidden;
  line-height: 0;
}

.wavy-divider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .section-divider {
    height: 120px;
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  color: var(--white);
}

.hero-title {
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.hero-subtitle span {
  color: var(--accent);
  font-weight: 700;
}

.hero-tagline {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.hero-tagline span {
  color: var(--accent);
  font-weight: 700;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 38px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  font-weight: 500;
}

.bullet-icon {
  color: var(--accent);
  font-size: 11px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Form Card with Premium Glassmorphism */
.form-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 163, 89, 0.15);
  border-top: 5px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 163, 89, 0.08), transparent 70%);
  pointer-events: none;
}

.form-header {
  margin-bottom: 24px;
}

.form-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.form-header p {
  font-size: 12.5px;
  color: var(--text-muted);
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  background-color: #FAFAFA;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--accent);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 163, 89, 0.1);
}

textarea.form-input {
  resize: none;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(212, 163, 89, 0.25);
  transition: var(--transition);
  margin-top: 8px;
}

.btn-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(212, 163, 89, 0.4);
}

.form-privacy {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

.form-success {
  text-align: center;
  padding: 30px 10px;
}

.success-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(12, 58, 26, 0.1);
  color: var(--primary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-weight: 700;
}

.form-success h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-footer-rating {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
}

.stars {
  color: #FBBF24;
}

.rating-text {
  color: var(--text-muted);
  font-weight: 500;
}

/* KEY STATS STRIP */
.stats-section {
  padding: 0;
  background-color: var(--bg-cream);
  box-shadow: 0 4px 20px rgba(12, 58, 26, 0.05);
  position: relative;
  z-index: 5;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-card {
  padding: 40px 20px;
  border-right: 1px solid rgba(12, 58, 26, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.stat-icon {
  color: var(--primary);
  margin-bottom: 16px;
}

.stat-icon svg {
  width: 64px;
  height: 64px;
  display: block;
}

.stat-card::after {
  content: none;
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background-color: var(--accent);
  transform: scaleX(0);
  transition: transform 0.8s ease-in-out;
}

.stat-card.visible::after {
  transform: scaleX(1);
}

.stat-card:last-child {
  border-right: none;
}

.stat-num {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-top: 6px;
}

.stat-label-lg {
  margin-top: 0;
}

/* ABOUT PROJECT SECTION */
.about-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text-content {
  opacity: 0;
  transform: translateY(30px);
}

.about-paragraph {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

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

.about-feature-item {
  display: flex;
  gap: 14px;
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(12, 58, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-feature-item h4 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.about-feature-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-media {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.image-stack {
  position: relative;
  padding-bottom: 20px;
}

.main-image-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition);
}

.main-image:hover {
  transform: scale(1.03);
}

.floating-badge-bottom {
  position: absolute;
  bottom: -10px;
  left: -20px;
  background-color: var(--white);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
}

.floating-badge-top {
  position: absolute;
  top: -16px;
  right: -10px;
  background-color: var(--primary);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.badge-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  color: var(--primary);
}

.floating-badge-top .badge-num {
  color: var(--accent);
}

.badge-txt {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.floating-badge-top .badge-txt {
  color: rgba(255, 255, 255, 0.7);
}

/* BRAND PHILOSOPHY & PILLARS */
.philosophy-section {
  background-color: var(--bg-cream);
  position: relative;
}

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

.pillar-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.pillar-card:hover::after {
  transform: scaleX(1);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.pillar-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.1) rotate(-5deg);
}

.pillar-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Dual showcase grids (Image 5 replica layout) */
.dual-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  opacity: 0;
  transform: translateY(30px);
}

.showcase-item {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(12, 58, 26, 0.05);
  display: flex;
  flex-direction: column;
}

.showcase-img-container {
  height: 280px;
  overflow: hidden;
}

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

.showcase-item:hover .showcase-img {
  transform: scale(1.04);
}

.showcase-content {
  padding: 28px;
}

.showcase-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}

.showcase-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.showcase-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* RESORT VILLA INTERACTIVE SHOWCASE */
.villa-section {
  background-color: var(--white);
}

.villa-specs {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.spec-tile {
  background-color: var(--bg-cream);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--bg-cream-dark);
}

.tile-icon {
  font-size: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tile-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.spec-tile h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.spec-tile p {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.view-toggle-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
}

.toggle-btn {
  background-color: var(--bg-cream);
  border: 1.5px solid var(--bg-cream-dark);
  color: var(--primary);
  font-weight: 700;
  font-family: inherit;
  font-size: 13.5px;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.villa-viewer-frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--accent);
  background-color: #FAF5EE;
  min-height: 500px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.viewer-view {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.viewer-view.active {
  display: block;
}

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

.exterior-render-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.floorplan-img {
  width: 100%;
  height: 550px;
  object-fit: contain;
  display: block;
  background-color: #FAF5EE;
}

.render-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 40px;
  color: var(--white);
  pointer-events: none;
}

.overlay-text h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 6px;
}

.overlay-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* Floorplan blueprint style */
.blueprint-canvas {
  position: relative;
  width: 100%;
  background-color: #FAFAF3;
  padding: 20px;
}

.blueprint-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* PULSING BLUEPRINT HOTSPOTS */
.hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 10;
  cursor: pointer;
}

.spot-num {
  position: absolute;
  inset: 0;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.pulse-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  animation: pulseAnim 2s infinite;
  opacity: 0;
  z-index: 1;
}

@keyframes pulseAnim {
  0% { transform: scale(0.6); opacity: 0; }
  50% { opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.hotspot-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background-color: rgba(12, 58, 26, 0.96);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--accent);
  z-index: 20;
  animation: tooltipShow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes tooltipShow {
  from { transform: translateX(-50%) translateY(10px) scale(0.9); opacity: 0; }
  to { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
}

.hotspot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: rgba(12, 58, 26, 0.96) transparent transparent transparent;
}

.hotspot-tooltip h4 {
  color: var(--accent);
  font-size: 13.5px;
  margin-bottom: 4px;
}

.hotspot-tooltip p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.hotspot.open .hotspot-tooltip {
  display: block;
}

.blueprint-instruction {
  text-align: center;
  font-size: 12px;
  color: var(--accent-hover);
  font-weight: 600;
  padding: 14px;
  border-top: 1px dashed rgba(212, 163, 89, 0.25);
  background-color: var(--white);
}

/* MASTER PLAN & AREA TABLE SECTION */
.masterplan-section {
  background-color: var(--bg-cream);
}

.masterplan-grid {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.table-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(12, 58, 26, 0.04);
  opacity: 0;
  transform: translateY(30px);
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.table-header h3 {
  font-size: 19px;
  font-weight: 700;
}

.search-box input {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid #E5E7EB;
  outline: none;
  font-size: 12px;
  font-family: inherit;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--accent);
}

.table-wrapper {
  max-height: 480px;
  overflow-y: auto;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #F3F4F6;
}

th {
  background-color: #FAFAFA;
  font-weight: 700;
  color: var(--primary);
  position: sticky;
  top: 0;
  z-index: 5;
}

tr {
  cursor: pointer;
  transition: background-color 0.2s;
}

tr:hover {
  background-color: #FAF9F5;
}

tr.highlighted {
  background-color: rgba(212, 163, 89, 0.1) !important;
}

.status-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.status-tag.available {
  background-color: rgba(162, 232, 185, 0.2);
  color: #1E6B47;
}

.status-tag.reserved {
  background-color: rgba(251, 227, 178, 0.3);
  color: #B8832E;
}

.status-tag.sold {
  background-color: rgba(247, 194, 194, 0.2);
  color: #C04040;
}

.btn-table {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
}

.btn-table:hover {
  background-color: var(--accent-hover);
}

.action-sold {
  color: #A3A3A3;
  font-weight: 700;
}

/* Interactive SVG layout */
.layout-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(12, 58, 26, 0.04);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
}

.layout-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 2px;
}

.layout-tip {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.svg-container {
  border-radius: 12px;
  background-color: #FAF9F3;
  border: 2px solid var(--bg-cream-dark);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.layout-svg {
  max-width: 380px;
  width: 100%;
  height: auto;
}

.svg-plot {
  cursor: pointer;
}

.svg-plot polygon {
  stroke-width: 2.5;
  transition: fill 0.25s, stroke-width 0.2s;
}

.svg-plot.available polygon {
  fill: rgba(162, 232, 185, 0.15);
  stroke: #7FC59B;
}

.svg-plot.reserved polygon {
  fill: rgba(251, 227, 178, 0.2);
  stroke: #E5C384;
}

.svg-plot.sold polygon {
  fill: rgba(247, 194, 194, 0.15);
  stroke: #E0A5A5;
}

/* Hover highlights */
.svg-plot:hover polygon,
.svg-plot.active polygon {
  stroke-width: 3.5;
}

.svg-plot.available:hover polygon,
.svg-plot.available.active polygon {
  fill: rgba(162, 232, 185, 0.35);
  stroke: #1E6B47;
}

.svg-plot.reserved:hover polygon,
.svg-plot.reserved.active polygon {
  fill: rgba(251, 227, 178, 0.45);
  stroke: #B8832E;
}

.svg-plot.sold:hover polygon,
.svg-plot.sold.active polygon {
  fill: rgba(247, 194, 194, 0.35);
  stroke: #C04040;
}

.plot-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  text-anchor: middle;
  pointer-events: none;
  user-select: none;
}

.svg-plot.available .plot-label { fill: #0F3C23; }
.svg-plot.reserved .plot-label { fill: #8C662B; }
.svg-plot.sold .plot-label { fill: #8F2D2D; }

/* Interactive Land Calculator Box */
.calculator-box {
  margin-top: 24px;
  background-color: var(--bg-cream);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--bg-cream-dark);
}

.calculator-box h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 16px;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

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

.calc-group label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.calc-group select,
.calc-group input {
  padding: 10px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  background-color: var(--white);
  font-family: inherit;
  font-size: 12px;
  outline: none;
}

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

.calc-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(12, 58, 26, 0.08);
  margin-bottom: 18px;
}

.result-lbl {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
}

.result-val {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
}

.w-100 {
  width: 100%;
}

/* Layout Amenities Grid styling */
.amenities-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.amenity-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
}

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

.amenity-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.amenity-card h3 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.amenity-card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* LOCATION & TIMELINE ROUTE MAP */
.location-section {
  background-color: var(--white);
}

.route-map-image {
  max-width: 1200px;
  margin: 0 auto 24px;
}

.route-map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

/* PROJECT KEY STATS ROW */
.project-stats-section {
  background-color: var(--white);
  padding: 36px 0;
}

.project-stats-row {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
}

.project-stat {
  display: flex;
  justify-content: center;
  position: relative;
}

.project-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background-color: rgba(12, 58, 26, 0.15);
}

.project-stat img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

/* PROJECT GALLERY SECTION */
.gallery-section {
  background-color: var(--bg-cream);
  padding: 90px 0;
}

.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 24px 30px;
  margin-top: 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background-color: rgba(12, 58, 26, 0.08);
  border-radius: 10px;
}

.gallery-item {
  flex: 0 0 auto;
  width: 360px;
  scroll-snap-align: start;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

@media (max-width: 768px) {
  .project-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
  .project-stat:nth-child(2)::after {
    display: none;
  }
  .gallery-item {
    width: 280px;
  }
  .gallery-item img {
    height: 190px;
  }
}

.route-map-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 40px;
  background-color: var(--primary);
  border-radius: var(--border-radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(30px);
}

.route-map-container h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 2px;
}

.route-tip {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.timeline-wrapper {
  position: relative;
  padding: 60px 0;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%);
}

.timeline-stops {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 5;
}

.stop-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  width: 100px;
}

.node-dot {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 3px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.node-dot.gold {
  background-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(212, 163, 89, 0.25);
}

.node-lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 14px;
  text-align: center;
  font-weight: 500;
  transition: var(--transition);
}

.node-lbl.gold-txt {
  color: var(--accent);
}

.node-lbl.bold {
  font-weight: 700;
}

.stop-details {
  display: none;
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
  animation: tooltipShow 0.25s forwards;
}

.stop-details::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--white) transparent transparent transparent;
}

.stop-node:hover .node-dot {
  background-color: var(--accent);
  transform: scale(1.2);
}

.stop-node:hover .node-lbl {
  color: var(--white);
}

.stop-node:hover .stop-details,
.stop-node.active .stop-details {
  display: block;
}

.location-details-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.advantages-box {
  background-color: var(--bg-cream);
  border-radius: var(--border-radius-lg);
  padding: 34px;
  border: 1px solid var(--bg-cream-dark);
}

.advantages-box h3 {
  font-size: 19px;
  margin-bottom: 22px;
}

.adv-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.adv-item {
  display: flex;
  gap: 16px;
  background-color: var(--white);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.adv-badge {
  background-color: rgba(12, 58, 26, 0.08);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  align-self: flex-start;
  white-space: nowrap;
}

.adv-item h4 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.adv-item p {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.travel-calculator-box {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(12, 58, 26, 0.04);
}

.travel-calculator-box h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.travel-calculator-box p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  cursor: pointer;
}

.select-wrapper::after {
  content: '▼';
  font-size: 9px;
  color: var(--accent);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.travel-results {
  background-color: var(--bg-cream);
  border-radius: 12px;
  padding: 20px;
  border: 1.5px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeIn 0.4s ease-in-out;
}

.res-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.res-label {
  font-weight: 700;
  color: var(--text-muted);
}

.res-value {
  font-weight: 700;
  color: var(--primary);
}

.calc-placeholder {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--bg-cream);
  border: 1.5px dashed var(--bg-cream-dark);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 12.5px;
}

/* FAQ ACCORDION SECTION */
.faq-section {
  background-color: var(--bg-cream);
}

.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(30px);
}

.faq-item {
  background-color: var(--white);
  border-radius: 14px;
  border: 1.5px solid var(--bg-cream-dark);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
  font-weight: 700;
  color: var(--primary);
  font-size: 14.5px;
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.25s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

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

/* CONTACT & SITE VISIT SECTION */
.contact-section {
  background-color: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
}

.contact-info {
  opacity: 0;
  transform: translateY(30px);
}

.contact-intro {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 30px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.detail-item {
  display: flex;
  gap: 16px;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(12, 58, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.detail-item h4 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.detail-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.detail-item a:hover {
  color: var(--accent);
}

.brochure-qr-card {
  background-color: var(--bg-cream);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--bg-cream-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.qr-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.qr-content p {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

.qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.qr-svg {
  width: 90px;
  height: 90px;
  border: 3px solid var(--primary);
  border-radius: 8px;
  padding: 4px;
}

.qr-lbl {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-form-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(12, 58, 26, 0.05);
  border-top: 5px solid var(--accent);
  opacity: 0;
  transform: translateY(30px);
}

/* MAP EMBED REPRESENTATION */
.map-embed-section {
  height: 380px;
  position: relative;
}

.map-overlay-banner {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  width: 320px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--accent-light);
  z-index: 10;
}

.map-overlay-banner h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.map-overlay-banner p {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.simulated-map {
  width: 100%;
  height: 100%;
  background-color: #E3ECCF;
}

.map-svg {
  display: block;
}

/* DEVELOPER TRUST STRIP */
.developer-strip {
  background-color: var(--bg-cream-dark);
  padding: 60px 0;
}

.dev-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.dev-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.dev-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.dev-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dev-trust-badges .badge {
  background-color: var(--white);
  border-radius: 10px;
  padding: 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(12, 58, 26, 0.05);
}

.dev-stats {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 40px 24px;
  background-color: var(--primary);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.dev-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.dev-stat:last-child {
  border-right: none;
}

.dev-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}

.dev-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

@media(max-width: 480px) {
  .dev-stats {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dev-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 24px;
  }
  .dev-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* FOOTER STYLING */
.site-footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.7);
}

.footer-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bar p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  transition: color 0.25s ease;
}

.footer-socials a:hover {
  color: #fff;
}

/* FLOATING CONTACT BUTTONS (bottom-right) */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-btn.whatsapp {
  background-color: #25D366;
}

.float-btn.call {
  background-color: var(--primary);
}

/* SCROLL REVEAL UTILITIES */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* RESPONSIVE MEDIA QUERIES */
@media(max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-section {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .villa-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .masterplan-grid {
    grid-template-columns: 1fr;
  }
  .amenities-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .location-details-grid {
    grid-template-columns: 1fr;
  }
  .route-map-container {
    overflow-x: auto;
  }
  .timeline-wrapper {
    width: 900px; /* Force scrollable row */
  }
  .map-overlay-banner {
    position: relative;
    left: 24px;
    top: 50%;
  }
}

@media(max-width: 768px) {
  .hero-section {
    background-size: 180% auto;
    background-position: center top;
    padding-top: 90px;
  }
  .hero-container {
    padding-top: 60px;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    border-bottom: 1px solid rgba(12, 58, 26, 0.08);
  }
  .stat-card:nth-child(2) {
    border-right: none;
  }
  .stat-card:nth-child(3) {
    border-bottom: none;
  }
  .stat-card:nth-child(4) {
    border-right: none;
    border-bottom: none;
  }
  .dual-showcase {
    grid-template-columns: 1fr;
  }
  .footer-bar {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

@media(max-width: 480px) {
  .hero-bullets {
    grid-template-columns: 1fr;
  }
  .amenities-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-row {
    grid-template-columns: 1fr;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .brochure-qr-card {
    flex-direction: column;
    text-align: center;
  }
  .form-card {
    padding: 24px;
  }
}

/* ── INTERACTIVE LEAF CURSOR TRAIL ── */
.cursor-leaf {
  position: absolute;
  pointer-events: none;
  z-index: 10000;
  font-size: 16px;
  animation: leafTrailFade 1s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
  will-change: transform, opacity;
}

@keyframes leafTrailFade {
  0% {
    transform: translate(0, 0) scale(var(--scale)) rotate(var(--rot));
    opacity: 0.8;
  }
  100% {
    transform: translate(var(--driftX), var(--driftY)) scale(0) rotate(calc(var(--rot) + 180deg));
    opacity: 0;
  }
}

/* ── AMBIENT NATURE SOUNDS BUTTON ── */
.nav-audio-btn {
  background-color: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-audio-btn:hover,
.nav-audio-btn.playing {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(212, 163, 89, 0.3);
}

/* Header transparent mode override */
body:not(.scrolled-active) header:not(.scrolled) .nav-audio-btn {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}
body:not(.scrolled-active) header:not(.scrolled) .nav-audio-btn:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ── ROI & APPRECIATION CHART SECTION ── */
.roi-section {
  background-color: var(--white);
  border-top: 1px solid rgba(12, 58, 26, 0.05);
}

.roi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.roi-chart-box {
  background-color: var(--bg-cream);
  border-radius: var(--border-radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-cream-dark);
}

.roi-chart-box h3 {
  font-size: 19px;
  margin-bottom: 30px;
}

.chart-visual {
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.chart-bar {
  flex: 1;
  background-color: rgba(12, 58, 26, 0.08);
  height: var(--val);
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6px;
  position: relative;
  transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s;
}

.chart-bar.active {
  background: var(--primary-light);
}

.chart-bar.active .bar-value,
.chart-bar.active .bar-year {
  color: var(--white);
}

.chart-bar.projected {
  background: linear-gradient(to top, var(--accent), var(--accent-hover));
}

.chart-bar.projected .bar-value,
.chart-bar.projected .bar-year {
  color: var(--white);
}

.bar-value {
  font-weight: 700;
  font-size: 11.5px;
  color: var(--primary);
}

.bar-year {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.roi-calculator-box {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(12, 58, 26, 0.04);
}

.roi-calculator-box h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.roi-calculator-box p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.roi-slider-group {
  margin-bottom: 28px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.slider-val {
  color: var(--accent);
}

.roi-slider {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background-color: #E5E7EB;
  outline: none;
}

.roi-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

.roi-metrics {
  background-color: var(--bg-cream);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--bg-cream-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.metric-row.highlight {
  border-top: 1px solid rgba(12, 58, 26, 0.08);
  padding-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.green-text {
  color: #1E6B47;
}

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