/* ==============================================
   ADDITIONAL STYLES - additional_styles.css
   Matches dark blue/yellow Tectonic design
   ============================================== */

/* ---- SEO H1 Heading Style ---- */
.seo-h1-heading {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #f4f499;
  text-align: center;
  margin: 0 auto 32px auto;
  max-width: 900px;
  letter-spacing: 0.02em;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .seo-h1-heading {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 24px;
  }
}

/* ---- FAQ Section Wrapper ---- */
.faq-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: rgb(13, 13, 47);
  margin-top: 56px;
  padding: 48px 16px 56px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
}

.faq-section-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* ---- FAQ Accordion Item ---- */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  margin-bottom: 12px;
  background-color: rgb(31, 31, 63);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(244, 244, 153, 0.4);
}

.faq-item.faq-open {
  border-color: rgba(244, 244, 153, 0.7);
  box-shadow: 0px 0px 8px 1px rgba(244, 244, 153, 0.15);
}

/* ---- FAQ Question Button (h2) ---- */
.faq-question {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  padding: 0;
  width: 100%;
}

.faq-question-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  transition: color 0.2s ease;
  box-sizing: border-box;
}

.faq-question-btn:hover {
  color: #f4f499;
}

.faq-item.faq-open .faq-question-btn {
  color: #f4f499;
}

/* ---- FAQ Toggle Icon ---- */
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: #f4f499;
}

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

/* ---- FAQ Answer (h3) ---- */
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    padding 0.35s ease;
  opacity: 0;
}

.faq-item.faq-open .faq-answer-wrapper {
  max-height: 600px;
  opacity: 1;
}

.faq-answer {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding: 0 20px 20px 20px;
  font-family: Montserrat, sans-serif;
  box-sizing: border-box;
}

.faq-answer a {
  color: #f4f499;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: #ffffff;
}

/* ---- FAQ Section Bottom Links ---- */
.faq-bottom-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.faq-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.faq-link-btn-primary {
  background-color: #f4f499;
  color: rgb(13, 13, 47);
  border: 1px solid #f4f499;
}

.faq-link-btn-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: rgb(13, 13, 47);
}

.faq-link-btn-secondary {
  background-color: transparent;
  color: #f4f499;
  border: 1px solid rgba(244, 244, 153, 0.5);
}

.faq-link-btn-secondary:hover {
  background-color: rgba(244, 244, 153, 0.1);
  border-color: #f4f499;
  color: #f4f499;
}

/* ---- FAQ Page / About Page Full Layout ---- */
.page-layout {
  min-height: 100vh;
  background-color: rgb(0, 0, 36);
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  display: flex;
  flex-direction: column;
}

/* ---- Page Nav (reused style) ---- */
.page-nav {
  background: transparent;
  padding: 11px 16px;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.page-nav-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  height: 74px;
  border-radius: 30px;
  padding: 0 40px;
  box-shadow: inset -1px -1px 1px -1px #fff, inset 2px 2px 2px -2px #fff;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-sizing: border-box;
}

.page-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.page-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.page-nav-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-nav-link:hover,
.page-nav-link.active {
  color: #f4f499;
}

/* ---- Page Hero / Header ---- */
.page-hero {
  width: 100%;
  max-width: 1280px;
  margin: 40px auto 0 auto;
  padding: 48px 32px 40px 32px;
  box-sizing: border-box;
  text-align: center;
}

.page-hero-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: #f4f499;
  margin: 0 0 16px 0;
}

.page-hero-subtitle {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-hero-title {
    font-size: 24px;
    line-height: 32px;
  }
  .page-hero-subtitle {
    font-size: 14px;
  }
}

/* ---- Page Content Container ---- */
.page-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 64px 32px;
  flex: 1;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-content {
    padding: 0 16px 48px 16px;
  }
  .page-nav-inner {
    padding: 0 16px;
  }
}

/* ---- Content Card (dark) ---- */
.content-card {
  background-color: rgb(13, 13, 47);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 28px 28px;
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.content-card:hover {
  border-color: rgba(244, 244, 153, 0.3);
}

.content-card-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #f4f499;
  margin: 0 0 12px 0;
}

.content-card-body {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ---- Grid layout for about/faq content cards ---- */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ---- Section Title ---- */
.section-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 40px 0 20px 0;
}

.section-title span {
  color: #f4f499;
}

.section-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin: 32px 0;
}

/* ---- About page team / mission block ---- */
.about-highlight-box {
  background: linear-gradient(to right, rgb(31, 31, 63), rgb(13, 13, 47));
  border: 1px solid rgba(244, 244, 153, 0.25);
  border-radius: 10px;
  padding: 32px 28px;
  margin-bottom: 28px;
  box-sizing: border-box;
}

.about-highlight-box h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #f4f499;
  margin: 0 0 12px 0;
}

.about-highlight-box p {
  font-size: 15px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ---- Stats Row ---- */
.stats-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.stat-box {
  flex: 1 1 180px;
  background-color: rgb(31, 31, 63);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 20px 20px;
  text-align: center;
  box-sizing: border-box;
}

.stat-box-value {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #f4f499;
  display: block;
  margin-bottom: 4px;
}

.stat-box-label {
  font-size: 13px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ---- FAQ Page Accordion Variants ---- */
.faq-page-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  margin-top: 32px;
}

.faq-page-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  margin-bottom: 12px;
  background-color: rgb(31, 31, 63);
  overflow: hidden;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.faq-page-item:hover {
  border-color: rgba(244, 244, 153, 0.4);
}

.faq-page-item.faq-open {
  border-color: rgba(244, 244, 153, 0.7);
  box-shadow: 0px 0px 8px 1px rgba(244, 244, 153, 0.12);
}

.faq-page-question {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  padding: 0;
  width: 100%;
}

.faq-page-question-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  transition: color 0.2s ease;
  box-sizing: border-box;
}

.faq-page-question-btn:hover {
  color: #f4f499;
}

.faq-page-item.faq-open .faq-page-question-btn {
  color: #f4f499;
}

.faq-page-item.faq-open .faq-icon {
  transform: rotate(180deg);
}

.faq-page-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
  opacity: 0;
}

.faq-page-item.faq-open .faq-page-answer-wrapper {
  max-height: 700px;
  opacity: 1;
}

.faq-page-answer {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding: 0 20px 20px 20px;
  font-family: Montserrat, sans-serif;
  box-sizing: border-box;
}

.faq-page-answer a {
  color: #f4f499;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.faq-page-answer a:hover {
  color: #ffffff;
}

/* ---- Page Footer ---- */
.page-footer {
  width: 100%;
  background-color: rgb(13, 13, 47);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px 16px;
  text-align: center;
  box-sizing: border-box;
}

.page-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.page-footer-link {
  color: #f4f499;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-footer-link:hover {
  color: #ffffff;
}

.page-footer-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ---- Breadcrumb ---- */
.page-breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-breadcrumb a {
  color: #f4f499;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
  color: #ffffff;
}

.page-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* ---- CTA Button ---- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
}

.cta-btn-primary {
  background-color: #f4f499;
  color: rgb(13, 13, 47);
  border: none;
}

.cta-btn-primary:hover {
  background-color: #ffffff;
  color: rgb(13, 13, 47);
}

.cta-btn-outline {
  background-color: transparent;
  color: #f4f499;
  border: 1px solid rgba(244, 244, 153, 0.6);
}

.cta-btn-outline:hover {
  background-color: rgba(244, 244, 153, 0.1);
  color: #f4f499;
}

/* ---- CTA Row ---- */
.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---- Rainbow gradient accent border (matching site) ---- */
.gradient-border-box {
  background: linear-gradient(to right, #99ebf4, #ff96df);
  padding: 1px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.gradient-border-box-inner {
  background-color: rgb(13, 13, 47);
  border-radius: 9px;
  padding: 24px;
  box-sizing: border-box;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 768px) {
  .faq-section {
    margin-top: 32px;
    padding: 32px 12px 40px 12px;
  }
  .faq-question-btn,
  .faq-page-question-btn {
    font-size: 14px;
    padding: 14px 14px;
  }
  .faq-answer,
  .faq-page-answer {
    font-size: 13px;
    padding: 0 14px 16px 14px;
  }
  .content-card {
    padding: 20px 16px;
  }
  .about-highlight-box {
    padding: 24px 16px;
  }
  .stat-box-value {
    font-size: 22px;
  }
  .section-title {
    font-size: 20px;
  }
  .cta-row {
    flex-direction: column;
    gap: 12px;
  }
  .page-hero {
    padding: 32px 16px 24px 16px;
  }
  .faq-bottom-links {
    flex-direction: column;
    gap: 12px;
  }
}