/* ── Page header background ───────────────────────────────── */
.page-header {
  background:
    linear-gradient(to bottom, rgba(4, 13, 26, 0.45) 0%, rgba(7, 21, 38, 0.88) 100%),
    url('../multimedia/contact/contact_bg.webp') center / cover no-repeat;
}

/* ── Contact socials ──────────────────────────────────────── */
.contact-socials {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(10, 30, 60, 0.08);
}

.contact-socials-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}

.contact-socials-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid rgba(10, 30, 60, 0.1);
  border-radius: 9px;
  background: var(--offwhite);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(10, 30, 60, 0.65);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.contact-social-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-social-btn:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: var(--white);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid rgba(10, 30, 60, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(10, 30, 60, 0.07);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  text-align: left;
  transition: background 0.15s;
}

.faq-btn:hover {
  background: rgba(10, 30, 60, 0.025);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--sky);
  opacity: 0.6;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(10, 30, 60, 0.62);
}

.faq-answer a {
  color: var(--sky);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.faq-answer a:hover {
  opacity: 0.75;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-btn {
    padding: 16px 18px;
    font-size: 14px;
  }

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

  .contact-socials-row {
    gap: 8px;
  }
}
