body:has(.faq-page-wrapper),
body.page-faq-light {
  background-color: #faf8f5;
  color: #232127;
}

.faq-page-wrapper {
  padding-top: var(--header-height-resting);
  min-height: 100vh;
  background: radial-gradient(circle at 85% 15%, rgba(107, 14, 24, 0.04) 0%, transparent 60%),
              radial-gradient(circle at 12% 50%, rgba(203, 168, 113, 0.08) 0%, transparent 55%),
              #faf8f5;
  color: #232127;
  position: relative;
  overflow: hidden;
}

.faq-page-wrapper::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 980px;
  height: 540px;
  background: radial-gradient(circle, rgba(203, 168, 113, 0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(100px);
}

.faq-hero {
  padding: 60px 0 35px;
  border-bottom: 1px solid rgba(203, 168, 113, 0.28);
  background: linear-gradient(180deg, rgba(85, 10, 18, 0.05) 0%, rgba(250, 248, 245, 0.8) 100%);
  position: relative;
}

.faq-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #726e79;
  margin-bottom: 18px;
}

.breadcrumb-nav a {
  color: #550a12;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.breadcrumb-nav a:hover {
  color: #9e7534;
}

.breadcrumb-separator {
  color: #cba871;
  font-weight: 600;
  opacity: 0.8;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(107, 14, 24, 0.06);
  border: 1px solid rgba(203, 168, 113, 0.45);
  color: #550a12;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(85, 10, 18, 0.04);
}

.faq-hero-badge span.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cba871;
  box-shadow: 0 0 10px rgba(203, 168, 113, 0.8);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.faq-main-title {
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  font-weight: 800;
  color: #1a0407;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.faq-main-title span.highlight {
  background: linear-gradient(135deg, #550a12 0%, #871321 35%, #b68b48 80%, #9e7534 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #54505c;
  font-weight: 500;
  max-width: 900px;
  line-height: 1.65;
}

.faq-accordion-section {
  max-width: 1100px;
  margin: 45px auto 55px;
  padding: 0 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.3);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(85, 10, 18, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: #cba871;
  background: #fffdfa;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(85, 10, 18, 0.08);
}

.faq-item.is-open {
  background: linear-gradient(145deg, #ffffff 0%, #fdfaf5 100%);
  border-color: #cba871;
  box-shadow: 0 12px 35px rgba(85, 10, 18, 0.1), 0 2px 8px rgba(203, 168, 113, 0.2);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 28px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: color 0.3s ease;
}

html[dir="ltr"] .faq-question-btn {
  text-align: left;
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.faq-q-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #550a12;
  background: rgba(107, 14, 24, 0.06);
  border: 1px solid rgba(203, 168, 113, 0.35);
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.is-open .faq-q-num {
  background: linear-gradient(135deg, #550a12 0%, #7d121e 100%);
  color: #f7e7c8;
  border-color: #cba871;
  box-shadow: 0 2px 10px rgba(85, 10, 18, 0.25);
}

.faq-q-text {
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: #1a0407;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-q-text,
.faq-item.is-open .faq-q-text {
  color: #550a12;
}

.faq-chevron {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(107, 14, 24, 0.05);
  border: 1px solid rgba(203, 168, 113, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b5924;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #550a12 0%, #7d121e 100%);
  color: #f7e7c8;
  border-color: #cba871;
  box-shadow: 0 4px 12px rgba(85, 10, 18, 0.25);
}

.faq-answer-collapse {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.is-open .faq-answer-collapse {
  max-height: 600px;
  opacity: 1;
  padding: 0 28px 26px;
}

.faq-answer-body {
  position: relative;
  padding-top: 14px;
  border-top: 1px solid rgba(203, 168, 113, 0.22);
}

.faq-answer-text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #38343e;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.15px;
}

.faq-showcase-section {
  max-width: 1400px;
  margin: 35px auto 65px;
  padding: 0 32px;
}

.faq-showcase-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(203, 168, 113, 0.35);
  box-shadow: 0 20px 50px rgba(85, 10, 18, 0.1), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: border-color 0.4s ease;
}

.faq-showcase-card:hover {
  border-color: #cba871;
}

.faq-showcase-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-showcase-card:hover .faq-showcase-img {
  transform: scale(1.025);
}

.faq-showcase-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(203, 168, 113, 0.45);
  border-radius: 20px;
  padding: 24px 34px;
  max-width: 560px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

html[dir="ltr"] .faq-showcase-overlay {
  right: auto;
  left: 30px;
}

.faq-showcase-overlay span.faq-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #7b5924;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.faq-showcase-overlay h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a0407;
  margin: 6px 0 8px;
}

.faq-showcase-overlay p {
  font-size: 0.93rem;
  color: #54505c;
  line-height: 1.65;
  margin: 0;
}

.faq-cta-section {
  max-width: 1100px;
  margin: 20px auto 60px;
  padding: 0 32px;
}

.faq-cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 55%, #f8f3ea 100%);
  border: 1.5px solid #cba871;
  border-radius: 24px;
  padding: 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 45px rgba(85, 10, 18, 0.07), 0 2px 12px rgba(203, 168, 113, 0.15);
}

.faq-cta-content h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a0407;
  margin-bottom: 8px;
}

.faq-cta-content p {
  font-size: 0.95rem;
  color: #54505c;
  margin: 0;
  line-height: 1.6;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #550a12 0%, #7d121e 100%);
  color: #ffffff;
  border: 1px solid #cba871;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(85, 10, 18, 0.22);
  transition: all 0.3s ease;
}

.faq-cta-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #700f1a 0%, #9a1727 100%);
  border-color: #dfbf88;
  box-shadow: 0 10px 28px rgba(85, 10, 18, 0.32);
  color: #ffffff;
}

.faq-bottom-nav {
  max-width: 1400px;
  margin: 10px auto 70px;
  padding: 0 32px;
  text-align: center;
}

.faq-bottom-nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn-faq-nav-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #ffffff;
  color: #550a12;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid rgba(203, 168, 113, 0.4);
  box-shadow: 0 4px 15px rgba(85, 10, 18, 0.04);
  transition: all 0.3s ease;
}

.btn-faq-nav-secondary:hover {
  background: rgba(107, 14, 24, 0.05);
  border-color: #550a12;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(85, 10, 18, 0.08);
}

.btn-faq-nav-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #550a12 0%, #7d121e 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid #cba871;
  box-shadow: 0 6px 20px rgba(85, 10, 18, 0.22);
  transition: all 0.3s ease;
}

.btn-faq-nav-primary:hover {
  background: linear-gradient(135deg, #700f1a 0%, #9a1727 100%);
  border-color: #dfbf88;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(85, 10, 18, 0.3);
}

@media (max-width: 768px) {
  .faq-question-btn {
    padding: 20px 18px;
    gap: 12px;
  }

  .faq-answer-collapse {
    padding: 0 18px;
  }

  .faq-item.is-open .faq-answer-collapse {
    padding: 0 18px 20px;
  }

  .faq-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 22px;
  }

  .faq-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .faq-showcase-overlay {
    position: static;
    margin: 16px;
    max-width: 100%;
    border-radius: 14px;
  }

  .faq-showcase-card {
    display: flex;
    flex-direction: column;
  }
}
