/* ============================================================
EXECUTIVE HUNTER — FAQ SECTION
Path: assets/css/faq.css
------------------------------------------------------------
Native <details>/<summary> accordion.
Dark premium look, matches testimonials radial gradient.
============================================================ */

.faq {
  background: radial-gradient(
    circle at top,
    #0f1c36 0%,
    #0b1320 40%,
    #060c1a 100%
  );
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Top gold shimmer line (matches testimonials) */
.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, .35), transparent);
}

.faq .container {
  position: relative;
  z-index: 1;
  width: 100%;
}


/* ============================================================
HEADER
============================================================ */

.faq-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.faq-eyebrow {
  display: inline-block;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 10px;
  color: #c9a84c;
  margin-bottom: 22px;
  font-weight: 500;
  position: relative;
  padding: 0 28px;
}

.faq-eyebrow::before,
.faq-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #c9a84c;
  opacity: .5;
}
.faq-eyebrow::before { right: 100%; margin-right: -24px; }
.faq-eyebrow::after  { left:  100%; margin-left:  -24px; }

.faq-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 18px;
}

.faq-header p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  margin: 0;
}


/* ============================================================
ACCORDION LIST
============================================================ */

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}


/* ============================================================
ACCORDION ITEM (<details>)
============================================================ */

.faq-item {
  border-top: 1px solid rgba(201, 168, 76, .18);
  transition: border-top-color .3s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(201, 168, 76, .18);
}

.faq-item[open] {
  border-top-color: rgba(201, 168, 76, .6);
}


/* ============================================================
QUESTION (<summary>)
============================================================ */

.faq-question {
  list-style: none;
  padding: 28px 4px 28px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;

  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
  line-height: 1.3;

  transition: color .25s ease;
  user-select: none;
}

/* Remove default marker (Chrome/Safari/Firefox) */
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::marker {
  display: none;
  content: '';
}

.faq-question:hover {
  color: #e4c97a;
}

.faq-item[open] .faq-question {
  color: #c9a84c;
}


/* ============================================================
PLUS / MINUS ICON
============================================================ */

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: #c9a84c;
  transform-origin: center;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

/* Vertical stroke (rotates to horizontal when opened) */
.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: rotate(0);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: #c9a84c;
}


/* ============================================================
ANSWER
============================================================ */

.faq-answer {
  padding: 0 8px 30px;
  max-width: 720px;

  /* Slide animation — supported where interpolate-size exists */
  animation: faqReveal .45s ease;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
  margin: 0;
}

.faq-answer p + p {
  margin-top: 12px;
}

/* Accent links inside answers */
.faq-answer a {
  color: #c9a84c;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, .3);
  transition: border-bottom-color .2s;
}

.faq-answer a:hover {
  border-bottom-color: #c9a84c;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
RESPONSIVE
============================================================ */

@media (max-width: 768px) {
  .faq {
    padding: 90px 0;
  }

  .faq-header {
    margin-bottom: 50px;
  }

  .faq-question {
    font-size: 18px;
    padding: 22px 4px 22px 4px;
  }

  .faq-answer {
    padding: 0 4px 24px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 64px 0;
  }

  .faq-question {
    font-size: 17px;
    gap: 14px;
  }
}


/* ============================================================
REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-icon::before,
  .faq-icon::after {
    animation: none;
    transition: none;
  }
}