/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #c9a14a;
}

::-webkit-scrollbar-track {
  background: #111;
}

img {
  user-select: none;
}

section {
  overflow: hidden;
}

header {
  transition: transform 0.35s ease;
}

/* faqs section custom styling starts here  */
.faq-item {
  background: #f7e3b8;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.35s;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  list-style: none;
}

.faq-title::-webkit-details-marker {
  display: none;
}

.faq-content {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
}

.faq-item[open] .faq-content {
  max-height: 250px;
  padding: 0 28px 25px;
}

.faq-content p {
  color: #555;
  line-height: 1.9;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-icon i {
  position: absolute;
  transition: 0.3s;
}

.minus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item[open] .plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item[open] .minus {
  opacity: 1;
  transform: rotate(0);
}

@media (max-width: 768px) {
  .faq-title {
    padding: 18px;
    font-size: 16px;
  }

  .faq-content {
    padding: 0 18px;
  }

  .faq-item[open] .faq-content {
    padding: 0 18px 20px;
  }
}

/* maps section css  */
#location iframe {
  display: block;
  width: 100%;
  min-height: 550px;
}

@media (max-width: 1024px) {
  #location iframe {
    min-height: 450px;
  }
}

@media (max-width: 768px) {
  #location {
    padding: 70px 0;
  }

  #location iframe {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  #location iframe {
    min-height: 300px;
  }
}

/* footer section styling  */
.footer-heading {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-link {
  color: #bdbdbd;
  transition: 0.3s;
}

.footer-link:hover {
  color: #d4af37;
  padding-left: 5px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1d1d1d;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d4af37;
  transition: 0.3s;
}

.social-icon:hover {
  background: #d4af37;
  color: #111;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  .social-icon {
    margin: auto;
  }
}

/* gallery  */
.gallery-item {
  position: relative;

  cursor: pointer;
}

.gallery-item img {
  transition: 0.5s;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: 0.4s;
  border-radius: 12px;
}

.gallery-item:hover::after {
  opacity: 1;
}


/*==================================
Hero Swiper Navigation
==================================*/
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #c9a14a;
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
    color: #c9a14a;
    transition: all 0.35s ease;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: #c9a14a;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(201, 161, 74, 0.35);
}

.heroSwiper .swiper-button-next:hover::after,
.heroSwiper .swiper-button-prev:hover::after {
    color: #000;
}

.heroSwiper .swiper-button-next {
    right: 10px;
}

.heroSwiper .swiper-button-prev {
    left: 10px;
}

/* Mobile */

@media (max-width: 768px) {

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .heroSwiper .swiper-button-next::after,
    .heroSwiper .swiper-button-prev::after {
        font-size: 16px;
    }

    .heroSwiper .swiper-button-next {
        right: 5px;
    }

    .heroSwiper .swiper-button-prev {
        left: 5px;
    }

}

/*==================================
Hero Swiper Pagination
==================================*/

.heroSwiper .swiper-pagination {
    bottom: 35px !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    margin: 0 8px !important;
    border: 2px solid transparent;
    transition: all 0.35s ease;
}

.heroSwiper .swiper-pagination-bullet:hover {
    background: #c9a14a;
    transform: scale(1.15);
}

.heroSwiper .swiper-pagination-bullet-active {
    width: 38px;
    border-radius: 999px;
    background: #c9a14a;
    box-shadow: 0 0 15px rgba(201, 161, 74, 0.45);
}

/* Mobile */

@media (max-width: 768px) {

    .heroSwiper .swiper-pagination {
        bottom: 20px !important;
    }

    .heroSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px !important;
    }

    .heroSwiper .swiper-pagination-bullet-active {
        width: 28px;
    }

}