/* ===========================
   FAQ PAGE
   =========================== */

.faq-page {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fff;
  margin: 0;
}

/* --- Sub-nav --- */
.faq-page .faq-subnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 10px 40px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.faq-page .faq-subnav .breadcrumb {
  color: #fff;
}

.faq-page .faq-subnav .community {
  color: #ccc;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
}

/* --- Hero --- */
.faq-page .faq-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 60px 24px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7)),
    url('Photos/neptune Photos/faq.png') center/cover no-repeat;
}

.faq-page .faq-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  margin: 0 0 12px;
}

.faq-page .faq-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 28px;
}

.faq-page .faq-hero-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.faq-page .faq-hero-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* --- Intro --- */
.faq-page .faq-intro {
  text-align: center;
  padding: 48px 24px 32px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-page .faq-intro p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* --- Accordion --- */
.faq-page .faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.faq-page .faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-page .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  color: #333;
  line-height: 1.4;
}

.faq-page .faq-question:hover {
  color: #111;
}

.faq-page .faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  color: #999;
  transition: transform 0.25s;
}

.faq-page .faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-page .faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-page .faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* --- Contact express --- */
.faq-page .faq-contact {
  text-align: center;
  padding: 70px 24px 90px;
  background: #fafafa;
}

.faq-page .faq-contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  margin: 0 0 10px;
}

.faq-page .faq-contact p {
  font-size: 15px;
  color: #666;
  margin: 0 0 28px;
}

.faq-page .faq-contact-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid #bbb;
  border-radius: 6px;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  background: #fff;
  transition: background 0.2s;
}

.faq-page .faq-contact-btn:hover {
  background: #f0f0f0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .faq-page .faq-subnav {
    flex-direction: column;
    gap: 6px;
    padding: 12px 20px;
  }
}
