/* ==========================================================================
   PUCHENDRA INFRA — Comprehensive Real Estate Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #0284c7;
  --accent-hover: #0369a1;
  --gold: #f59e0b;
  --gold-light: #fef3c7;
  --emerald: #10b981;
  --emerald-dark: #047857;
  --danger: #ef4444;
  --info: #3b82f6;
  --dark: #090d16;
  --light: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 25px rgba(2, 132, 199, 0.35);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: #0b1120;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #b45309, #d97706, #059669);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 101;
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.top-bar-badge {
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.brand-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.brand-text h1 {
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text p {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0284c7);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0369a1, #075985);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fbbf24, #b45309);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  background: radial-gradient(circle at 70% 30%, rgba(2, 132, 199, 0.15), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1), transparent 50%),
              #090d16;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.approval-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  color: #34d399;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.approval-tag i {
  font-size: 1.1rem;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-title span.highlight-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.highlight-emerald {
  color: #34d399;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Pricing Cards Banner inside Hero */
.hero-price-box {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  box-shadow: var(--shadow-xl);
}

.price-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 12px;
}

.price-item:last-child {
  border-right: none;
  padding-right: 0;
}

.price-label {
  font-size: 0.78rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.price-value-slash {
  font-size: 1.25rem;
  color: #ef4444;
  text-decoration: line-through;
  font-weight: 700;
}

.price-value-offer {
  font-size: 1.8rem;
  color: #34d399;
  font-weight: 800;
  font-family: var(--font-heading);
}

.price-value-offer small {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

.savings-badge {
  display: inline-block;
  background: var(--gold);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

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

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-glow), 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-card-img:hover {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
  animation: floatAnim 4s infinite ease-in-out;
}

.floating-badge-1 {
  top: 20px;
  left: -20px;
}

.floating-badge-2 {
  bottom: 20px;
  right: -20px;
  animation-delay: 2s;
}

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

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.floating-icon.gold {
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold);
}

.floating-text strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.floating-text span {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ==========================================================================
   OFFER HIGHLIGHT BANNER
   ========================================================================== */
.offer-banner {
  background: linear-gradient(135deg, #1e1b4b, #0f172a, #064e3b);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
}

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

.offer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.offer-card.card-1::before { background: var(--emerald); }
.offer-card.card-2::before { background: var(--gold); }
.offer-card.card-3::before { background: var(--accent); }

.offer-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.card-1 .offer-icon { color: var(--emerald); }
.card-2 .offer-icon { color: var(--gold); }
.card-3 .offer-icon { color: var(--accent); }

.offer-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.offer-card p {
  color: #94a3b8;
  font-size: 0.92rem;
}

/* ==========================================================================
   MASTER PLAN & INTERACTIVE PLOT SELECTOR
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: #94a3b8;
}

/* Master Plan Card & Grid */
.master-plan-container {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-xl);
}

.plot-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  background: rgba(30, 41, 59, 0.8);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.legend-group {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-available { background: var(--emerald); box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
.dot-booked { background: var(--gold); }
.dot-hold { background: var(--info); }
.dot-registered { background: var(--danger); }

/* Master Plan Image & Interactive Grid Overlay */
.plan-view-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.master-plan-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.plot-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 6px;
  padding: 4%;
  background: rgba(15, 23, 42, 0.25);
}

.plot-cell {
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(16, 185, 129, 0.6);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.plot-cell:hover {
  transform: scale(1.08);
  z-index: 10;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  border-color: #ffffff;
}

.plot-cell.status-available {
  background: rgba(16, 185, 129, 0.4);
  border-color: var(--emerald);
}

.plot-cell.status-booked {
  background: rgba(245, 158, 11, 0.4);
  border-color: var(--gold);
  color: #fef3c7;
}

.plot-cell.status-hold {
  background: rgba(59, 130, 246, 0.4);
  border-color: var(--info);
}

.plot-cell.status-registered {
  background: rgba(239, 68, 68, 0.4);
  border-color: var(--danger);
  color: #fecaca;
}

.plot-cell.hidden {
  opacity: 0.15;
  pointer-events: none;
}

/* ==========================================================================
   CALCULATORS SECTION (Savings 2% + EMI)
   ========================================================================== */
.calculators-section {
  background: linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.calc-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.calc-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.calc-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.calc-badge-icon.gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
}

.calc-title h3 {
  font-size: 1.4rem;
  color: #ffffff;
}

.calc-title p {
  font-size: 0.85rem;
  color: #94a3b8;
}

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

.form-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.range-slider {
  width: 100%;
  height: 8px;
  background: #334155;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.6);
  border: 2px solid #ffffff;
}

.calc-results-box {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 24px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.result-row:last-child {
  border-bottom: none;
}

.result-label {
  font-size: 0.9rem;
  color: #94a3b8;
}

.result-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.result-val.highlight-emerald { color: #34d399; font-size: 1.3rem; }
.result-val.highlight-gold { color: var(--gold); font-size: 1.3rem; }

/* ==========================================================================
   AMENITIES GRID
   ========================================================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: rgba(30, 41, 59, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.amenity-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.amenity-card h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ==========================================================================
   HMDA TRUST & LEGAL APPROVALS SECTION
   ========================================================================== */
.trust-section {
  background: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
  border-top: 1px solid rgba(16, 185, 129, 0.3);
  border-bottom: 1px solid rgba(16, 185, 129, 0.3);
  padding: 60px 0;
}

.trust-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.trust-badge-visual {
  text-align: center;
  position: relative;
}

.stamp-seal {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px dashed var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--gold);
  padding: 20px;
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

.stamp-seal h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.stamp-seal span {
  font-size: 0.75rem;
  color: #cbd5e1;
  margin-top: 4px;
}

.trust-content h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.trust-content p {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 24px;
}

.trust-check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #ffffff;
}

.trust-check-list i {
  color: #34d399;
  font-size: 1.1rem;
}

/* ==========================================================================
   CONTACT & INQUIRY FORM
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(2, 132, 199, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.9rem;
  color: #94a3b8;
}

.form-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(12px);
}

.input-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.input-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.25);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #070a12;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
  color: #94a3b8;
  font-size: 0.9rem;
}

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

.footer-brand h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-links h4 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

/* ==========================================================================
   FLOATING WHATSAPP & CALL BUTTONS
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

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

.float-whatsapp {
  background: #25d366;
}

.float-phone {
  background: var(--accent);
}

/* ==========================================================================
   MODAL WINDOWS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
/* ==========================================================================
   MOBILE NAV TOGGLE & DRAWER
   ========================================================================== */
.mobile-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #0f172a;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  z-index: 999;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.mobile-drawer-brand h2 {
  font-size: 1.15rem;
  color: #ffffff;
}

.mobile-drawer-brand p {
  font-size: 0.75rem;
  color: var(--gold);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: #cbd5e1;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-drawer-links a:hover {
  color: var(--accent);
}

/* ==========================================================================
   VIEW MODE TABS & PLOT LIST CARDS FOR MOBILE
   ========================================================================== */
.view-mode-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  background: rgba(30, 41, 59, 0.8);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.view-tab-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.view-tab-btn.active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.4);
}

.plot-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.plot-list-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.plot-list-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.plot-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.plot-card-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
}

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge.status-available { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid var(--emerald); }
.badge.status-booked { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid var(--gold); }
.badge.status-hold { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid var(--info); }
.badge.status-registered { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid var(--danger); }

.plot-card-body {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.plot-card-body p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.plot-card-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #34d399;
  font-family: var(--font-heading);
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM ACTION BAR
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 998;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4);
}

.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 600;
  gap: 3px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-action-btn:last-child {
  border-right: none;
}

.mobile-action-btn i {
  font-size: 1.25rem;
}

.mobile-action-btn.phone-action i { color: var(--accent); }
.mobile-action-btn.wa-action i { color: #25d366; }
.mobile-action-btn.visit-action i { color: var(--gold); }

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px; /* Space for mobile sticky bottom bar */
  }

  .nav-links { display: none; }
  .desktop-only-btn { display: none; }
  .mobile-nav-toggle { display: flex; }
  .mobile-bottom-bar { display: grid; }
  
  .floating-actions {
    bottom: 80px; /* Adjust WhatsApp float button above mobile bottom bar */
    right: 16px;
  }

  .hero {
    padding: 30px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-price-box {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .price-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    padding-right: 0;
  }

  .price-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .offer-grid { grid-template-columns: 1fr; }
  .trust-box { grid-template-columns: 1fr; }
  .trust-check-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  
  /* Plot Grid Touch Pan Scroll on Mobile */
  .plan-view-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .master-plan-img {
    min-width: 700px; /* Allow horizontal panning on mobile */
  }

  .plot-grid-overlay {
    min-width: 700px;
  }

  .floating-badge {
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .floating-badge-1 { top: 10px; left: 10px; }
  .floating-badge-2 { bottom: 10px; right: 10px; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .calc-card {
    padding: 24px 18px;
  }

  .modal-card {
    padding: 24px 18px;
  }
}

