/* WhatsApp Icon and Link Styles */
.fab.fa-whatsapp {
  font-size: 24px !important; /* Adjust the size as needed */
  color: #25d366 !important; /* WhatsApp green color */
  margin-right: 5px !important; /* Add some spacing between the icon and text */
}

.whatsapp-green {
  color: #25d366 !important;
}

span.ws-nowrap a {
  color: #25d366; /* WhatsApp green color */
  text-decoration: none; /* Remove underlines from the link */
  font-weight: bold; /* Optionally make the text bold */
}

.whatsapp-link {
  color: #25d366 !important; /* Neon green color code */
  text-decoration: none; /* Remove underlines */
  text-shadow: 0 0 2px #25d366; /* Add a 2px glow effect in WhatsApp green */
}

/* Image Styles */
.img-fluid {
  height: 320px; /* Set your desired height */
  width: auto;
  object-fit: cover; /* This ensures the image covers the area without distorting aspect ratio */
}

/* Gallery Styles */
.gallery-container {
  width: 90%;
  margin: auto;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}

.image-item img {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* Modal/Lightbox Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Customer Reviews Styles */
.customer-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates three columns */
  grid-gap: 20px; /* Space between the columns and rows */
  padding: 20px; /* Padding around the entire grid */
}

.review {
  background: #f9f9f9; /* Light background for the review */
  padding: 15px; /* Padding inside each review box */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Modern box shadow */
  border-radius: 5px; /* Rounded corners for the boxes */
  margin-bottom: 20px; /* Space below each review */
}

.gold-stars {
  background-color: #0bb77d; /* Green background */
  color: white; /* White color for the stars */
  padding: 2px; /* Padding to create space around the stars */
  border-radius: 0px; /* Rounded corners of the background */
  box-shadow: 0 0 2px #ffd700, /* Gold glow effect */ 0 0 2px #ffd700, 0 0 2px #ffd700;
  margin-right: 5px; /* Space after the stars */
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .customer-reviews {
    grid-template-columns: 1fr; /* Creates a single column for mobile */
  }
}

/* Custom Map Styles */
section.section-custom-map {
  background: transparent url(../img/map.png) center 0 no-repeat;
  padding: 179px 0 0;
  margin: 20px 0 0;
  border: 0;
  position: relative;
  overflow: hidden;
}

section.section-custom-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75); /* Slight white overlay */
  pointer-events: none; /* So it doesn't block clicks */
  z-index: 1;
}

section.section-custom-map > * {
  position: relative;
  z-index: 2;
}

/* Maps */
.google-map {
  background: #e5e3df;
  height: 400px;
  margin: -35px 0 30px 0;
  width: 100%;
  display: none;
}

/* Disable animations for .slider-contact-form-wrapper on mobile */
@media (max-width: 767px) {
  .slider-contact-form-wrapper {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .slider-contact-form-wrapper.appear-animation {
    animation-delay: 0ms !important;
    animation-duration: 0s !important;
  }
}
