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

/* ---- HERO ---- */
.contact-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.contact-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 600px;
}
.contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.contact-schedule-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  cursor: pointer;
}
.contact-schedule-bar:hover { border-color: var(--orange); color: var(--orange); }
.contact-forum-img { margin-top: 8px; }
.forum-placeholder {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.forum-label {
  font-family: 'Manrope', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.12em;
}
.forum-placeholder p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- FAQ FULL PAGE ---- */
.faq-full-section {
  padding: 80px 0 100px;
}

/* Tag pill with asterisks */
.faq-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.faq-tag-pill span { color: var(--orange); font-size: 16px; }

.faq-main-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Stacked FAQ items */
.faq-full-section .faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-full-section .faq-item.open {
  border-color: #333;
}
.faq-full-section .faq-question {
  width: 100%;
  text-align: left;
  background: var(--bg-2);
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-full-section .faq-question:hover { background: var(--bg-3); }
.faq-full-section .faq-item.open .faq-question { background: var(--bg-2); }
.faq-full-section .faq-question::after {
  content: none;
}
.faq-full-section .faq-question .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
}
.faq-full-section .faq-item.open .faq-question .faq-icon {
  background: var(--bg-3);
  color: var(--text);
}
.faq-full-section .faq-answer {
  display: none;
  padding: 8px 28px 28px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.faq-full-section .faq-item.open .faq-answer { display: block; }
.faq-full-section .faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.faq-full-section .faq-answer p:last-child { margin-bottom: 0; }
.faq-full-section .faq-answer p strong { color: var(--text); }
.faq-full-section .faq-answer ul {
  margin: 8px 0 14px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-full-section .faq-answer ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.faq-full-section .faq-answer ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
  top: 3px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .contact-btns { flex-direction: column; }
  .faq-full-section .faq-question { font-size: 14px; padding: 18px 20px; }
  .faq-full-section .faq-answer { padding: 8px 20px 20px; }
  .faq-main-heading { font-size: clamp(28px, 8vw, 48px); }
}
