.button-common, #whatsappBtn, #callBtn, #scrollToTopBtn {
  position: fixed;
  right: 20px;
  border: none;
  outline: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.button-common img, #whatsappBtn img, #callBtn img, #scrollToTopBtn img {
  width: 25px;
  height: auto;
}

#scrollToTopBtn {
  bottom: 20px;
}

#callBtn {
  bottom: 80px;
  visibility: visible;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#whatsappBtn {
  bottom: 140px;
  visibility: visible;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: white;
  margin: auto;
  padding: 25px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.modal-message {
  color: rgba(10, 10, 10, 0.5019607843);
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.modal-button {
  color: white;
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  transition: background-color 0.3s;
  order: 3;
  cursor: pointer;
  max-width: 280px;
  align-self: center;
}
.modal-button:disabled {
  background-color: gray;
  cursor: not-allowed;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 25px;
  height: 25px;
}
.modal-close img {
  width: 25px;
}

.modal-hidden {
  display: none;
}

header {
  width: 100%;
  position: relative;
}

.sticky-banner {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px;
}
.sticky-banner .sticky-banner-content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.sticky-banner .sticky-banner-content span {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}
.sticky-banner .sticky-banner-content .banner-button {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  outline: none;
  min-width: fit-content;
}
.sticky-banner .sticky-banner-content .banner-button:hover {
  filter: brightness(1.1);
}

/* faq styles */
.faq-main-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-items {
  width: 100%;
  margin-top: 1.5rem;
}

.faq-item {
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.faq-question-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.faq-answer.open {
  max-height: 360px;
  opacity: 1;
}

.skeleton-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background-color: #e1e2e6;
  border-radius: 0.375rem;
  width: 100%;
  min-height: 80px;
}
.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: wave 1.5s linear infinite;
}

@keyframes wave {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/*# sourceMappingURL=styles.css.map */