.elementor-3185 .elementor-element.elementor-element-084175a{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-3185 .elementor-element.elementor-element-485407c{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-3185 .elementor-element.elementor-element-485407c.elementor-element{--align-self:stretch;}/* Start custom CSS for html, class: .elementor-element-485407c */.amenities-wrapper {
  max-width: 100%;
  margin: auto;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

/* Grid layout */
.amenities-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: start;
  gap: 50px;
  padding: 10px 0;
}

/* Single item */
.amenity {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 21px;
  font-weight: 600;
  color: #333;
  font-family: 'Lato';
  font-size: 20px; /* Desktop size */
}

/* Icon circle */
.icon {
  width: 65px;
  height: 65px;
  background: #056C7D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}

/* Image inside icon */
.icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* Hidden section */
.amenities-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.amenities-hidden.open {
  max-height: 300px;
}

/* View More / Less button */
.view-toggle {
  background: transparent !important;
  border: 1px solid #056C7D !important;
  color: #000 !important;
  font-size: 18px !important;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 14px;
  margin-top: 15px;
  font-family: 'Lato', sans-serif;
}

/* Hover */
.view-toggle:hover {
  border-color: #056C7D !important;
  color: #000 !important;
}

/* 📱 Tablet */
@media (max-width: 1024px) {
  .amenities-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .amenity {
    font-size: 22px;
  }
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .amenities-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .amenity {
    font-size: 18px;
  }

  .icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .icon img {
    width: 28px;
    height: 28px;
  }
}

/* 📱 Small mobile */
@media (max-width: 480px) {
  .amenities-row {
    grid-template-columns: 1fr;
  }

  .amenity {
    font-size: 16px;
    justify-content: flex-start;
  }
}/* End custom CSS */