/*
/* Additional styles for listings page and enhanced features */

/* Search Section Enhancements */
.search-section {
  padding: 2rem 0;
}

.filter-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.advanced-filters {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* Results Summary */
.results-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-light);
}

.results-info p {
  margin: 0;
  color: var(--medium-gray);
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-options select {
  padding: 10px 15px;
  border: 2px solid var(--border-light);
  border-radius: 25px;
  background: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
}

.view-toggle {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border-light);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.view-btn.active,
.view-btn:hover {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  color: var(--white);
}

/* List View Styles */
.listing-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.listing-grid.list-view .listing-card {
  display: flex;
  max-width: none;
  height: 300px;
}

.listing-grid.list-view .listing-image {
  width: 400px;
  flex-shrink: 0;
}

.listing-grid.list-view .listing-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.listing-grid.list-view .listing-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.listing-grid.list-view .listing-footer {
  margin-top: auto;
}

/* Property Listings Section */
.property-listings {
  padding: 2rem 0 4rem;
}

/* Enhanced Property Cards */
.listing-card {
  position: relative;
  overflow: hidden;
}

.listing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 1;
  pointer-events: none;
}

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

/* Enhanced Image Gallery */
.image-gallery {
  position: relative;
  overflow: hidden;
}

.image-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 60%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

/* Enhanced Tags */
.listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Enhanced Action Buttons */
.listing-actions {
  flex-direction: column;
  gap: 0.5rem;
}

.action-btn {
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Enhanced Listing Info */
.listing-info {
  position: relative;
}

.listing-info::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* Price Enhancement */
.price {
  position: relative;
  display: inline-block;
}

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

/* Enhanced Virtual Tour Link */
.virtual-tour {
  position: relative;
  overflow: hidden;
}

.virtual-tour::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.2), transparent);
  transition: var(--transition-medium);
}

.virtual-tour:hover::before {
  left: 100%;
}

/* Load More Button Enhancement */
#load-more {
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

/* Search Suggestions */
.search-suggestions {
  animation: slideDown 0.3s ease;
}

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

.suggestion-item:hover {
  background-color: var(--light-gray);
}

.suggestion-item:last-child {
  border-bottom: none;
}

/* Enhanced Form Elements */
.search-filters input:focus,
.search-filters select:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.2);
}

/* Advanced Filters Animation */
.advanced-filters {
  animation: slideDown 0.3s ease;
}

/* Responsive Enhancements for Listings */
@media (max-width: 768px) {
  .results-summary {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .sort-options {
    justify-content: center;
  }

  .filter-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .listing-grid.list-view .listing-card {
    flex-direction: column;
    height: auto;
  }

  .listing-grid.list-view .listing-image {
    width: 100%;
    height: 250px;
  }

  .view-toggle {
    order: -1;
  }
}

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

  .results-summary {
    margin: 1rem 0;
    padding: 1rem;
  }

  .sort-options {
    flex-direction: column;
    gap: 0.5rem;
  }

  .sort-options select {
    width: 100%;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-blue);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Enhanced Hover Effects */
.listing-card:hover .listing-image img {
  transform: scale(1.05);
}

.listing-card:hover .price {
  color: var(--accent-gold);
}

.listing-card:hover .listing-info h3 {
  color: var(--primary-blue);
}

/* Accessibility Enhancements */
.listing-card:focus-within {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

.btn:focus,
.action-btn:focus,
.view-btn:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .search-section,
  .footer {
    display: none;
  }

  .listing-card {
    break-inside: avoid;
    margin-bottom: 2rem;
  }

  .listing-actions,
  .virtual-tour {
    display: none;
  }
}
/*
 * HOMS Real Estate Group - Professional Website Styles
 * Modern, luxury real estate website design with premium aesthetics
 */

/* CSS Custom Properties */
:root {
  /* Primary Color Palette */
  --primary-navy: #1a2332;
  --primary-blue: #2c5aa0;
  --accent-gold: #d4af37;
  --accent-light-gold: #f4e4a6;

  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --border-light: #e9ecef;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1a2332 0%, #2c5aa0 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
  --gradient-overlay: linear-gradient(rgba(26, 35, 50, 0.8), rgba(44, 90, 160, 0.6));

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;

  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

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

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-medium);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: var(--gradient-gold);
  color: var(--primary-navy);
  box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

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

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-navy);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 35, 50, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background: rgba(26, 35, 50, 0.98);
  box-shadow: var(--shadow-medium);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 80px;
}

.logo img {
  height: 50px;
  transition: var(--transition-fast);
}

.logo:hover img {
  transform: scale(1.05);
}

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

.nav a {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 10px 0;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img,
.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

/* Search Box */
.search-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-heavy);
  margin-top: 2rem;
}

.search-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.search-row input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.search-row input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.search-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.search-filters select {
  padding: 12px 20px;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  font-size: 0.95rem;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.search-filters select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.advanced-search {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.95rem;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down a {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Listings */
.featured-listings {
  background: var(--light-gray);
  padding: var(--section-padding);
}

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

.listing-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  position: relative;
}

.listing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.listing-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-gold);
  color: var(--primary-navy);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.listing-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.listing-tags {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 8px;
}

.tag.new {
  background: #28a745;
  color: var(--white);
}

.tag.hot {
  background: #dc3545;
  color: var(--white);
}

.tag.reduced {
  background: #ffc107;
  color: var(--primary-navy);
}

.listing-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: var(--transition-fast);
}

.listing-card:hover .listing-actions {
  opacity: 1;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.action-btn:hover {
  background: var(--white);
  transform: scale(1.1);
}

.gallery-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.gallery-nav span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-nav span.active {
  background: var(--white);
}

.listing-info {
  padding: 2rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.listing-info h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.listing-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.listing-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--medium-gray);
  font-size: 0.95rem;
}

.listing-details i {
  color: var(--primary-blue);
}

.listing-description {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.listing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.virtual-tour {
  color: var(--primary-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.virtual-tour:hover {
  color: var(--accent-gold);
}

/* Services Section */
.services {
  padding: var(--section-padding);
}

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

.service-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Stats Section */
.stats {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--section-padding);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials {
  background: var(--light-gray);
  padding: var(--section-padding);
}

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

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: var(--accent-gold);
  font-family: serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--primary-navy);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition-fast);
  }
  
  .nav ul.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .search-row {
    flex-direction: column;
  }
  
  .search-filters {
    grid-template-columns: 1fr;
  }
  
  .listing-grid {
    grid-template-columns: 1fr;
  }
  
  .listing-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .search-box {
    padding: 20px;
  }
  
  .listing-card {
    margin: 0 10px;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.bg-light {
  background-color: var(--light-gray);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }