.swiper-button-next, .swiper-button-prev
{
    background: var(--theme-color1);
    color: #FFF;
    padding: 25px;
}
.swiper-button-next:after, .swiper-button-prev:after
{
    font-size: 20px;
}
.swiper-slide img
{
    width:100%;
}
.header-call
{position: relative;padding-left: 49px;line-height: 22px;}
.header-call span
{position: absolute;left: 0px;top: 4px;background: #153e54;border-radius: 50%;width: 40px;height: 40px;text-align: center;line-height: 39px;color: #ffffff;font-size: 20px;}
.header-call a
{display: block;}
.footer-contact {
    list-style: none;
    padding: 0px;
}

.footer-contact li {
    margin: 0 0 11px;
    position: relative;
    padding: 0 0 0 30px;
}

.footer-contact li span {
    position: absolute;
    left: 0px;
    top: 3px;
}

.footer-contact li a {
    color: #bebebe;
}

@media(max-width:992px)
{
  .swiper-button-next, .swiper-button-prev {
    padding: 16px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 17px;
}
    .header-call span {
    top: 8px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
}
.header-call {
    padding-left: 36px;
}
.checkout-form-section-two .checkout-form .checkout-field > h4 {
    font-size: 17px;
}

.checkout-form-section-two .checkout-form .checkout-field .chk-field input, .checkout-form-section-two .checkout-form .checkout-field .chk-field select {
    font-size: 14px;
    width: 118px;
    height: 40px;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field i {
    top: 10px;
}
    .about-section-seven .content-column .inner-column .sec-title .text {
    margin-top: 10px;
    margin-right: 0px;
}
}


/* === Facilities on Homepage === */
.facilities-grid {
  margin-top: 30px;
  row-gap: 25px;
}

.facility-item {
  margin-bottom: 0;
}

.facility-box {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  padding: 18px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.facility-icon img {
  width: 50px;
  height: auto;
  display: block;
}

.facility-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Responsive tweak */
@media (max-width: 767px) {
  .facility-box {
    padding: 15px;
  }
  .facility-title {
    font-size: 15px;
  }
  .facility-icon img {
    width: 40px;
  }
}


/* Nearby Attractions Section */
.nearby-attractions {
  background-color: #f9f9f9;
}

.sec-title h2 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

.attraction-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.attraction-card img {
  border-radius: 12px;
  max-height: 180px;
  object-fit: cover;
  width: 100%;
}

.attraction-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  color: #333;
}

.attraction-card p {
  font-size: 15px;
  color: #666;
  margin-top: 10px;
  flex-grow: 1;
}

/* Responsive Grid Fix */
@media (min-width: 768px) {
  .attraction-card {
    height: 100%;
  }
}

@media (max-width: 576px) {
  .sec-title h2 {
    font-size: 24px;
  }

  .attraction-card h5 {
    font-size: 18px;
  }

  .attraction-card p {
    font-size: 14px;
  }
}

.why-choose-us {
  background-color: #fff;
}

.choose-card {
  background: #fefefe;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  text-align: center;
  height: 100%;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.choose-card .icon i {
  color: #2d9cdb;
}

.choose-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.choose-card p {
  font-size: 15px;
  color: #666;
}



