/* ==========================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================== */
:root {
  /* Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC; /* Slate 50 */
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.9);
  
  --primary: #C5A028; /* Slightly deeper Metallic Gold for contrast on white background */
  --primary-hover: #AB881A;
  --primary-rgb: 197, 160, 40;
  
  --accent: #059669; /* Slightly deeper Emerald Green for contrast */
  --accent-hover: #047857;
  
  /* Readability: Slate gray palette for maximum text legibility */
  --text-primary: #0F172A; /* Slate 900 */
  --text-secondary: #334155; /* Slate 700 */
  --text-muted: #627D98; /* Muted Slate */
  
  --border-glass: rgba(15, 23, 42, 0.08); /* Slate 900 at 8% opacity */
  --border-gold: rgba(197, 160, 40, 0.4);
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  
  /* Typography: Plus Jakarta Sans for both body and headers to ensure unified, clean layout */
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-max-width: 1200px;
}

/* ==========================================
   BASE & RESET STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7; /* Increased line height for legibility */
  overflow-x: hidden;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

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

/* Utilities */
.section-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.mt-5 { margin-top: 3.5rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================
   BUTTONS & ACTIONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 700; /* Bold font for call-to-actions */
  font-family: var(--font-primary);
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.6rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary);
  color: #05070a;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-accent {
  background-color: var(--accent);
  color: #ffffff;
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background-color: rgba(var(--primary-rgb), 0.15);
  color: var(--text-primary);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-lg {
  padding: 0.95rem 2.5rem;
  font-size: 1.05rem;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 {
  font-size: 3.25rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.3px;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.lead-text {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
}

.accent-text {
  color: var(--primary);
}

.accent-line {
  width: 70px;
  height: 4px;
  background-color: var(--primary);
  margin-bottom: 2rem;
  border-radius: 4px;
}

.accent-line.center {
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-tag.highlight-tag {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--accent);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-normal);
}

.main-header.scrolled {
  padding: 0.35rem 0;
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.96);
}

.header-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.phone-link {
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.phone-link:hover {
  color: var(--primary-hover);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(7, 10, 16, 0.96) 0%, rgba(7, 10, 16, 0.75) 45%, rgba(7, 10, 16, 0) 100%);
  z-index: -1;
}

.hero-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-tagline {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.75rem;
}

.hero-section h1 {
  font-size: 3.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.hero-subtext {
  font-size: 1.2rem;
  color: #E2E8F0;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero-price-badge {
  display: inline-flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--primary);
  padding: 0.6rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 1.25rem;
}

.price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #94A3B8;
  letter-spacing: 1px;
}

.price-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #E2E8F0;
  font-weight: 500;
}

.feature-item i {
  color: var(--primary);
  font-size: 0.9rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

/* Glassmorphic Form Card */
.glass-form-card {
  background-color: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
}

.hero-form-container .glass-form-card {
  background-color: rgba(11, 16, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 1.75rem;
}

.hero-form-container .glass-form-card h3 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 0.25rem;
}

.hero-form-container .glass-form-card p {
  color: #94A3B8;
  text-align: center;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero-form-container .form-disclaimer {
  color: #94A3B8;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.hero-form-container .input-wrapper input {
  background-color: rgba(7, 10, 16, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.hero-form-container .input-wrapper input:focus {
  background-color: rgba(7, 10, 16, 0.8);
  border-color: var(--primary);
}

.hero-form-container .input-icon {
  color: #94A3B8;
}

.hero-form-container .input-wrapper input:focus + .input-icon {
  color: var(--primary);
}

.glass-form-card h3 {
  text-align: center;
  margin-bottom: 0.25rem;
}

.glass-form-card p {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* ==========================================
   FORMS & INPUTS
   ========================================== */
.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 6px;
  padding: 0.85rem 1rem 0.85rem 2.5rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-normal);
  font-weight: 500;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.input-wrapper input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.25);
  background-color: #FFFFFF;
}

.input-wrapper input:focus + .input-icon {
  color: var(--primary);
}

/* Error states */
.form-group.invalid .input-wrapper input {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.error-msg {
  display: none;
  color: #F87171;
  font-size: 0.75rem;
  margin-top: 0.35rem;
  font-weight: 600;
}

.form-group.invalid .error-msg {
  display: block;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

/* Modern Web Guidance: Autofill styling */
input:-webkit-autofill,
input:autofill {
  border: 1px solid var(--primary) !important;
  box-shadow: 0 0 0 1000px #F8FAFC inset !important;
  -webkit-text-fill-color: var(--text-primary) !important;
}

input:-webkit-autofill:focus-visible,
input:autofill:focus-visible {
  outline: 2px solid var(--primary) !important;
  outline-offset: 2px;
}

/* ==========================================
   GRID LAYOUTS & CONTAINERS
   ========================================== */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.align-center {
  align-items: center;
}

.image-wrapper-bordered {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
}

.image-wrapper-bordered::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary);
  transform: translate(12px, 12px);
  border-radius: 12px;
  z-index: -1;
  pointer-events: none;
}

/* ==========================================
   SECTIONS GENERAL STYLES
   ========================================== */
.overview-section, 
.highlights-section, 
.floor-plans-section, 
.amenities-section, 
.gallery-section,
.location-section, 
.phase-section, 
.pricing-section, 
.faq-section, 
.contact-section,
.blogs-section {
  padding: var(--section-padding);
  border-bottom: 1px solid var(--border-glass);
}

.overview-section {
  background-color: var(--bg-secondary);
}

/* Section headers */
.section-header {
  margin-bottom: 3.5rem;
}

.section-desc {
  max-width: 600px;
  margin: 0.5rem auto 0;
  color: var(--text-secondary);
}

/* ==========================================
   PROJECT HIGHLIGHTS SECTION
   ========================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.highlight-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-normal);
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background-color: rgba(197, 160, 40, 0.05);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.highlight-info h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.highlight-info p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
}

.highlight-description-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.highlight-description-box h3 {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.highlight-description-box p {
  margin-bottom: 1.25rem;
}

.highlight-description-box p:last-child {
  margin-bottom: 0;
}

/* Highlights List bullets */
.highlights-list-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.highlights-list-box h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.highlights-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlights-detail-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-secondary);
}

.highlights-detail-list li::before {
  content: '\f101';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  font-size: 0.95rem;
}

.highlights-detail-list li strong {
  color: var(--text-primary);
  display: inline-block;
  margin-right: 0.5rem;
}

/* ==========================================
   MASTER & FLOOR PLANS
   ========================================== */
.floor-plans-section {
  background-color: var(--bg-secondary);
}

.master-plan-block {
  margin-bottom: 4rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 2.5rem;
}

.master-plan-image {
  position: relative;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
}

.master-plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.master-plan-features-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.master-plan-features-list li strong {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.master-plan-features-list li strong::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  font-size: 0.95rem;
}

.master-plan-features-list li span {
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Floor Plan Tabs styling */
.floor-plans-block {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.floor-plans-block h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.sub-title {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.floor-plan-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 1px solid var(--border-glass);
  font-weight: 600;
  cursor: pointer;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  transition: var(--transition-normal);
}

.tab-btn:hover {
  border-color: var(--border-gold);
  color: var(--text-primary);
}

.tab-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #05070a;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.35);
}

/* Pane displays */
.tab-pane {
  display: none;
  animation: fadeIn var(--transition-slow);
}

.tab-pane.active {
  display: block;
}

.floor-plan-details h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.pane-details-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.pane-details-table th, .pane-details-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-glass);
  text-align: left;
}

.pane-details-table th {
  color: var(--text-muted);
  font-weight: 500;
  width: 40%;
}

.pane-details-table td {
  color: var(--text-primary);
  font-weight: 600;
}

.floor-plan-image-viewer {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-glass);
  text-align: center;
}

.zoomable-img {
  max-height: 380px;
  width: auto;
  margin: 0 auto;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.zoomable-img:hover {
  transform: scale(1.03);
}

.zoom-indicator {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Specs lists */
.layout-specs-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.layout-specs-box h4 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.specs-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.specs-bullets li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-secondary);
}

.specs-bullets li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary);
}

.specs-bullets li strong {
  color: var(--text-primary);
  display: inline-block;
  margin-right: 0.5rem;
}

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

/* ==========================================
   AMENITIES GRID
   ========================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.amenity-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.amenity-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.amenity-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--bg-secondary);
  color: var(--primary);
  border: 1px solid var(--border-gold);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.amenity-text {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.amenity-text h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.amenity-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 10, 16, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.visit-us-block {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-glass);
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 800px;
  margin: 4rem auto 0 auto;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
}

.visit-us-block h3 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

.visit-us-block p {
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
}

/* ==========================================
   LOCATION SECTIONS
   ========================================== */
.location-map {
  position: relative;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-glass);
}

.location-map img {
  border-radius: 6px;
  cursor: pointer;
}

.location-tabs {
  display: flex;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-glass);
  padding: 0.35rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  gap: 0.25rem;
}

.loc-tab {
  flex-grow: 1;
  text-align: center;
  padding: 0.65rem 0;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.loc-tab:hover {
  color: var(--text-primary);
}

.loc-tab.active {
  background-color: var(--primary);
  color: #05070a;
}

.location-tabs-content {
  min-height: 310px;
}

.loc-pane {
  display: none;
  animation: fadeIn var(--transition-normal);
}

.loc-pane.active {
  display: block;
}

.location-list {
  list-style: none;
}

.location-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-glass);
  align-items: center;
}

.place-name {
  color: var(--text-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.place-name::before {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 0.85rem;
}

.time-taken {
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.loc-highlights-box {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-glass);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.loc-highlights-box h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.loc-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.loc-bullets li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.loc-bullets li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
}

/* ==========================================
   PHASE & LAUNCH INFORMATION
   ========================================== */
.early-bird-offer {
  background-color: rgba(212, 175, 55, 0.04);
  border-left: 4px solid var(--primary);
  border-top: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.75rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.early-bird-offer h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.early-bird-offer p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.phase-improvements {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.phase-improvements h4 {
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.phase-improvements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phase-improvements-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.phase-improvements-list li i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.why-invest-phase {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.why-invest-phase h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.glass-info-card {
  background-color: var(--bg-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
}

.glass-info-card h3 {
  margin-bottom: 0.25rem;
}

.status-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent);
  background-color: rgba(16, 185, 129, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.construction-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.construction-bullets > li {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.05rem;
}

.construction-bullets > li ul {
  list-style: none;
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.construction-bullets > li ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.construction-bullets > li ul li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
}

/* ==========================================
   PRICING SECTION & HORIZONTAL SCROLL
   ========================================== */
.pricing-section {
  background-color: var(--bg-secondary);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  background-color: var(--bg-primary);
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}

.pricing-data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.pricing-data-table th, .pricing-data-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.pricing-data-table th {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.pricing-data-table td {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-data-table tbody tr {
  transition: var(--transition-fast);
}

.pricing-data-table tbody tr:hover {
  background-color: rgba(197, 160, 40, 0.04);
}

.btn-table-cta {
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  padding: 0.4rem 1.25rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-table-cta:hover {
  background-color: var(--primary);
  color: #05070a;
  border-color: var(--primary);
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion details {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-accordion details[open] {
  border-color: var(--border-gold);
}

.faq-accordion summary {
  padding: 1.25rem 1.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
  color: var(--text-primary);
}

.faq-accordion summary:hover {
  color: var(--primary);
}

.faq-accordion summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}

.faq-accordion details[open] summary::after {
  transform: rotate(-180deg);
  color: var(--primary);
}

.faq-content {
  padding: 0 1.75rem 1.5rem 1.75rem;
  border-top: 1px solid var(--border-glass);
}

.faq-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================
   WHY CHOOSE DETAILS SECTION
   ========================================== */
.why-intro-text {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.why-sub-text {
  margin-bottom: 2rem;
}

.why-list-detailed {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-list-detailed li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.why-list-detailed li i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.why-list-detailed li strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.why-list-detailed li span {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.form-card-solid {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 3rem;
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.form-card-solid h3 {
  margin-bottom: 0.25rem;
}

.form-card-solid p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-card-solid label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-card-solid input {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-normal);
  font-weight: 500;
}

.form-card-solid input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.25);
  background-color: #FFFFFF;
}

/* ==========================================
   BLOGS GRID SECTION
   ========================================== */
.blogs-section {
  background-color: var(--bg-primary);
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: var(--transition-normal);
}

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

.blog-img {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-text {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-text h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-readmore {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================
   FOOTER STYLING
   ========================================== */
.main-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 5rem 0 2rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.brand-col p {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
}



.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.rera-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.rera-links strong {
  color: var(--text-primary);
}

.footer-contact {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.footer-divider {
  height: 1px;
  background-color: var(--border-glass);
  margin-bottom: 2rem;
}

.footer-bottom {
  text-align: center;
}

.disclaimer {
  font-size: 0.75rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.copyright {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0;
}

/* ==========================================
   FLOATING ACTION BUTTONS
   ========================================== */
.floating-contact-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 99;
}

.widget-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.35rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  position: relative;
  transition: var(--transition-normal);
}

.widget-label {
  position: absolute;
  right: 60px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.widget-btn:hover {
  transform: scale(1.1);
}

.widget-btn:hover .widget-label {
  opacity: 1;
  right: 62px;
}

.call-btn {
  background-color: #2563EB;
}
.whatsapp-btn {
  background-color: #25D366;
}
.enquire-btn {
  background-color: var(--primary);
  color: #05070a;
}

/* ==========================================
   DIALOGS & MODAL OVERLAYS
   ========================================== */
dialog::backdrop {
  background-color: rgba(7, 10, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity var(--transition-normal) ease;
}

dialog[open]::backdrop {
  opacity: 1;
}

dialog {
  margin: auto;
  border: none;
  background: none;
  max-width: 500px;
  width: calc(100% - 2rem);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-normal) ease, transform var(--transition-normal) ease;
}

dialog[open] {
  opacity: 1;
  transform: translateY(0);
}

.modal-card, .success-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-top: 4px solid var(--primary);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  width: 100%;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: rgba(15, 23, 42, 0.05);
  color: var(--text-primary);
}

.modal-header {
  margin-bottom: 1.75rem;
}

.modal-header h3 {
  margin-bottom: 0.25rem;
}

.modal-header p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.success-modal {
  max-width: 420px;
}

.success-card {
  border-top-color: var(--accent);
}

.success-icon {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.success-card p {
  margin-bottom: 0.5rem;
}

.success-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.zoom-modal {
  max-width: 90%;
  max-height: 90vh;
  width: auto;
}

.zoom-modal-container {
  position: relative;
  max-width: 1000px;
  background-color: #ffffff;
  padding: 2rem 1rem 1rem 1rem;
  border-radius: 8px;
}

.zoomed-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  margin: 0 auto;
}

.zoom-close {
  color: #05070a;
}
.zoom-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000000;
}

/* ==========================================
   SCROLL REVEAL INTERSECTION OBSERVER
   ========================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* ==========================================
   RESPONSIVENESS & MOBILE OPTIMIZATIONS
   ========================================== */

/* ---- Tablet: 768px–1024px ---- */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 1.9rem; }
  .grid-2col { gap: 2rem; }
  .footer-top { gap: 2.5rem; }

  .highlights-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

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

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

  .floor-plans-block {
    padding: 2rem 1.5rem;
  }
}

/* ---- Nav breaks at 900px ---- */
@media (max-width: 900px) {
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(7, 10, 16, 0.94) 0%, rgba(7, 10, 16, 0.78) 55%, rgba(7, 10, 16, 0.35) 100%);
  }

  /* ---------- Mobile Nav ---------- */
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 5.5rem;
    left: -100%;
    width: 100%;
    height: calc(100vh - 5.5rem);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-normal);
    z-index: 98;
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--border-glass);
    overflow-y: auto;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav-link {
    font-size: 1.25rem;
    color: var(--text-secondary) !important;
  }
  .nav-link:hover, .nav-link.active {
    color: var(--text-primary) !important;
  }

  .header-cta .btn {
    display: none;
  }

  /* Shrink phone number so it fits beside the hamburger */
  .phone-link {
    font-size: 0.78rem;
    font-weight: 700;
    gap: 0.3rem;
    letter-spacing: -0.2px;
    white-space: nowrap;
  }

  .header-cta {
    gap: 0.6rem;
  }

  .header-container {
    padding: 0.75rem 1rem;
  }

  /* ---------- Hero ---------- */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-form-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  /* ---------- Shared 2-col grid ---------- */
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-image {
    order: -1;
  }

  /* ---------- Highlights ---------- */
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .highlight-description-box,
  .highlights-list-box {
    padding: 1.75rem 1.5rem;
  }

  /* ---------- Floor Plans ---------- */
  .master-plan-block {
    padding: 1.75rem 1.5rem;
    margin-bottom: 2.5rem;
  }

  .master-plan-features-list {
    margin-top: 1rem;
  }

  .floor-plans-block {
    padding: 1.75rem 1.25rem;
  }

  .floor-plan-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .tab-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .floor-plan-details {
    margin-bottom: 2rem;
  }

  .layout-specs-box {
    padding: 1.75rem 1.5rem;
    margin-top: 2rem;
  }

  /* ---------- Amenities ---------- */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* ---------- Gallery ---------- */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* ---------- Location ---------- */
  .location-tabs-content {
    min-height: auto;
  }

  .loc-highlights-box {
    padding: 1.5rem;
  }

  /* ---------- Phase Section ---------- */
  .phase-improvements,
  .why-invest-phase,
  .early-bird-offer {
    padding: 1.5rem;
  }

  .glass-info-card {
    padding: 2rem 1.5rem;
  }

  /* ---------- Footer ---------- */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .main-footer {
    padding: 3.5rem 0 2rem 0;
  }
}

/* ---- Mobile: ≤768px (table → card conversion + more layout fixes) ---- */
@media (max-width: 768px) {
  /* Pricing table → stacked cards */
  .pricing-section .section-header {
    margin-bottom: 2rem;
  }

  .table-responsive {
    border: none;
    background: none;
    box-shadow: none;
  }

  .pricing-data-table {
    min-width: auto !important;
  }

  .pricing-data-table,
  .pricing-data-table thead,
  .pricing-data-table tbody,
  .pricing-data-table tr,
  .pricing-data-table th,
  .pricing-data-table td {
    display: block;
    width: 100%;
  }

  .pricing-data-table thead {
    display: none;
  }

  .pricing-data-table tbody tr {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
  }

  .pricing-data-table tbody tr:hover {
    border-color: var(--border-gold);
    background-color: rgba(197, 160, 40, 0.05);
  }

  .pricing-data-table td {
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
  }

  .pricing-data-table td:last-child {
    border-bottom: none;
    justify-content: center;
    margin-top: 1rem;
    padding-bottom: 0;
  }

  .pricing-data-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .btn-table-cta {
    width: 100%;
    padding: 0.75rem 0;
    text-align: center;
  }

  /* Highlights: 2-col → 1-col on very small tablets */
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Amenity: 2-col → 1-col */
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery: 2-col → 1-col */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Location bullets: 2-col → 1-col */
  .loc-bullets {
    grid-template-columns: 1fr;
  }

  /* FAQ summary padding reduction */
  .faq-accordion summary {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .faq-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  /* Visit us block */
  .visit-us-block {
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
  }

  /* Phase section */
  .construction-bullets > li {
    font-size: 0.95rem;
  }
}

/* ---- Small phones: ≤600px ---- */
@media (max-width: 600px) {
  :root {
    --section-padding: 3rem 0;
  }

  body {
    font-size: 0.95rem;
  }

  /* Typography scale-down */
  h1 { font-size: 2rem; line-height: 1.25; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.25rem; }

  .hero-section {
    padding-top: 6.5rem;
  }

  .hero-section h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .hero-tagline {
    font-size: 0.75rem;
  }

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

  .price-value {
    font-size: 1.35rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

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

  /* Highlights grid: 2-col on small phones stays, shrinks nicely */
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .highlight-card {
    padding: 1rem;
    gap: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .highlight-info p {
    font-size: 0.95rem;
  }

  /* Stacked forms */
  .glass-form-card {
    padding: 1.5rem 1rem;
  }

  /* Floor plan tabs wrap nicely */
  .floor-plan-tabs {
    gap: 0.4rem;
  }

  .tab-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }

  /* Pane details table: stack th/td */
  .pane-details-table th,
  .pane-details-table td {
    display: block;
    width: 100%;
    padding: 0.4rem 0;
    border-bottom: none;
  }

  .pane-details-table th {
    padding-top: 0.85rem;
    color: var(--text-muted);
    font-size: 0.8rem;
  }

  .pane-details-table tr {
    border-bottom: 1px solid var(--border-glass);
  }

  .pane-details-table tr:last-child {
    border-bottom: none;
  }

  /* Location tabs: stack vertically */
  .location-tabs {
    flex-direction: column;
    gap: 0.25rem;
  }

  .loc-tab {
    padding: 0.65rem 1rem;
    text-align: left;
  }

  /* Phase section */
  .phase-improvements,
  .why-invest-phase,
  .early-bird-offer {
    padding: 1.25rem 1rem;
  }

  .phase-improvements-list li {
    font-size: 0.9rem;
  }

  /* FAQ */
  .faq-accordion summary {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .faq-content {
    padding: 0 1rem 1rem 1rem;
  }

  /* Footer */
  .footer-top {
    gap: 2rem;
  }

  .rera-links {
    font-size: 0.8rem;
    word-break: break-all;
  }

  /* Modals */
  .glass-form-card {
    padding: 1.75rem 1.25rem;
  }

  .form-card-solid {
    padding: 1.75rem 1.25rem;
  }

  .modal-card {
    padding: 2rem 1.25rem;
  }

  .highlight-description-box,
  .highlights-list-box,
  .master-plan-block,
  .layout-specs-box {
    padding: 1.5rem 1.25rem;
  }

  /* Visit us block */
  .visit-us-block {
    padding: 2rem 1.25rem;
  }

  .visit-us-block h3 {
    font-size: 1.35rem;
  }

  /* Floating widget */
  .floating-contact-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .widget-btn {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  /* Section header spacing */
  .section-header {
    margin-bottom: 2.5rem;
  }
}

/* ---- Very small phones: ≤420px ---- */
@media (max-width: 420px) {
  /* Shrink logo so phone number + hamburger have enough room */
  .logo img {
    width: 130px !important;
    height: auto !important;
  }

  .phone-link {
    font-size: 0.7rem;
    gap: 0.2rem;
  }

  /* Make the "Authorized Partner" subtitle under logo even smaller */
  .logo a > span {
    font-size: 0.55rem !important;
    letter-spacing: 0.5px !important;
  }

  .menu-toggle {
    font-size: 1.25rem;
  }
}
