/* ============================================================
   SHARED PAGE STYLES — FAQ + Contact
   Minimal hero, page-level layout utilities
   ============================================================ */


/* ── PAGE MINI-HERO (shared) ── */
.page-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.65) 0%, #111111 100%),
    url('../img/bg-map.jpg') 50% / cover no-repeat;
  background-color: #111111;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 56px;
  text-align: center;
  overflow: hidden;
}

/* Faint green centre glow */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(153,238,45,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow-bar {
  width: 20px;
  height: 2px;
  background: var(--c-green);
  flex-shrink: 0;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--c-white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.page-hero__title em {
  color: var(--c-green);
  font-style: normal;
}

.page-hero__sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* ============================================================
   FAQ PAGE
   ============================================================ */

.faq-page {
  padding: clamp(60px, 9vw, 100px) 0 clamp(80px, 10vw, 120px);
  background: #111;
}

.faq-page__inner {
  max-width: 780px;
  margin: 0 auto;
}

/* Category label above a group */
.faq-page__group {
  margin-bottom: 48px;
}

.faq-page__group:last-child { margin-bottom: 0; }

.faq-page__group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-page__group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(153,238,45,0.15);
}

/* Accordion list */
.faq-page__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-page__item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: border-color .25s ease;
}

.faq-page__item:hover {
  border-color: rgba(153,238,45,0.2);
}

.faq-page__item.is-open {
  border-color: rgba(153,238,45,0.35);
}

.faq-page__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.45;
  color: var(--c-white);
  transition: color .2s;
}

.faq-page__q:hover { color: var(--c-green-light); }

.faq-page__item.is-open .faq-page__q { color: var(--c-green-light); }

/* +/× icon */
.faq-page__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.5);
  transition: transform .35s ease, background .25s, border-color .25s, color .25s;
}

.faq-page__icon svg {
  width: 14px;
  height: 14px;
  display: block;
  transition: transform .35s ease;
}

.faq-page__item.is-open .faq-page__icon {
  background: var(--c-green);
  border-color: var(--c-green);
  color: #111;
}

.faq-page__item.is-open .faq-page__icon svg {
  transform: rotate(45deg);
}

/* Answer panel */
.faq-page__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
}

.faq-page__item.is-open .faq-page__a {
  max-height: 400px;
}

.faq-page__a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}

/* Still have questions CTA */
.faq-page__cta {
  margin-top: 60px;
  padding: 36px 40px;
  background: rgba(153,238,45,0.04);
  border: 1px solid rgba(153,238,45,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-page__cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-page__cta-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--c-white);
  line-height: 1;
}

.faq-page__cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 120px);
  background: #111;
}

.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

/* Left — form */
.contact-page__form-wrap {
  display: flex;
  flex-direction: column;
}

.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-page__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-page__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.contact-page__input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .25s, background .25s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.contact-page__input:focus {
  border-color: rgba(153,238,45,0.4);
  background: rgba(153,238,45,0.03);
}

.contact-page__input::placeholder { color: rgba(255,255,255,0.25); }

.contact-page__textarea {
  height: auto;
  min-height: 148px;
  padding: 16px 18px;
  resize: vertical;
}

/* Submit row */
.contact-page__submit-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.contact-page__submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-page__microtext {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Right — info panel */
.contact-page__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 6px;
}

.contact-page__info-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--c-white);
  margin-bottom: 4px;
}

.contact-page__info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color .2s;
}

.contact-page__info-row:hover {
  border-color: rgba(153,238,45,0.18);
}

.contact-page__info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(153,238,45,0.08);
  border: 1px solid rgba(153,238,45,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
}

.contact-page__info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.contact-page__info-value {
  font-size: 14px;
  color: var(--c-white);
  word-break: break-all;
}

.contact-page__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-page__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 580px;
  }

  .contact-page__info { order: -1; }

  .faq-page__cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .page-hero { padding-top: calc(var(--header-h) + 44px); padding-bottom: 40px; }
  .page-hero__sub { font-size: 14px; }

  .faq-page__q { padding: 16px 18px; font-size: 14px; }
  .faq-page__a-inner { padding: 0 18px 16px; padding-top: 14px; }

  .contact-page__submit { width: 100%; justify-content: center; }

  .contact-page__info-row { padding: 16px; }
}
