* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Heading Styles */

.section-heading:hover,
h2:hover {
  color: #2d5016;
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(45, 80, 22, 0.3);
}
.contact,
.footer {
  background-image: url(media/images/bg2.webp) !important;
}

.text-center {
  text-align: center;
}

/* Scarcity Banner */
.scarcity-banner {
  background: url(/media/images/b1.jpg);
  padding: 2rem 0;
  color: white;
}

.scarcity-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.scarcity-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.scarcity-text p {
  margin: 0.3rem 0;
  font-size: 1.1rem;
}

.scarcity-btn {
  background: #fff;
  color: #ff4757;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.scarcity-btn:hover {
  background: #f1f2f6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  backdrop-filter: blur(2x);
  z-index: 1000;
  /* padding: 1rem 0; */
  transition: all 0.3s ease;
}

.navbar.sticky {
  background: #2d5016 !important;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 20px; */
}

.nav-logo img {
  height: 70px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #2d5016;
}

.nav-contact {
  color: #ffffff;
  font-weight: bold;
}

.nav-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.nav-contact a:hover {
  color: #2d5016;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight {
  color: #2d5016;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: #2d5016;
  color: white;
}

.btn-primary:hover {
  background: #2d5016 !important;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #333;
}

.hero-features {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem;
  color: white;
}

.feature-item {
  text-align: center;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2d5016;
}

/* Intro Section */
.intro-section {
  padding: 2rem 0;
  background: white;
  text-align: center;
}

.intro-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.intro-content p {
  font-size: 1.3rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Amenities Section */
.amenities {
  padding: 2rem 0;
  background: #f8f8f8;
}

.amenities-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.amenities-left h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.amenity-description h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d5016;
}

.amenity-description p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.amenity-description ul {
  list-style: none;
}

.amenity-description li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.amenity-description li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d5016;
  font-weight: bold;
}

.amenity-slider {
  position: relative;
}

.slider-container {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-btn.active {
  background: #2d5016;
  transform: scale(1.2);
}

/* Gallery Section */
.gallery {
  padding: 2rem 0;
  background: white;
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.gallery-main {
  position: relative;
  height: 480px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 3rem 2rem 2rem;
}

.gallery-overlay h3 {
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
}

.gallery-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-nav {
  background: #2d5016;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-nav:hover {
  background: #1f3a0d;
  transform: scale(1.1);
}

.carousel-container {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 3px solid transparent;
}

.carousel-item:hover {
  transform: scale(1.05);
}

.carousel-item.active {
  border-color: #2d5016;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Location Section */
.location {
  padding: 3rem 0;
  background: #f8f8f8;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-left h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.location-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
}

.location-details {
  margin-bottom: 2rem;
}

.location-item {
  margin-bottom: 1.5rem;
}

.location-item h3 {
  font-size: 1.3rem;
  color: #2d5016;
  margin-bottom: 0.5rem;
}

.location-map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
  padding: 2rem 0;
  background: #f8f9fa;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: none;
  margin-bottom: 2rem;
}

.testimonial-card.active {
  display: block;
}

.stars {
  margin-bottom: 1.5rem;
}

.stars i {
  color: #ffd700;
  font-size: 1.2rem;
  margin: 0 2px;
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card h4 {
  color: #2d5016;
  font-size: 1.1rem;
  font-weight: bold;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  background: #2d5016;
  transform: scale(1.2);
}

/* Contact Section */
.contact {
  padding: 2rem 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-left h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.contact-item a:hover {
  color: white;
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
  background: white;
  appearance: none;
  /* background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>'); */
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #2d5016;
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  padding: 0.5rem;
  background: white;
  color: #333;
}

/* Footer */
.footer {
  /* background: #333; */
  color: white;
  padding: 3rem 0 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #555;
}

.footer-brand h3 {
  color: #2d5016;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

.footer-links-section h4 {
  color: #2d5016;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.footer-links-grid a {
  color: #ccc;
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-links-grid a:hover {
  color: #2d5016;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-copyright p {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.footer-legal p {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-legal a {
  color: #2d5016;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #4a7c2a;
}

/* Investment Opportunities Section */
.investment-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  /* margin-bottom: 1rem; */
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.investment-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.investment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-image-slider {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.slider-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider-images img.active {
  opacity: 1;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #2d5016;
  transform: scale(1.2);
}

.card-content {
  padding: 2rem;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-header h3 {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
}

.size-badge {
  background: #2d5016;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.card-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #666;
}

.feature-item i {
  color: #2d5016;
  font-size: 1.1rem;
  width: 20px;
}

.card-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-text {
  font-size: 1.5rem;
  color: #2d5016;
  font-weight: bold;
}

.enquiry-btn {
  width: 100%;
  background: #2d5016 !important;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.enquiry-btn:hover {
  background: #69a144 !important;
  transform: translateY(-2px);
}

/* Location Advantages Section */
.location-advantages {
  padding: 2rem 0;
  background: white;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.location-image img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: #f5f5f5;
}

.location-slider {
  position: relative;
}

.slider-container {
  position: relative;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.location-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.location-slide.active {
  opacity: 1;
}

.location-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-btn {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #2d5016;
}

.location-info h2 {
  font-size: 2.5rem;
  color: #333;
  /* margin-bottom: 1rem; */
}

.location-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.advantage-icon {
  background: #2d5016;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.advantage-content h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.advantage-content p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.contact-btn {
  background: #2d5016;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #1f3a0d;
  transform: translateY(-2px);
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-sticky:hover {
  background: #128c7e;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Popup Form */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: linear-gradient(197deg, #ffffff9c, transparent) !important;
  padding: 2rem;
  border-radius: 15px;
  max-width: 400px;
  width: 90%;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
}

.popup-content h3 {
  color: #333;
  margin-bottom: 0.5rem;
  text-align: center;
}

.popup-content p {
  color: #666;
  text-align: center;
  margin-bottom: 1.5rem;
}

#lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#lead-form input,
#lead-form select {
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#lead-form input:focus,
#lead-form select:focus {
  outline: none;
  border-color: #2d5016;
}

#lead-form button {
  background: #2d5016;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#lead-form button:hover {
  background: #1f3a0d;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-content {
  position: relative;
  max-width: 800px;
  width: 90%;
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* CTA Button Styles */
.cta-btn {
  background: #2d5016;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 2rem auto;
  display: block;
  max-width: 250px;
}

.cta-btn:hover {
  background: #1f3a0d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Scarcity Card Overlay */
.scarcity-card {
  position: relative;
  margin: 2rem auto;
  max-width: 1000px;
  background: linear-gradient(rgb(0 0 0 / 35%), rgb(8 8 8 / 85%)), url(media/images/park.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(2, 2, 2, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.scarcity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(50, 102, 65, 0.4);
}

.scarcity-card-content {
  padding: 2rem;
  text-align: center;
  color: white;
}

.scarcity-card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.scarcity-card-content p {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.scarcity-card-btn {
  background: #fff;
  color: #2d5016;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.scarcity-card-btn:hover {
  background: #2d5016;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Air Quality Section */
.air-quality-section {
  padding: 2rem 0;
  background: whitesmoke;
}
.air-quality-section h2,
.location-advantages h2,
.section-heading,
.investment-section h2 .investment-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.air-quality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.air-carousel {
  position: relative;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.air-carousel .carousel-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.air-carousel .carousel-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.air-carousel .carousel-images img.active {
  opacity: 1;
}

.air-content h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.air-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.air-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Vicinity Image Sliders */
.vicinity-image-slider {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vicinity-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vicinity-img.active {
  opacity: 1;
}

/* CTA Form Fixes */
#cta-lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#cta-lead-form input,
#cta-lead-form select {
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#cta-lead-form input:focus,
#cta-lead-form select:focus {
  outline: none;
  border-color: #2d5016;
}

#cta-lead-form button {
  background: #2d5016;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#cta-lead-form button:hover {
  background: #1f3a0d;
}

/* Brochure and Visit Form Styles */
#brochure-lead-form,
#visit-lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#brochure-lead-form input,
#brochure-lead-form select,
#visit-lead-form input,
#visit-lead-form select {
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#brochure-lead-form input:focus,
#brochure-lead-form select:focus,
#visit-lead-form input:focus,
#visit-lead-form select:focus {
  outline: none;
  border-color: #2d5016;
}

#brochure-lead-form button,
#visit-lead-form button {
  background: #2d5016;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#brochure-lead-form button:hover,
#visit-lead-form button:hover {
  background: #1f3a0d;
}

/* Vicinity Section */
.vicinity-section {
  padding: 2rem 0;
  background: #f8f9fa;
}

.vicinity-item {
  margin-bottom: 4rem;
}

.row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.col-lg-6 {
  flex: 1;
}

.vicinity-content h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.vicinity-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.vicinity-features {
  list-style: none;
  padding: 0;
}

.vicinity-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #666;
}

.vicinity-features i {
  color: #2d5016;
}

.distance-badge {
  background: #2d5016;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

.vicinity-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vicinity-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vicinity-image:hover img {
  transform: scale(1.05);
}

.order-lg-1 {
  order: 1;
}

.order-lg-2 {
  order: 2;
}

/* Scroll Animations */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.slide-in-center {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* Desktop Video Full Width */
@media (min-width: 769px) {
  .hero-video {
    width: 100vw !important;
  }
  
  .hero-video video {
    width: 100vw !important;
  }
}

/* COMPREHENSIVE MOBILE RESPONSIVE FIXES */

/* Mobile Responsive Design - Enhanced */
@media (max-width: 768px) {
  /* Universal width fixes */
  * {
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Container consistency */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }

  /* Navigation fixes */
  .navbar {
    width: 100vw;
    left: 0;
    right: 0;
    padding: 0.5rem 0;
  }

  .nav-container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo img {
    height: 50px;
    width: auto;
  }

  .nav-menu {
    display: none;
  }

  .nav-contact {
    font-size: 0.9rem;
  }

  /* Hero section mobile - CRITICAL FIXES FOR FULL WIDTH VIDEO */
  .hero {
    position: relative;
    width: 100vw !important;
    height: 24vh !important; /* Reduced height for mobile */
    margin: 0 !important;
    padding: 0 !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden;
  }

  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 50vh !important; /* Match hero height */
    z-index: -2;
  }

      .hero-video video {
        /* position: absolute; */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -99%);
        width: 100vw !important;
        height: auto !important;
        /* min-width: 100vw !important; */
        min-height: 25vh !important;
        /* object-fit: cover; */
    }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 50vh !important; /* Match hero height */
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

  .hero-text h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    padding: 0 15px;
  }

  .hero-text p {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
    position: static;
    transform: none;
    margin-top: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 15px;
  }

  /* Section headings consistency */

  .intro-content h2,
  .gallery h2,
  .air-quality-section h2,
  .section-heading h3 {
    font-size: 2rem !important;
    padding: 0 15px;
  }
  .section-heading h3 {
    font-size: 2rem !important;
  }
  .intro-content p {
    font-size: 1rem;
    padding: 0 15px;
  }

  /* Amenities section mobile */
  .amenities {
    width: 100%;
    padding: 2rem 0;
  }

  .amenities .container {
    width: 100%;
    padding: 0 15px;
  }

  .amenities-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }

  .amenities-left,
  .amenities-right {
    width: 100%;
  }

  .slider-container {
    width: 100%;
    height: 250px;
    margin: 0;
  }

  .slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slider-controls {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  /* Gallery section mobile */
  .gallery {
    width: 100%;
    padding: 2rem 0;
  }
  .img {
    object-fit: cover;
  }

  .gallery .container {
    width: 100%;
    padding: 0 15px;
  }

  .gallery-main {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
  }

  .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-carousel {
    width: 100%;
    gap: 0.5rem;
  }

  .carousel-container {
    width: 100%;
    overflow: hidden;
  }

  .carousel-track {
    width: 100%;
    gap: 0.5rem;
  }

  .carousel-item {
    min-width: 80px;
    height: 60px;
    flex-shrink: 0;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  /* Air Quality section mobile */
  .air-quality-section {
    width: 100%;
    padding: 2rem 0;
  }

  .air-quality-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }

  .air-carousel {
    width: 100%;
    height: 200px;
    order: -1;
  }

  .air-carousel .carousel-images {
    width: 100%;
    height: 100%;
  }

  .air-carousel .carousel-images img {
    width: 100%;
    height: 100%;
  }

  .air-content {
    width: 100%;
    order: 1;
    text-align: center;
  }

  .air-content h3 {
    font-size: 1.5rem;
  }

  .air-content p {
    font-size: 1rem;
  }

  /* Investment section mobile */
  .investment-section {
    width: 100%;
    padding: 2rem 0;
  }

  .investment-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
  }

  .investment-card {
    width: 100%;
    margin: 0;
    max-width: 100%;
  }

  .card-image-slider {
    width: 100%;
    height: 200px;
  }

  .slider-images {
    width: 100%;
    height: 100%;
  }

  .slider-images img {
    width: 100%;
    height: 100%;
  }

  .card-content {
    width: 100%;
    padding: 1.5rem;
  }

  .card-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
  }

  .card-header h3 {
    font-size: 1.2rem;
    margin: 0;
  }

  .enquiry-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Scarcity card mobile */
  .scarcity-card {
    width: 100%;
    margin: 2rem 15px;
    max-width: calc(100% - 30px);
  }

  .scarcity-card-content {
    padding: 1.5rem;
    width: 100%;
  }

  .scarcity-card-content h3 {
    font-size: 1.3rem;
  }

  .scarcity-card-content p {
    font-size: 1rem;
  }

  .scarcity-card-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
  }

  /* Location section mobile */
  .location-advantages {
    width: 100%;
    padding: 2rem 0;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }

  .location-info {
    width: 100%;
    order: 1;
  }

  .location-info h2 {
    font-size: 1.8rem !important;
  }

  .location-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }

  .advantage-item {
    width: 100%;
    flex-direction: row;
    text-align: left;
    padding: 1rem;
  }

  .advantage-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .advantage-content {
    flex: 1;
  }

  .advantage-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .advantage-content p {
    font-size: 0.85rem;
    margin: 0;
  }

  .location-image {
    width: 100%;
    order: -1;
  }

  .location-image img {
    width: 100%;
    height: 250px;
    object-fit: inherit;
  }

  /* Vicinity section mobile */
  .vicinity-section {
    width: 100%;
    padding: 2rem 0;
  }

  .vicinity-item {
    width: 100%;
    margin-bottom: 2rem;
  }

  .row {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem;
    width: 100%;
  }

  .col-lg-6 {
    width: 100% !important;
    flex: none !important;
    order: unset !important;
  }

  .vicinity-content {
    width: 100%;
    order: 1;
    padding: 0 15px;
  }

  .vicinity-content h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .vicinity-content p {
    font-size: 1rem;
    text-align: center;
  }

  .vicinity-features {
    width: 100%;
    padding: 0;
  }

  .vicinity-features li {
    font-size: 0.9rem;
    justify-content: flex-start;
  }

  .vicinity-image-slider {
    width: 100%;
    height: 200px;
    order: -1;
    margin: 0 15px;
    max-width: calc(100% - 30px);
  }

  .vicinity-img {
    width: 100%;
    height: 100%;
  }

  .order-lg-1,
  .order-lg-2 {
    order: unset !important;
  }

  /* Testimonials mobile */
  .testimonials-section {
    width: 100%;
    padding: 2rem 0;
  }

  .testimonial-slider {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  .testimonial-card {
    width: 100%;
    padding: 1.5rem;
    margin: 0;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .testimonial-card h4 {
    font-size: 1rem;
  }

  .testimonial-dots {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  /* Contact section mobile */
  .contact {
    width: 100%;
    padding: 2rem 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left h2 {
    font-size: 1.8rem !important;
    text-align: center;
  }

  .contact-form {
    width: 100%;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Footer mobile */
  .footer {
    width: 100%;
    padding: 2rem 0 1rem;
  }

  .footer .container {
    width: 100%;
    padding: 0 15px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    width: 100%;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-brand h3 {
    font-size: 1.5rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer-links-section {
    width: 100%;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    justify-items: center;
    width: 100%;
  }

  .footer-links-grid a {
    font-size: 0.85rem;
    padding: 0.2rem 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    width: 100%;
  }

  .footer-legal {
    text-align: center;
    width: 100%;
  }

  .footer-copyright,
  .footer-legal p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* CTA buttons mobile */
  .cta-btn {
    width: 90%;
    max-width: 300px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    font-size: 1rem;
    display: block;
  }

  /* Popup forms mobile */
  .popup-content {
    width: 95%;
    max-width: 350px;
    margin: 20px;
    padding: 1.5rem;
  }

  .popup-content h3 {
    font-size: 1.3rem;
  }

  .popup-content p {
    font-size: 0.9rem;
  }

  #lead-form input,
  #lead-form select,
  #cta-lead-form input,
  #cta-lead-form select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  #lead-form button,
  #cta-lead-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  /* WhatsApp button mobile */
  .whatsapp-sticky {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 15px;
    right: 15px;
  }

  /* Video modal mobile */
  .video-content {
    width: 95%;
    max-width: 100%;
  }

  #youtube-video {
    height: 200px;
    width: 100%;
  }

  .video-close {
    top: -30px;
    font-size: 1.5rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .nav-container {
    padding: 0 10px;
  }

  h2 {
    font-size: 1.5rem !important;
    padding: 0 10px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .hero-text p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .investment-grid {
    padding: 0 10px;
  }

  .scarcity-card {
    margin: 2rem 10px;
    max-width: calc(100% - 20px);
  }

  .vicinity-image-slider {
    margin: 0 10px;
    max-width: calc(100% - 20px);
  }

  .vicinity-content {
    padding: 0 10px;
  }

  .popup-content {
    padding: 1rem;
    margin: 15px;
  }

  .slider-container {
    height: 180px;
  }

  .air-carousel {
    height: 180px;
  }

  .gallery-main {
    height: 200px;
  }

  .vicinity-image-slider {
    height: 180px;
  }

  .card-image-slider {
    height: 180px;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .slider-container,
  .air-carousel,
  .gallery-main {
    height: 200px;
  }
}

/* Landscape mobile orientation */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amenities-left,
.location-left,
.contact-left {
  animation: fadeInUp 0.8s ease-out;
}

/* CRITICAL MOBILE WIDTH FIXES - Add at the end of mobile section */
@media (max-width: 768px) {
  /* Prevent any horizontal overflow */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Force all elements to respect viewport width */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Navbar specific fixes */
  .navbar {
    width: 100vw;
    max-width: 100vw;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
  }

  .nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo {
    flex-shrink: 0;
  }

  .nav-logo img {
    height: 45px;
    width: auto;
    max-width: 120px;
  }

  .nav-contact {
    flex-shrink: 0;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* Container fixes - ensure no overflow */
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
  }

  /* Section fixes */
  section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  /* Location section specific fixes */
  .location-advantages {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .location-advantages .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  .location-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .location-info {
    width: 100%;
    max-width: 100%;
    order: 1;
  }

  .location-image {
    width: 100%;
    max-width: 100%;
    order: -1;
    margin: 0;
    padding: 0;
  }

  .location-image img {
    width: 100%;
    max-width: 100%;
    height: 275px;
    object-fit: inherit;
    background: #f5f5f5;
    display: block;
  }

  /* Advantages grid - force single column */
  .advantages-grid {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
  }

  .advantage-item {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin: 0;
    background: #f8f9fa;
    border-radius: 10px;
  }

  .advantage-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: #2d5016;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .advantage-content {
    flex: 1;
    width: 100%;
  }

  .advantage-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #333;
  }

  .advantage-content p {
    font-size: 0.85rem;
    margin: 0;
    color: #666;
    line-height: 1.4;
  }

  /* Investment section fixes */
  .investment-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .investment-grid {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0;
    padding: 0 15px;
  }

  .investment-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  /* Gallery fixes */
  .gallery {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .gallery-main {
    width: 100%;
    max-width: 100%;
    height: 250px;
    margin: 0 0 1.5rem 0;
  }

  .gallery-main img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f5f5f5;
  }

  .gallery-carousel {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .carousel-container {
    flex: 1;
    width: 100%;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    gap: 0.5rem;
    width: max-content;
  }

  .carousel-item {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
  }

  /* Amenities fixes */
  .amenities {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .amenities-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .amenities-left,
  .amenities-right {
    width: 100%;
    max-width: 100%;
  }

  .slider-container {
    width: 100%;
    max-width: 100%;
    height: 250px;
    margin: 0;
  }

  .slider-container img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f5f5f5;
  }

  /* Air quality fixes */
  .air-quality-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .air-quality-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .air-carousel {
    width: 100%;
    max-width: 100%;
    height: 200px;
    order: -1;
  }

  .air-carousel .carousel-images {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .air-carousel .carousel-images img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f5f5f5;
  }

  .air-content {
    width: 100%;
    max-width: 100%;
    order: 1;
    text-align: center;
  }

  /* Vicinity fixes */
  .vicinity-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .vicinity-item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .row {
    width: 100%;
    max-width: 100%;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .vicinity-content {
    width: 100%;
    max-width: 100%;
    order: 1;
    padding: 0 15px;
  }

  .vicinity-image-slider {
    width: 100%;
    max-width: 100%;
    height: 200px;
    order: -1;
    margin: 0;
  }

  .vicinity-img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
  }

  /* Testimonials fixes */
  .testimonials-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .testimonial-slider {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1.5rem;
  }

  /* Contact fixes */
  .contact {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .contact-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    max-width: 100%;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    max-width: 100%;
  }

  /* Footer fixes */
  .footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .footer .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  .footer-main {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand,
  .footer-links-section {
    width: 100%;
    max-width: 100%;
  }

  .footer-links-grid {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    justify-items: center;
  }

  .footer-bottom {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-copyright,
  .footer-legal {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  /* Scarcity card fixes */
  .scarcity-card {
    width: calc(100% - 30px);
    max-width: calc(100% - 30px);
    margin: 2rem 15px;
  }

  .scarcity-card-content {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
  }

  /* CTA button fixes */
  .cta-btn {
    width: 90%;
    max-width: 300px;
    margin: 2rem auto;
    display: block;
  }

  /* Popup fixes */
  .popup-content {
    width: 95%;
    max-width: 350px;
    margin: 20px auto;
  }

  /* Form fixes */
  #lead-form,
  #cta-lead-form {
    width: 100%;
    max-width: 100%;
  }

  #lead-form input,
  #lead-form select,
  #cta-lead-form input,
  #cta-lead-form select {
    width: 100%;
    max-width: 100%;
  }

  /* Video modal fixes */
  .video-content {
    width: 95%;
    max-width: 100%;
  }

  #youtube-video {
    width: 100%;
    max-width: 100%;
    height: 200px;
  }
}

/* Extra fixes for very small screens */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .nav-container {
    padding: 0 10px;
  }

  .vicinity-content {
    padding: 0 10px;
  }

  .scarcity-card {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin: 2rem 10px;
  }

  .investment-grid {
    padding: 0 10px;
  }
}
