/* ==========================================================================
   PIXEL DESARROLLOS — BRAND STYLES & DESIGN SYSTEM
   Brand Manual Compliance: Deep Blues, High-Contrast Neutrals, Accent Orange
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Kanit:wght@400;500;600;700&display=swap');

:root {
  /* Brand Palette */
  --primary-navy: #070D18;
  --primary-blue: #001F82;
  --accent-blue: #1149D3;
  --accent-blue-light: #3862FF;
  --accent-orange: #F27713;
  --accent-orange-hover: #D96202;
  
  /* Neutrals */
  --bg-dark: #070D18;
  --bg-dark-card: #0F172A;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-dim: #94A3B8;
  
  /* Borders & Shadows */
  --border-light: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 31, 130, 0.15);
  --shadow-glow: 0 0 30px rgba(242, 119, 19, 0.35);

  /* Typography */
  --font-title: 'Kanit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.2;
}

.section-title.light {
  color: var(--bg-white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(242, 119, 19, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 119, 19, 0.45);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: var(--accent-blue);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--bg-white);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--bg-white);
}

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline-dark:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(7, 13, 24, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bg-white);
  letter-spacing: 0.5px;
}

.brand-text span {
  color: var(--accent-orange);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

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

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

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

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(7, 13, 24, 0.92) 0%, rgba(0, 31, 130, 0.82) 100%),
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  color: var(--bg-white);
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--bg-light), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(242, 119, 19, 0.15);
  border: 1px solid rgba(242, 119, 19, 0.4);
  color: var(--accent-orange);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: var(--accent-orange);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
  max-width: 680px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1;
}

.stat-number span {
  color: var(--accent-orange);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Disclaimers Section */
.disclaimers-section {
  padding: 3rem 0;
  background-color: var(--bg-light);
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.disclaimer-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent-orange);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.disclaimer-icon {
  color: var(--accent-orange);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.disclaimer-content h4 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.disclaimer-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Projects Section & Filters */
.projects-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

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

.filter-btn {
  padding: 0.6rem 1.35rem;
  border-radius: 50px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: #E2E8F0;
}

.filter-btn.active {
  background: var(--primary-blue);
  color: var(--bg-white);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 31, 130, 0.25);
}

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

.project-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 31, 130, 0.3);
}

.card-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.project-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

.status-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.status-badge.pozo { background-color: #2563EB; }
.status-badge.construccion { background-color: #D97706; }
.status-badge.terminaciones { background-color: #10B981; }

.neighborhood-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.3rem 0.75rem;
  background: rgba(7, 13, 24, 0.8);
  backdrop-filter: blur(6px);
  color: var(--bg-white);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.card-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.detail-box {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.detail-value {
  font-size: 0.95rem;
  color: var(--primary-navy);
  font-weight: 600;
  margin-top: 0.15rem;
}

.card-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.price-amount {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Map Section */
.map-section {
  padding: 6rem 0;
  background-color: var(--bg-dark);
  color: var(--bg-white);
}

.map-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-dark);
  height: 520px;
}

#map {
  width: 100%;
  height: 100%;
  background: var(--bg-dark-card);
}

/* Custom Leaflet Marker Styling */
.custom-leaflet-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary-blue);
  border: 2px solid var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(242, 119, 19, 0.5);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.custom-leaflet-marker:hover {
  transform: scale(1.2);
}

.custom-leaflet-marker img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.leaflet-popup-content-wrapper {
  background: var(--bg-dark-card);
  color: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--border-dark);
  padding: 0;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0;
  width: 260px !important;
}

.popup-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.popup-info {
  padding: 1rem;
}

.popup-info h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--bg-white);
  margin-bottom: 0.25rem;
}

.popup-info p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.popup-price {
  font-weight: 700;
  color: var(--accent-orange);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

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

.about-text h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.value-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 31, 130, 0.08);
  color: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.value-info h5 {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--primary-navy);
}

.value-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.about-img-main {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary-blue);
  color: var(--bg-white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  max-width: 200px;
}

.about-img-badge h4 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--accent-orange);
  line-height: 1;
}

.about-img-badge p {
  font-size: 0.8rem;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Contact Section & Form */
.contact-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.contact-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--primary-navy);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info-side {
  background: linear-gradient(145deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
  padding: 3.5rem;
  color: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-side h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info-side p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.info-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

.contact-form-side {
  padding: 3.5rem;
  background: var(--bg-white);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(17, 73, 211, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Modal Toast */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 13, 24, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.modal-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}

.modal-card h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.modal-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  z-index: 999;
  font-size: 1.8rem;
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* Footer */
.footer {
  background-color: var(--primary-navy);
  color: var(--bg-white);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}

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

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--bg-white);
}

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

.footer-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   SUBPAGE STYLES (Individual Project Detail Pages)
   ========================================================================== */

.project-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 10rem 0 4rem;
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
}

.project-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--primary-navy) 0%, rgba(7, 13, 24, 0.4) 60%, rgba(7, 13, 24, 0.7) 100%);
}

.project-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

.project-hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.project-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.project-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark);
  padding: 1.5rem 2rem;
  border-radius: 12px;
}

.highlight-box label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 600;
}

.highlight-box div {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg-white);
  margin-top: 0.2rem;
}

.highlight-box div.orange {
  color: var(--accent-orange);
}

.project-body-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

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

.spec-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.5rem;
}

.spec-card h5 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.spec-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.amenity-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 0.95rem;
}

.amenity-icon-box {
  width: 32px;
  height: 32px;
  background: var(--primary-blue);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .about-grid, .contact-card-wrap {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--primary-navy);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: var(--transition-normal);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .mobile-toggle {
    display: block;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
