/* CSS Design System for Luxury New Projects */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  --primary-navy: #0C2340;
  --primary-navy-dark: #071526;
  --primary-navy-light: #1A365D;
  --accent-gold: #B8975F;
  --accent-gold-light: #D4AF37;
  --accent-gold-dark: #96743F;
  --bg-light: #FBFBFA;
  --bg-cream: #F5F2EB;
  --text-dark: #2C2C2C;
  --text-muted: #666666;
  --border-light: rgba(184, 151, 95, 0.2);
  --border-muted: #E2E8F0;
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  
  /* Layout */
  --header-height: 80px;
  --container-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 15px 30px rgba(7, 21, 38, 0.08);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--primary-navy);
  font-weight: 600;
  line-height: 1.3;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-dark {
  background-color: var(--primary-navy);
  color: #FFFFFF;
}

.section-dark h2, .section-dark h3 {
  color: #FFFFFF;
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
}

.btn-primary:hover {
  background-color: var(--primary-navy-dark);
  border-color: var(--primary-navy-dark);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  border-color: var(--accent-gold);
}

.btn-accent:hover {
  background-color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
  background-color: #20BA5A;
  border-color: #20BA5A;
  transform: translateY(-2px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: var(--primary-navy-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo img {
  height: 42px;
}

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

.nav-item {
  position: relative;
  margin-left: 28px;
}

.nav-link {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 0;
}

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

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  min-width: 220px;
  box-shadow: var(--shadow-premium);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  list-style: none;
  padding: 10px 0;
  border-top: 3px solid var(--accent-gold);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 10px 20px;
  color: var(--primary-navy);
  font-size: 14px;
  font-weight: 500;
}

.dropdown-item a:hover {
  background-color: var(--bg-light);
  color: var(--accent-gold);
  padding-left: 25px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #FFFFFF;
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(7, 21, 38, 0.7) 0%, rgba(7, 21, 38, 0.5) 100%);
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 650px;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.hero-content h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.hero-content p {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Search Bar Slider/Card */
.search-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-top: 4px solid var(--accent-gold);
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: flex-end;
}

.search-field {
  display: flex;
  flex-direction: column;
}

.search-field label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.search-field select, .search-field input {
  padding: 12px;
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  background-color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: var(--transition-smooth);
}

.search-field select:focus, .search-field input:focus {
  border-color: var(--accent-gold);
}

.search-card .btn-search {
  width: 100%;
  padding: 14px;
  background-color: var(--accent-gold);
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.search-card .btn-search:hover {
  background-color: var(--accent-gold-dark);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 15px auto 0;
}

/* Property Grid & Cards */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.property-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(7, 21, 38, 0.12);
}

.property-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.property-card:hover .property-img img {
  transform: scale(1.1);
}

.property-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-navy);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.property-price-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: var(--accent-gold);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
}

.property-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.property-location i {
  color: var(--accent-gold);
  margin-right: 5px;
}

.property-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  min-height: 52px;
  color: var(--primary-navy) !important;
}

.property-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.spec-item i {
  color: var(--accent-gold);
  margin-right: 8px;
  font-size: 16px;
}

.property-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: auto;
}

.property-actions .btn {
  padding: 10px 15px;
  font-size: 12px;
}

/* Category Grid Header Page Section */
.page-header {
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 21, 38, 0.85);
}

.page-header .container {
  position: relative;
  z-index: 10;
  color: #FFFFFF;
}

.page-header h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 10px;
}

.page-header p {
  color: var(--accent-gold);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sidebar filter layout */
.filter-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 60px 0;
}

.filter-sidebar {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-widget {
  margin-bottom: 24px;
}

.filter-widget:last-child {
  margin-bottom: 0;
}

.filter-widget h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent-gold);
}

/* About Section */
.about-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.about-text h6 {
  color: var(--accent-gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  background-color: var(--bg-cream);
  padding: 20px;
  border-radius: 4px;
  border-left: 4px solid var(--accent-gold);
}

.stat-box h3 {
  font-size: 32px;
  color: var(--primary-navy);
  margin-bottom: 5px;
}

.stat-box span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Location Highlight */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.location-card {
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
}

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

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 21, 38, 0.9) 0%, rgba(7, 21, 38, 0.2) 100%);
  z-index: 5;
}

.location-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  color: #FFFFFF;
  z-index: 10;
}

.location-card-content h3 {
  color: #FFFFFF;
  font-size: 22px;
  margin-bottom: 5px;
}

.location-card-content span {
  font-size: 14px;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-card:hover img {
  transform: scale(1.1);
}

/* Detail Page Layout */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.gallery-container {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-premium);
  height: 480px;
}

.gallery-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
  margin-bottom: 30px;
}

.detail-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.detail-location {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 25px;
}

.detail-location i {
  color: var(--accent-gold);
  margin-right: 8px;
}

.detail-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.detail-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.detail-grid-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.detail-spec-box {
  background-color: var(--bg-cream);
  padding: 15px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.detail-spec-box span:first-child {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.detail-spec-box span:last-child {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.amenity-item {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.amenity-item i {
  color: var(--accent-gold);
  margin-right: 10px;
  font-size: 18px;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
}

.sidebar-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

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

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent-gold);
}

.sidebar-card button {
  width: 100%;
  margin-top: 10px;
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  padding: 50px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-info h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-gold);
  margin-top: 15px;
}

.contact-info p {
  color: #CCCCCC;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
}

.contact-detail-item i {
  color: var(--accent-gold);
  font-size: 20px;
  margin-right: 15px;
  margin-top: 4px;
}

.contact-detail-item div h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-detail-item div p {
  margin-bottom: 0;
  color: #CCCCCC;
  font-size: 14px;
}

.contact-form-container {
  background-color: #FFFFFF;
  padding: 50px;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
}

.contact-form-container h3 {
  font-size: 28px;
  margin-bottom: 25px;
}

.map-container {
  height: 400px;
  width: 100%;
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
}

/* Footer */
footer {
  background-color: var(--primary-navy-dark);
  color: #FFFFFF;
  padding: 80px 0 30px;
  font-size: 14px;
}

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

.footer-about img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-about p {
  color: #CCCCCC;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
  font-size: 16px;
  color: var(--accent-gold);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-links ul li a {
  color: #CCCCCC;
}

.footer-links ul li a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-contact p {
  color: #CCCCCC;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  color: var(--accent-gold);
  margin-right: 10px;
  font-size: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--accent-gold);
  color: var(--primary-navy-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #999999;
  font-size: 12px;
}

.rera-disclaimer {
  color: #666666;
  font-size: 11px;
  text-align: justify;
  line-height: 1.5;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating Action Button (FAB) Mobile */
.floating-contact-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

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

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  gap: 8px;
}

.floating-btn.call {
  background-color: var(--primary-navy);
  color: #FFFFFF;
}

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

/* Modal Overlay Form */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 21, 38, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.modal-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-premium);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

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

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

.modal-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.modal-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animated {
  animation: fadeIn 0.8s forwards ease;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 38px;
  }
  
  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--primary-navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    transition: var(--transition-smooth);
    overflow-y: auto;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin-left: 0;
    margin-bottom: 25px;
    width: 100%;
  }
  
  .nav-link {
    font-size: 16px;
    display: block;
    width: 100%;
  }
  
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    padding: 10px 0 0 15px;
    display: none;
  }
  
  .nav-item.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-item a {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .search-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .property-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-layout {
    grid-template-columns: 1fr;
  }
  
  .filter-sidebar {
    position: static;
    margin-bottom: 30px;
  }
  
  .about-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-contact-bar {
    display: block;
  }
  
  body {
    padding-bottom: 50px; /* Space for mobile floating bar */
  }

  .gallery-container {
    height: 280px;
  }

  .detail-grid-specs {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }
}
