/* hero */

.hero-content {
  background-image: url("../images/contact-hero.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 650px;
  max-height: 100vh;
}

h1 {
  font-size: var(--font-size-4xl);
  color: #ffff;
}

.contact-desc {
  font-size: var(--font-size-xl);
  color: #ffff;
}

form {
  border-radius: 32px;
  background: linear-gradient(180deg, #fdf7f4 0%, #faeee6 100%);
  padding: 40px 24px;
  margin: 96px 0;
}

.contact-card {
  border-radius: 24px;
  background: #fff;
  padding: 16px 24px;
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 16px;
}

.contact-us-title {
  margin-bottom: 40px;
}

.icon {
  background: #c69d8a1a;
  border-radius: 16px;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
}

h2 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

p {
  color: var(--natural-300);
  font-size: var(--font-size-lg);
}

/* FAQ Container and Tabs */

.faq-desc {
  color: var(--natural-50);
  font-size: var(--font-size-xl);
}

.faq-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--natural-50);
  padding: 10px 12px;
  border-radius: 16px;
  width: 50%;
  margin: auto;
  margin-bottom: 32px;
}

.faq-tab {
  background: transparent;
  border: none;
  padding: 12px;
  cursor: pointer;
  white-space: nowrap;
  color: var(--natural-300);
  font-size: var(--font-size-xl);
  width: 100%;
}

.faq-tab.active {
  border-radius: 8px;
  background: var(--primary-50);
  color: var(--primary-500);
  font-weight: 500;
}

/* Tab Content */
.faq-tab-content {
  display: none;
}

.faq-tab-content.active {
  display: block;
}

/* FAQ Grid Layout */
.faq-grid {
  display: grid;
  grid-template-columns: 75%;
  justify-content: center;
  gap: 16px;
}

.faq-question .arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-question .arrow.right {
  order: 3;
}

.faq-title {
  text-align: center;
  font-size: var(--font-size-2xl);
  font-weight: 500;
  margin-bottom: 32px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--natural-500);
  border-radius: 16px;
  border: 1px solid var(--tertiary-500);
  background: var(--tertiary-50);
  flex: 1 0 0;
}

.faq-answer {
  display: none;
  padding: 16px;
  color: var(--natural-400);
  line-height: 1.8;
  font-size: var(--font-size-md);
  background: white;
}

.faq-item {
  background: #fafafa;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Open State */
.faq-item.open .faq-question {
  border-radius: 8px 8px 0 0;
  background: var(--tertiary-100);
  border: none;
}

.faq-item.open .faq-answer {
  display: block;
  border-right: 1px solid var(--tertiary-200);
  border-bottom: 1px solid var(--tertiary-200);
  border-left: 1px solid var(--tertiary-200);
}

.faq-item.open .arrow {
  transform: rotate(180deg);
}

/* Bottom Button */
.faq-bottom {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.faq-view-btn {
  border: 1px solid var(--primary-500);
  background: transparent;
  color: var(--primary-500);
  padding: 12px 32px;
  width: fit-content;
  border-radius: 8px;
  box-shadow: 0 4px 16px 0 rgba(56, 19, 18, 0.04);
  font-size: var(--font-size-normal);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.faq-view-btn:hover {
  background: white;
  color: var(--primary-600);
}

.faq-hero-content {
  background-image: url("../images/faq-hero.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 650px;
  max-height: 100vh;
}
.faq-answer.faqCustomerAnswer10 {
  white-space: pre-line;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-container {
    padding: 24px;
  }

  .faq-tabs {
    flex-direction: column;
    width: 100%;
  }

  .faq-tab {
    width: 100%;
    text-align: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-question {
    font-size: var(--font-size-sm);
    padding: 16px 12px;
  }

  .faq-question .arrow svg {
    width: 24px;
    height: 24px;
  }
}
