/* ==========================================================================
   Shuvatara — Modern FAQ Section
   IMPORTANT: `.faq-item`, `.faq-title`, `.faq-panel`, `.faq-para` are
   required as-is by the accordion click handler in main.js
   ($('.faq-contents .faq-title').on('click', ...) which walks
   $(this).parent('.faq-item') and toggles the `.open` class / slideUp/
   slideDown on `.faq-panel`). We keep those classes and DOM nesting
   exactly as they are and layer new `sh-faq__*` classes alongside them
   purely for visual restyling.
   ========================================================================== */

#faq {
  background: #fbf9f5;
}

.sh-faq__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.sh-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sh-gold, #d4af6a);
  margin-bottom: 14px;
}

.sh-faq__eyebrow::before,
.sh-faq__eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--sh-gold, #d4af6a);
}

.sh-faq__head-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.25;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 14px;
}

.sh-faq__lead {
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  line-height: 1.85;
  color: #5c6470;
  margin: 0;
}

/* ------------------------------- Accordion items ------------------------------- */
.sh-faq .sh-faq__item {
  border: 1px solid rgba(11, 20, 32, .08);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.sh-faq .sh-faq__item:not(:first-child) { margin-top: 16px; }

.sh-faq .sh-faq__item.open {
  border-color: var(--sh-gold, #d4af6a);
  box-shadow: 0 20px 40px -28px rgba(11, 20, 32, .25);
}

.sh-faq .sh-faq__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 22px 24px;
  cursor: pointer;
  background: none;
  border-radius: 0;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--sh-navy, #0b1420);
  transition: color .25s ease;
}

.sh-faq .sh-faq__title::after { content: none !important; }

.sh-faq .sh-faq__item.open .sh-faq__title { color: var(--sh-gold, #d4af6a); }

.sh-faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212, 175, 106, .14);
  color: var(--sh-gold, #d4af6a);
  font-size: 14px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.sh-faq .sh-faq__item.open .sh-faq__icon {
  transform: rotate(135deg);
  background: linear-gradient(135deg, var(--sh-gold-light, #f1dfb5), var(--sh-gold, #d4af6a));
  color: #241a05;
}

.sh-faq .sh-faq__panel {
  padding: 0 24px 24px;
  border-top: none;
}

.sh-faq .sh-faq__para {
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  line-height: 1.8;
  color: #5c6470;
  margin: 0;
}

/* ------------------------------- Reviews aside ------------------------------- */
.sh-faq__aside {
  background: #fff;
  border: 1px solid rgba(11, 20, 32, .07);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 24px 50px -30px rgba(11, 20, 32, .2);
}

.sh-faq__aside-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11, 20, 32, .08);
}

@media (max-width: 767px) {
  .sh-faq .sh-faq__title { font-size: 15.5px; padding: 18px 20px; }
  .sh-faq .sh-faq__panel { padding: 0 20px 20px; }
}
