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

:root {
  --primary-navy: #091322;
  --navy-card: #112239;
  --navy-light: #1b3252;
  --navy-hover: #233e66;
  
  --accent-gold: #dfa845;
  --accent-gold-light: #f7d288;
  --accent-gold-gradient: linear-gradient(135deg, #e5b760 0%, #b8860b 100%);
  --accent-blue: #00b4d8;
  --accent-teal: #06d6a0;
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --bg-gradient: linear-gradient(180deg, #091322 0%, #0d1d33 50%, #070e19 100%);
  --glass-bg: rgba(17, 34, 57, 0.75);
  --glass-border: rgba(223, 168, 69, 0.22);
  --glass-border-hover: rgba(223, 168, 69, 0.5);
  --shadow-glow: 0 10px 30px rgba(223, 168, 69, 0.15);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.35);
  
  --font-body: 'Be Vietnam Pro', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* TYPOGRAPHY UTILS */
.heading-primary {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-secondary {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.heading-secondary span {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.text-gradient {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223, 168, 69, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(223, 168, 69, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

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

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

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

section {
  padding: 6rem 0;
  position: relative;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--accent-gold-gradient);
  color: #000;
  box-shadow: 0 8px 20px rgba(225, 183, 96, 0.3);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(225, 183, 96, 0.45);
  background: linear-gradient(135deg, #f7d288 0%, #d49b13 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(223, 168, 69, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  transform: translateY(-3px);
}

/* HEADER & NAVBAR */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.2rem 0;
}

.header.scrolled {
  background: rgba(9, 19, 34, 0.92);
  backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(223, 168, 69, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.logo-badge {
  background: var(--accent-gold-gradient);
  color: #000;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: radial-gradient(circle at 70% 30%, rgba(0, 180, 216, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(223, 168, 69, 0.1) 0%, transparent 50%),
              var(--primary-navy);
  position: relative;
  overflow: hidden;
}

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

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

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.2rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.hero-img-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 30px 60px rgba(223, 168, 69, 0.2);
}

.hero-img-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(9, 19, 34, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.floating-info h4 {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 700;
}

.floating-info p {
  font-size: 0.85rem;
  color: var(--accent-gold);
}

/* PROJECT OVERVIEW SECTION */
.overview {
  background: var(--navy-card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.overview-text p {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.spec-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  transition: var(--transition);
}

.spec-card:hover {
  background: rgba(223, 168, 69, 0.06);
  border-color: var(--glass-border);
}

.spec-card .icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.spec-card label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.spec-card span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* LOCATION SECTION */
.location-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.location-borders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.border-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.border-dir {
  background: var(--accent-gold-gradient);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 6px;
}

.border-detail h5 {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.border-detail p {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.nearby-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nearby-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-gold);
}

.nearby-item span {
  font-weight: 600;
}

.nearby-item .distance {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.location-map-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--navy-card);
  padding: 1.5rem;
}

/* AMENITIES SECTION */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.amenity-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border);
  box-shadow: var(--shadow-card);
}

.amenity-card:hover::before {
  opacity: 1;
}

.amenity-icon {
  width: 56px;
  height: 56px;
  background: rgba(223, 168, 69, 0.12);
  color: var(--accent-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.amenity-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

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

/* FLOOR PLAN SECTION */
.floorplan-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--accent-gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(223, 168, 69, 0.3);
}

.floorplan-display {
  background: var(--navy-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.floorplan-graphic {
  background: rgba(9, 19, 34, 0.8);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px dashed rgba(223, 168, 69, 0.3);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.floorplan-details h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.floorplan-details p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.unit-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.unit-specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.unit-specs-table td {
  padding: 10px 0;
  font-size: 0.95rem;
}

.unit-specs-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--text-primary);
}

/* MORTGAGE CALCULATOR SECTION */
.calculator-section {
  background: radial-gradient(circle at 50% 50%, rgba(223, 168, 69, 0.08) 0%, transparent 70%), var(--primary-navy);
}

.calc-box {
  background: var(--navy-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  box-shadow: var(--shadow-card);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}

.form-group label span.val-display {
  color: var(--accent-gold);
  font-weight: 700;
}

.input-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(9, 19, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.input-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(223, 168, 69, 0.2);
}

input[type="range"] {
  accent-color: var(--accent-gold);
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.calc-result-card {
  background: rgba(9, 19, 34, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.result-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.result-header h4 {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.result-monthly {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin: 0.5rem 0;
}

.result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.breakdown-row span:last-child {
  font-weight: 700;
}

/* NOXH GUIDE WIZARD */
.guide-wizard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.wizard-step {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  position: relative;
}

.step-num {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 36px;
  height: 36px;
  background: var(--accent-gold-gradient);
  color: #000;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(223, 168, 69, 0.4);
}

.wizard-step h4 {
  font-size: 1.15rem;
  margin: 1rem 0 0.6rem 0;
  font-weight: 700;
}

.wizard-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* PROGRESS TIMELINE */
.timeline {
  max-width: 900px;
  margin: 3rem auto 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--glass-border);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  position: relative;
  margin-bottom: 2.5rem;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 30px;
  margin-left: auto;
}

.timeline-dot {
  position: absolute;
  top: 15px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--primary-navy);
  box-shadow: 0 0 12px var(--accent-gold);
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -8px;
}

.timeline-content {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  width: 100%;
}

.timeline-content .date {
  display: inline-block;
  background: rgba(223, 168, 69, 0.15);
  color: var(--accent-gold);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 19, 34, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* CONSULTATION REGISTRATION CTA SECTION */
.cta-banner {
  background: linear-gradient(135deg, #112239 0%, #0d1b2e 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(223, 168, 69, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-form-inline {
  display: flex;
  gap: 1rem;
  max-width: 650px;
  margin: 2.5rem auto 0 auto;
  flex-wrap: wrap;
}

.cta-form-inline input {
  flex: 1;
  min-width: 220px;
}

/* FOOTER */
.footer {
  background: #050a12;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-col h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

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

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

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

/* MODAL & TOAST */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--navy-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

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

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--accent-gold);
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy-card);
  border: 1px solid var(--accent-gold);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-grid,
  .overview-grid,
  .location-content,
  .floorplan-display,
  .calc-box {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guide-wizard {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amenities-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .guide-wizard {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }
  
  .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 12px;
  }
  
  .cta-form-inline {
    flex-direction: column;
  }
}
