.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.amenity-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.amenity-item label {
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.amenity-item:hover label {
    color: #007bff;
}

/*
body.home-page {
    background-image: url('../images/doremon.jpeg.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
*/

.bg-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5; /* Adjust for visibility */
    pointer-events: none; /* So it doesn't block clicks */
}

.view-details-btn {
    background: linear-gradient(90deg, #4f8cff 0%, #38e8fa 100%);
    color: #fff !important;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(79, 140, 255, 0.12);
    padding: 10px 32px;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    letter-spacing: 0.5px;
}

.view-details-btn:hover {
    background: linear-gradient(90deg, #38e8fa 0%, #4f8cff 100%);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(56, 232, 250, 0.18);
    transform: translateY(-2px) scale(1.03);
}

/* --- Responsive Styles for Mobile --- */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .container {
    width: 98%;
    padding: 0 1vw;
    max-width: 100vw;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: 0 0 12px 12px;
    margin: 0;
    padding: 1rem 0;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 10000;
    margin-left: 12px;
  }
  .hamburger .line {
    width: 28px;
    height: 4px;
    background: #3498db;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .auth-buttons {
    flex-direction: column;
    gap: 8px;
    margin-top: 1rem;
  }
  .auth-buttons .btn {
    width: 90vw;
    max-width: 320px;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 20px;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .section-header p {
    font-size: 1rem;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  .properties-grid, .locations-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .property-card, .location-card {
    min-width: 0;
    max-width: 100vw;
  }
  .modern-hero, .hero-content {
    padding: 1.5rem 0 !important;
  }
  .mobile-desktop-suggestion {
    font-size: 0.98rem;
    padding: 10px 8px;
    max-width: 98vw;
  }
}