/* products banner css start  */
.products-page-banner {
  padding-top: 100px;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
}
.swiper-pagination{
  position: static;
}

.swiper-pagination-bullet {
  width: 50px;
  height: 2px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  opacity: 1;
  background: #d9d9d9;
  margin-inline: 4px;
  border-radius: 0;
}

.swiper-pagination-bullet-active {
  background: #000;
}

.products-page-banner .banner-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/1;
}

/* products page heading */
.products-page-heading {
  font-family: "Noir Noir Regular", sans-serif;
  text-transform: uppercase;
  font-size: 100px;
  /* line-height: 80px; */
  letter-spacing: 0.2em;
  text-align: center;
  color: black;
  padding-block: 100px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  column-gap: 70px;
}
.products-page-heading .title-word {
  display: flex;
}

/* products section */
.products-section-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.product-image {
  max-width: 418px;
  max-height: 234px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: all 0.2s ease-in;
}
.product-image:hover img {
  scale: 1.05;
}
.product-title {
  font-size: 25px;
  line-height: 40px;
  font-weight: 500;
  color: black;
  padding-block: 24px;
}
.product-subtitle {
  color: #4e4e4e;
  text-transform: uppercase;
  padding-bottom: 16px;
}
.product-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style-type: none;
  color: #4e4e4e;
  line-height: 40px;
}
.product-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 50px;
}
.product-buttons button:first-child {
  flex: 1.5;
  height: 50px;
  border-radius: 100px;
  background-color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  padding-inline: 22px;
  text-transform: uppercase;
}
.product-buttons button:first-child:hover {
  background-color: #23a070;
}
.product-buttons button:last-child {
  flex: 1;
  height: 50px;
  border-radius: 100px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #474747;
  padding-inline: 22px;
  text-transform: uppercase;
}
.product-buttons button:last-child .call-hover-icon {
  display: none;
}
.product-buttons button:last-child:hover {
  border-color: #23a070;
  color: #23a070;
}
.product-buttons button:last-child:hover .call-icon {
  display: none;
}
.product-buttons button:last-child:hover .call-hover-icon {
  display: block;
}
.product-buttons button:active {
  scale: 0.95;
}

/* FAQ section */
.faq-section {
  gap: 24px;
  margin-block: 300px;
  display: flex;
  justify-content: space-between;
}
.faq-section .faq-left {
  flex: 1;
}
.faq-section .faq-left h2 {
  font-size: 50px;
  line-height: 52px;
  font-weight: 500;
}
.faq-right,
.faq-right ul,
.accordion-title,
.accordion-title > label {
  display: flex;
}
.faq-right {
  flex: 1.5;
  align-items: center;
  justify-content: center;
}
.faq-right ul {
  flex-direction: column;
  /* gap: 0.875rem; */
}
.faq-right ul li {
  list-style-type: none;
  border-bottom: 1.5px solid #000;
  padding-block: 0.75rem;
}
.faq-right ul li:hover .accordion-title {
  color: #128d59;
}
.faq-right ul:first-child {
  border-top: 1.5px solid #000;
}
.faq-right ul li input {
  display: none;
}
.faq-right ul li .accordion-title {
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-right: 6px;
}
.faq-right ul li .accordion-title h3 {
  font-size: 25px;
  line-height: 70px;
}
.accordion-title > span {
  display: block;
  margin-left: 1.25rem;
  font-size: 2.5rem;
  font-weight: 200;
}
.accordion-content {
  font-size: 20px;
  color: #3c3c3c;
  max-height: 0;
  line-height: 50px;
  overflow: hidden;
  transition: max-height 200ms, padding 200ms;
}
.faq-right ul li input:checked + label + .accordion-content {
  padding: 0.5rem 0;
  max-height: fit-content;
}
.faq-right ul li label > span {
  transform: rotate(90deg);
  transition: transform 300ms ease-out;
}
.faq-right ul li input:checked + label > span {
  transform: rotate(45deg);
}

/* book now modal */
.modal-content {
  padding: 60px;
  padding-top: 40px;
}
.modal-header {
  position: relative;
  padding: 0;
  padding-bottom: 25px;
  border: none;
}
.modal-body {
  padding: 0;
}
.modal-title {
  font-size: 50px;
  color: #000;
}
.modal-header .btn-close {
  position: absolute;
  right: -20px;
  top: -10px;
}
.contact-form h3 {
  font-size: 16px;
  padding-bottom: 10px;
}

#alert-container {
  min-width: 200px;
  max-width: 500px;
  width: 100%;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999999; /* Ensure it's above other elements */
}

/* responsive codes */
@media (max-width: 1200px) {
  .products-section-container {
    gap: 10px;
  }
  .products-page-banner {
    padding-top: 80px;
  }
  .products-page-heading {
    font-size: 70px;
    padding-block: 70px;
  }
  .product-buttons {
    width: 90%;
  }
  .faq-section {
    margin-block: 200px;
  }
  .faq-right {
    flex: 2;
  }
  .modal-content {
    padding: 40px;
    padding-top: 25px;
  }
  .modal-header .btn-close {
    position: absolute;
    right: 0px;
    top: 5px;
  }
}
@media (max-width: 992px) {
  .products-section-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-page-heading {
    font-size: 40px;
    padding-block: 40px;
    column-gap: 25px;
  }
  .products-section-container {
    gap: 10px;
  }
  .product-title {
    font-size: 20px;
    line-height: 30px;
    padding-block: 20px;
  }
  .product-subtitle {
    font-size: 12px;
    padding-bottom: 10px;
  }
  .product-wrapper ul li {
    font-size: 10px;
    line-height: 25px;
    gap: 4px;
  }
  .product-wrapper ul li img {
    width: 14px;
  }
  .product-buttons {
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .product-buttons button:first-child,
  .product-buttons button:last-child {
    height: 40px;
    border-radius: 100px;
    gap: 10px;
    padding-inline: 16px;
    font-size: 14px;
  }
  .product-buttons button:first-child img,
  .product-buttons button:last-child img {
    width: 20px;
  }
  .product-buttons button:last-child {
    gap: 0px;
    padding-inline: 8px;
  }

  /* FAQ section */
  .faq-section {
    gap: 40px;
    margin-block: 100px;
  }
  .faq-section .faq-left h2 {
    font-size: 30px;
    line-height: normal;
  }
  .faq-right {
    flex: 3;
  }
  .faq-right ul li .accordion-title h3 {
    font-size: 18px;
    line-height: 40px;
  }

  .accordion-content {
    font-size: 16px;
    line-height: 40px;
  }
  .faq-right ul li input:checked + label + .accordion-content {
    padding: 0.5rem 0;
  }

  /* modal */
  .modal-header {
    padding-bottom: 20px;
  }
  .modal-title {
    font-size: 40px;
  }
  .modal-header .btn-close {
    right: 0px;
    top: 0px;
  }
  .contact-form h3 {
    font-size: 14px;
    padding-bottom: 0px;
  }
}

@media (max-width: 768px) {
  .products-page-banner {
    padding-top: 60px;
  }
  .modal-content {
    padding: 30px;
    padding-top: 20px;
  }
}

@media (max-width: 600px) {
  .products-page-heading {
    font-size: 25px;
    padding-block: 30px;
    column-gap: 16px;
  }
  .products-section-container {
    gap: 5px;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal{
    margin-top: -8px;
  }
  .product-title {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: black;
    padding-block: 14px 10px;
  }
  .product-subtitle {
    font-size: 10px;
    padding-bottom: 5px;
  }
  .product-buttons button:first-child,
  .product-buttons button:last-child {
    height: 30px;
    border-radius: 100px;
    gap: 8px;
    padding-inline: 16px;
    font-size: 10px;
  }
  .product-buttons {
    gap: 8px;
    margin-top: 14px;
    margin-bottom: 24px;
  }
  .product-buttons button:first-child img {
    width: 16px;
  }
  .product-buttons button:last-child {
    gap: 0px;
    padding-inline: 8px;
  }
  .product-buttons button:last-child img {
    width: 16px;
  }

  /* FAQ section */
  .faq-section {
    flex-direction: column;
    gap: 50px;
    margin-block: 100px;
  }
  .faq-section .faq-left h2 {
    font-size: 25px;
  }
  .faq-right ul li .accordion-title h3 {
    font-size: 18px;
    line-height: 30px;
  }
  .accordion-title > span {
    font-size: 2rem;
  }
  .faq-right ul li input:checked + label + .accordion-content {
    padding: 10px 0;
    max-height: fit-content;
  }
  .modal-header {
    padding-bottom: 16px;
  }
  .modal-title {
    font-size: 30px;
  }
  .modal-body .contact-form .contact-btn {
    gap: 25px;
  }
  .contact-form .form-floating .form-control {
    height: 50px;
  }
  .contact-form .form-floating textarea.form-control {
    height: 64px;
  }

  #alert-container{
    width: 90%;
  }
}

@media (max-width: 450px) {
  .product-wrapper ul li {
    font-size: 8px;
    line-height: 20px;
    gap: 4px;
  }
  .product-wrapper ul li img {
    width: 10px;
  }
  .modal-content {
    padding: 20px;
  }
  .modal-header .btn-close {
    top: 0px;
  }
}
