/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html,
body {
  height: 100%;
  background-color: #f5f5f5;
}

.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.alignleft {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.alignright {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}

.aligncenter {
  display: block;
  margin: 0 auto 15px;
}

a:focus {
  outline: 0px solid;
}

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

.fix {
  overflow: hidden;
}

a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

a:hover {
  color: #132a12;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
}

body {
  background: #f5f5f5 none repeat scroll 0 0;
  color: rgb(19, 53, 19);
  font-size: 14px;
  text-align: left;
  overflow-x: hidden;
  line-height: 22px;
  font-family: 'Montserrat', sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  background: #1c3720;
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 996;
  transition: opacity 0.4s, visibility 0.4s, transform 0.3s ease-in-out;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  transition: color 0.3s ease-in-out;
}

.back-to-top:hover {
  background: #2a4d34;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    right: 10px;
    bottom: 10px;
  }

  .back-to-top i {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    width: 30px;
    height: 30px;
    right: 8px;
    bottom: 8px;
  }

  .back-to-top i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5 url("../img/logo.png") no-repeat center center;
  background-size: 100px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Preloader */
@media (max-width: 768px) {
  #preloader {
    background-size: 80px;
  }
}

@media (max-width: 480px) {
  #preloader {
    background-size: 60px;
  }
}


/*--------------------------------------------------------------
# NAVBAR
--------------------------------------------------------------*/
#header {
  height: 60px;
  transition: all 0.5s;
  z-index: 997;
  background: #f5f5f5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

#header .logo h1 span {
  color: #3ec1d5;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo{
  margin-left: 70px;  
  margin-right: 50px;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
  
}



.header-bg {
  background: url(../img/background/page-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 120px 0 60px;
}

.header-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}




/*Navbar */
.navbar {
  padding: 0;
  margin-right: 70px;
  position: relative;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  padding: 17px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: black;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover, .navbar a.active {
  background-color: #1c3720;
  color: white;
}

/* Dropdown Menu */
.navbar ul li.dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  min-width: 200px;
}

.navbar ul li.dropdown:hover > ul {
  display: block;
}

.navbar ul li.dropdown ul li a {
  padding: 10px 20px;
  color: #333;
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar ul li.dropdown ul li a:hover {
  background: #1c3720;
  color: white;
  border-radius: 5px;
}


/* MOBILE RESPONSIVENESS */
.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

/* Hide navbar by default on mobile */
@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .navbar.active {
    transform: translateX(0);
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
  }

  .navbar ul li {
    width: 100%;
  }

  .navbar a {
    width: 100%;
    padding: 15px;
    font-size: 18px;
  }
}


  
  .navbar ul li.dropdown ul {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    background: none;
  }

  .navbar ul li.dropdown.active > ul {
    display: block;
  }

  .navbar ul li.dropdown ul li a {
    padding-left: 30px;
  }
}

/* Close button styles */
.close-nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 1001;
}


@media (max-width: 991px) {
  .close-nav-toggle {
    display: block;
  }
}




/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px; 
  box-sizing: border-box;
}

/* Popup Content */
.popup-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  width: 100%;
  max-width: 800px;
  text-align: justify;
  font-size: 18px;
  border-radius: 10px;
  color: #1c3720;
  font-weight: bold;
  box-sizing: border-box;
}

/* Button Styling */
#agreeButton {
  background-color: #1c3720;
  color: white;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  margin: 20px auto 0;
  font-size: 16px;
  transition: background-color 0.3s ease-in-out;
}

#agreeButton:hover {
  background-color: #14312b;
}

/* Responsive Text & Padding */
@media (max-width: 768px) {
  .popup-content {
    font-size: 16px;
    padding: 20px;
  }

  #agreeButton {
    font-size: 15px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    font-size: 15px;
    padding: 15px;
  }

  #agreeButton {
    font-size: 14px;
    width: 100%;
  }
}





/*--------------------------------------------------------------
IMAGE
--------------------------------------------------------------*/
.hero-section {
  text-align: left;
  padding: 80px 10px;
  max-width: 1500px;
  margin: 0 auto;
}


.hero-section h1 {
  font-size: 3.5rem;
  letter-spacing: 22px;
  color: #651d1d;
  margin-bottom: 15px;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transform: translateX(200px);
}

.hero-section h1 span {
  display: block;
  margin-left: 150px;
}

.hero-text {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: #651d1d;
  letter-spacing: 2px;
  transform: translateX(200px);
}


/* DIZON */
.dizon h1 {
  color: #37567d; 
}

.dizon .hero-text {
  color: #37567d; 
}

.dizon.hero-section {
  padding-top: 55px;
}

/* HACIENDA */
.hacienda h1 {
  color: #985308; 
}

.hacienda .hero-text {
  color: #985308; 
}

.hacienda.hero-section {
  padding-top: 80px;
}

/* PUNTA VERDE */
.punta h1 {
  color: #14312b; 
}

.punta .hero-text {
  color: #14312b; 
}

.punta.hero-section {
  padding-top: 75px; 
}

.punta.hero-section h1 span {
  display: block;
}

/* LA PRIMA */
.laprimavera h1 {
  color: #b80958; 
}

.laprimavera .hero-text {
  color: #b80958; 
}

.laprimavera h1 span {
  display: block;
  color: #325f8b;
}
/* PLANTATION */
.plantation h1 {
  color: #607d54; 
}

.plantation .hero-text {
  color: #607d54; 
}

.plantation .hero-section {
  padding-top: 55px;
}




.hero-image {
  width: 100%;
  max-width: 1500px;
  display: block;
  margin: auto;
}

/*--------------------------------------------------------------
RESPONSIVE ADJUSTMENTS
--------------------------------------------------------------*/

/* Large Screens (Keep Original Design) */
@media (min-width: 1441px) {
  .hero-section h1,
  .hero-text {
    transform: translateX(200px);
  }
}

/* Medium Screens (Tablets, Laptops) */
@media (max-width: 1440px) {
  .hero-section h1,
  .hero-text {
    transform: none;
    text-align: center;
  }

  .hero-section h1 span {
    margin-left: 0; 
  }

  .hero-text {
    font-size: 18px;
    max-width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    width: 100%;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 50px;
  }

  .hero-text {
    font-size: 18px;
  }
}

/*  Phones */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 16px;
  }
}

/* Extra Small Screens (576px and below) */
@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 30px;
    letter-spacing: 5px;
    text-align: center;
    line-height: 1.2;
  }

  .hero-text {
    font-size: 14px;
    flex-direction: column;
    padding: 0 20px;
  }
}



/*--------------------------------------------------------------
# PROPERTY SECTION 
--------------------------------------------------------------*/

/* Property Section */
.property-section {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 5%;
  box-sizing: border-box;
  background: #808080;
  position: relative;
  overflow: hidden;
}



.property-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(50px);
}

.property-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(50px);
}

/* Property Container */
.property-container {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1500px;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Left Side (Map) */
.property-map {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.property-map img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border: 5px solid white;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
  margin-top: 50px;
}

.cdh {
  margin-top: 15px;
}

.dizon {
  margin-top: 25px;
}

.punta {
  margin-top: 5px;
}

.lpv {
  margin-top: 5px;
}

.pr {
  margin-top: 15px;
}

.property-map img:hover {
  transform: scale(1.05);
}

.property-map-note {
  font-size: 16px;
  color: white;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
}

/* Right Side (Details) */
.property-details {
  flex: 1;
  max-width: 800px;
  color: white;
  padding: 30px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
}

/* Heading */
.property-details h2 {
  font-size: 32px;
  font-weight: bold;
  color: #f5f5f5;
  padding-bottom: 10px;
  border-bottom: 2px solid white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  display: inline-block;
  font-family: 'Georgia', serif;
}

/* Description */
.property-details .description {
  font-size: 18px;
  color: white;
  margin-bottom: 15px;
  text-align: justify;
  font-family: 'Montserrat', sans-serif;
}

/* Property Info Section */
.property-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.info-item i {
  font-size: 20px;
  color: #ffd700;
}

/* Buttons Alignment */
.property-buttons {
  display: flex;
  gap: 80px;
  margin-top: 20px;
}

.btn-map, .inquire-now {
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 5px;
  text-align: center;
  min-width: 120px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}

.btn-map {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-map:hover {
  background: white;
  color: #123d1d;
}

.inquire-now {
  background: #ffd700;
  color: #1c3720;
  border: none;
}

.inquire-now:hover {
  background: #ffcc00;
}

.property-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.property-container {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
}

.property-container::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  z-index: -2;
}


@media (max-width: 1024px) {  
  .property-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .property-map img {
    max-width: 90%;
    height: auto;
  }

  .property-details {
    max-width: 90%; 
    padding: 20px; 
  }

  .property-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .property-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
  }

  .btn-map, .inquire-now {
    width: 80%;
  }
}



@media (max-width: 768px) {
  .property-map img {
    max-width: 100%;
    margin-top: 10px;
  }

  .property-info {
    display: flex;
    align-items: center;
    gap: 5px; 
  }

  .property-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .property-details {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .property-buttons {
    flex-direction: column; 
    gap: 10px;
  }

  .btn-map, .inquire-now {
    width: 100%;
  }
}




/* ======= AMENITIES SECTION ======= */
.amenities-section {
  padding: 80px 5%;
  text-align: center;
  position: relative;
}

.amenities-intro {
  margin-bottom: 50px;
}

.amenities-intro h2 {
  font-size: 36px;
  font-weight: bold;
  font-family: 'Georgia', serif;
  color: #800000; 
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.amenities-intro p {
  font-size: 16px;
  color: #800000;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* ======= Grid Layout for Cards ======= */
.amenities-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* ======= Individual Amenity Cards ======= */
.amenity {
  background: white;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  position: relative;
}

/* Middle Card Highlight */
.amenity:nth-child(3) {
  background: linear-gradient(135deg, #330000, #800000);
  color: white;
  transform: scale(1.05);
}

.amenity:nth-child(3) .amenity-icon {
  color: white !important;
}


.amenity:nth-child(3) .amenity-icon:hover {
  color: white!important;
}

.amenity:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ======= Icons ======= */
.amenity-icon {
  font-size: 40px;
  color: #800000;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.amenity:hover .amenity-icon {
  color: #800000;
}

/* ======= Text Styling ======= */
.amenity h3 {
  font-size: 20px;
  font-weight: bold;
  color: #4a3c31;
  margin-bottom: 10px;
}

.amenity:nth-child(3) h3 {
  color: white;
}

.amenity p {
  font-size: 14px;
  color: #7d6f64;
}

.amenity:nth-child(3) p {
  color: #ffe6e2;
}

/* ======= Responsive Design ======= */
@media (max-width: 768px) {
  .amenities-wrapper {
    grid-template-columns: 1fr;
  }
}








/*--------------------------------------------------------------
# ACCESSIBILITY SECTION
--------------------------------------------------------------*/
.accessibility-section {
  position: relative;
  padding: 100px 5%;
  overflow: hidden;
}

.accessibility-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

/* ======= Text Section Styling ======= */
.accessibility-text {
  flex: 1;
  max-width: 50%;
}

.accessibility-text h2 {
  font-size: 36px;
  font-weight: bold;
  font-family: 'Georgia', serif;
  color: #1c3720; 
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.accessibility-text p {
  font-size: 18px;
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}

.accessibility-text ul {
  list-style: none;
  padding: 0;
}

.accessibility-text li {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  border-left: 4px solid #800000; 
  padding-left: 15px;
  margin-bottom: 10px;
}

/* ======= Image Section Styling ======= */
.accessibility-image {
  flex: 1;
  max-width: 50%; 
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accessibility-image img {
  width: 100%;
  max-width: 800px; 
  box-shadow: none;
}



/* ======= Responsive Design - Mobile Fix ======= */
@media (max-width: 1024px) {
  .accessibility-content {
    flex-direction: column;
    text-align: center;
  }

  .accessibility-text {
    max-width: 100%;
    text-align: left;
  }

  .accessibility-text li {
    border-left: none;
  }

  .accessibility-image {
    max-width: 100%;
    text-align: center;
  }

  .accessibility-image img {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .access-button .btn-map {
    padding: 12px 15px;
    font-size: 12px;
    width: auto;
  }
}




/* Container for the section */
.location-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 50px 40px;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  max-width: 1500px;
  margin: 0 auto;
  margin-bottom: 50px;
}

/* Image Container */
.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  margin-bottom: 10px;
}

/* Image Styling */
.location-image {
  width: 480px;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 80px;
}

.dizonlocimage {
  margin-top: 30px;
}

.puntalocimage {
  margin-top: 40px;
}

.plantlocimage {
  margin-top: 10px;
}

/* Hover effect on image */
.location-image:hover {
  transform: scale(1.1);
}


/* Text Container */
.text-container {
  flex: 2;
  color: #333333;
  font-family: 'Georgia', serif;
  line-height: 1.8;
  margin-top: 40px;
}

/* Heading Styling */
.text-container h3 {
  font-size: 36px;
  font-weight: bold;
  color: #800000;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Paragraph Styling */
.text-container p {
  font-size: 20px;
  color: #555555;
  margin-bottom: 25px;
  padding-left: 20px;
  border-left: 6px solid #800000;
}

/* Highlighted Text */
.highlight-text {
  font-weight: bold;
  color: #800000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-section {
    flex-direction: column;
    padding: 30px;
  }

  .image-container {
    align-items: center;
    margin-bottom: 20px;
  }

  .location-image {
    width: 100%;
    height: auto;
  }

  .text-container {
    text-align: center;
    max-width: 100%;
  }

  .text-container h3 {
    font-size: 30px;
  }

  .text-container p {
    font-size: 18px;
  }
}










.estate-map-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
}

.estate-map-title {
  font-size: 36px;
  font-family: Georgia, serif;
  font-weight: bold;
  color: #1c3720;
  margin-left: 50px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.google-map-link {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #222;
  padding: 8px 12px;
  transition: all 0.3s ease;
  margin-right: 50px;
}

/* Animated underline effect */
.google-map-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #222;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.google-map-link:hover::after {
  transform: scaleX(1);
}

/* Icon styling */
.map-icon {
  margin-left: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #222;
  padding: 10px; 
  transition: all 0.3s ease;
}

.google-map-link:hover .map-icon {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .estate-map-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    gap: 10px;
    flex-wrap: wrap; /* fallback if they can't sit side by side */
  }

  .estate-map-title {
    font-size: 24px;
    margin-left: 0;
    flex: 1;
    text-align: left;
  }

  .google-map-link {
    font-size: 13px;
    padding: 6px 10px;
    margin-right: 0;
    flex: 1;
    justify-content: flex-end;
    text-align: right;
    white-space: nowrap;
  }

  .map-icon {
    width: 32px;
    height: 32px;
    padding: 8px;
  }
}





        /* Map Container */
        #map {
          width: 100%;
          height: 550px;
          min-height: 400px;
          position: relative;
          z-index: 1;
      }



@media screen and (max-width: 768px) {
  .leaflet-control-geocoder {
      max-width: 95vw !important;
      min-width: 280px !important;
  }

  .leaflet-control-geocoder-alternatives {
      max-width: 95vw !important;
      min-width: 280px !important;
      max-height: 250px !important;
      padding: 8px !important;
  }

  .leaflet-control-geocoder-alternatives li {
      padding: 8px 12px !important;
      font-size: 14px !important;
  }

  .leaflet-control-geocoder input {
      font-size: 14px !important;
      padding: 8px !important;
  }
}


@media screen and (max-width: 480px) {
  .leaflet-control-geocoder {
      max-width: 90vw !important;
  }

  .leaflet-control-geocoder-alternatives {
      max-width: 50vw !important;
      min-width: 250px !important;
  }

  .leaflet-control-geocoder-alternatives li {
      font-size: 13px !important;
      padding: 6px 10px !important;
  }

  .leaflet-control-geocoder input {
      font-size: 13px !important;
      padding: 6px !important;
  }
}




/* Landmarks Card */
.landmarks-card {
  position: absolute;
  top: 100px; 
  left: 20px;
  background: #1c3720;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  width: 450px;
  height: 430px;
  font-family: Arial, sans-serif;
  z-index: 1000;
}


.landmark-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.landmark-header h3 {
  margin: 0;
  font-size: 20px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.landmark-header span {
  font-size: 16px;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
}


.landmarks-card table {
  width: 100%;
  border-collapse: collapse;
}

.landmarks-card td {
  padding: 8px 0;
  font-size: 16px;
}

.landmarks-card .distance {
  text-align: right;
  font-weight: bold;
}

.landmark-map-note {
  font-size: 14px;
  color: white;
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
}

.dizonloc {
  margin-top: 50px;
}

.haciendaloc {
  margin-top: 170px;
}

.puntaloc {
  margin-top: 90px;
}

.laprimaloc {
  margin-top: 50px;
}

.plantloc {
  margin-top: 130px;
}

.landmarks-card-mobile{
  display: none; 
}

/*  Responsive Design */
@media screen and (max-width: 768px) {
  .landmarks-card {
      display: none; 
  }
  .landmarks-card-mobile {
    display: block;
    position: relative;
    width: 100vw;
    height: auto;
    background: #1c3720;
    color: white;
    padding: 30px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
   
    overflow-y: auto;
  }

  .landmark-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .landmark-header-mobile h3 {
    margin: 0;
    font-size: 22px;
    font-family: Arial, sans-serif;
    font-weight: bold;
  }

  .landmark-header-mobile span {
    font-size: 16px;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
  }

  .landmarks-card-mobile table {
    width: 100%;
    border-collapse: collapse;
  }

  .landmarks-card-mobile td {
    padding: 12px 0;
    font-size: 18px;
  }

  .landmarks-card-mobile .distance-mobile {
    text-align: right;
    font-weight: bold;
  }

  .landmark-map-note-mobile {
    font-size: 14px;
    color: white;
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
  }
}





.gallery-section {
  width: 100%;
  padding: 100px 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../../assets/img/bg5.jpg") no-repeat center center/cover;
  position: relative;
}


.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  z-index: 1;
}


.gallery-container {
  position: relative;
  z-index: 2;
}


.gallery-title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Georgia", serif;
  text-align: center;
  color: #1c3720;
  position: relative;
  padding-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.gallery-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background-color: #1c3720;
  margin: 15px auto 0;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding-top: 30px;
}



.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}


.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}


.gallery-item .blur-box {
  position: absolute;
  bottom: 0; 
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.5); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  z-index: 1; 
}


.gallery-item p {
  position: absolute;
  bottom: -5px; 
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: bold;
  color: #333; 
  text-align: center;
  width: 80%;
  z-index: 3;
}




.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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


@media (max-width: 1200px) {
  .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
      grid-template-columns: repeat(1, 1fr);
  }
}


/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer-area {
  padding: 20px 0;
  background: #f5f5f5;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/* Footer Columns */
.footer-column {
  flex: 1;
  padding: 20px;
  min-width: 280px; 
  text-align: left;
}


.footer-column:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.footer-content h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: black;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-content p {
  color: black;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}


.footer-contacts p span {
  font-weight: bold;
}


.footer-logo-image {
  width: 120px;
  margin: 20px auto 0;
  display: block;
}


.property-section1 {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.property-section1 h4 {
  margin-right: 65px;
}


.property-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.property-links li {
  margin-bottom: 8px;
}

.property-links li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.property-links li a:hover {
  color: #2a4d34;
  text-decoration: underline;
}


.footer-area-bottom {
  background: #f5f5f5;
  padding: 5px 0;
  text-align: center;
}

.copyright p {
  color: #1c3720;
  margin: 0;
}


.footer-bottom-image {
  width: 100%;
  margin-top: 20px;
}

.footer-bottom-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


.footer-logo-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

.footer-logo-title span {
  color: #1c3720;  
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-logo-title strong {
  color: black;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# RESPONSIVE STYLES
--------------------------------------------------------------*/

/* Tablets & Small Screens */
@media (max-width: 991px) {
  .footer-area {
    flex-direction: column;
    align-items: center;
  }
  .footer-column {
    text-align: center;
    min-width: 100%;
  }
  .property-section1 {
    align-items: center;
    margin-left: 0;
  }
  .property-section1 h4 {
    margin-right: 0;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  .footer-column {
    min-width: 100%;
    padding: 10px;
  }
  .footer-logo-image {
    width: 100px;
  }
  .footer-logo-title {
    font-size: 30px;
  }
}