/* ============================================
   CONTACT PAGE — contact.css
   ============================================ */

/* --- HERO --- */
.contact-page-hero {
  padding: 80px 24px 48px;
  text-align: center;
}

.contact-page-hero .services-eyebrow {
  justify-content: center;
}

.contact-page-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-page-headline {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.1;
  color: #111111;
  margin: 24px 0 20px;
}

.contact-page-subhead {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  color: #777777;
  line-height: 1.65;
}

/* --- FORM SECTION --- */
.contact-page-form-section {
  padding: 0 24px 100px;
}

.contact-page-form-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-page-form-card {
  background-color: #111111;
  border-radius: 24px;
  padding: 48px;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

/* --- INFO STRIP --- */
.contact-page-info-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-page-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #333333;
}

/* --- FAQ SECTION --- */
.faq-section {
  background-color: #f7f7f7;
  padding: 100px 24px;
}

.faq-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-headline {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 48px;
  color: #111111;
  text-align: center;
  margin: 24px 0 64px;
  line-height: 1.2;
}

.faq-headline em {
  font-style: italic;
}

.faq-group {
  width: 100%;
  margin-bottom: 48px;
}

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

.faq-group-label {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999999;
  background-color: #ebebeb;
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 4px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 24px 4px;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.faq-question span:first-child {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 17px;
  color: #111111;
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background-color: #111111;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
  transition: background-color 0.2s ease;
}

.faq-item.open .faq-icon {
  background-color: var(--color-accent-dot);
}

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

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #777777;
  line-height: 1.65;
  max-width: 700px;
}
