/* =========================
   SHARED PAGES STYLES
   Used by: about.css, contact.css, help.css
   (each page imports this via their own file
    which is just @import of these shared rules)
========================= */

/* PAGE BANNER (inside header) */
.page-banner {
  text-align: center;
  padding: 50px 20px 40px;
}
.page-banner-title {
  font-size: 2.8rem;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.page-banner-sub {
  font-size: 1rem;
  color: #b6ffb3;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ACTIVE NAV LINK */
.active-link {
  color: var(--hover) !important;
  border-bottom: 2px solid var(--hover);
  padding-bottom: 2px;
}

/* SECTIONS */
.about-body,
.contact-body,
.help-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-section,
.contact-intro,
.contact-note,
.help-section {
  background: var(--card);
  border-radius: 16px;
  padding: 35px 30px;
  border-left: 4px solid #10AD2F;
  transition: background 0.3s;
}

.section-title {
  font-size: 1.5rem;
  color: #10AD2F;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}

.highlight-text {
  color: #10AD2F;
  font-weight: 600;
  font-style: italic;
}

/* LISTS */
.about-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  padding-left: 24px;
  position: relative;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text);
}

.about-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
}

/* SKILLS CHIPS */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.skill-chip {
  background: linear-gradient(135deg, #10AD2F, #021B02);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.2s;
}

.skill-chip:hover {
  transform: scale(1.05);
}

/* VISION SECTION SPECIAL BG */
.vision-section {
  background: linear-gradient(135deg, #0f2d1a, #1a3a25);
  border-left-color: #cbe771;
}

.vision-section .section-title {
  color: #cbe771;
}

.vision-section .section-text {
  color: #d9f5d9;
}

/* FOUNDER SECTION */
.founder-section {
  border-left-color: #cbe771;
}

.founder-about-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 10px;
  flex-wrap: wrap;
}

.founder-about-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #10AD2F;
  object-fit: cover;
  flex-shrink: 0;
}

.founder-about-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #10AD2F;
  margin-bottom: 4px;
}

.founder-about-role {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

/* FINAL NOTE */
.final-note {
  text-align: center;
  background: linear-gradient(135deg, #0f2d1a, #1a3a25);
  border-left-color: #cbe771;
}

.final-note .section-text {
  color: #d9f5d9;
}

.final-cta {
  font-size: 1.5rem;
  font-weight: 700;
  color: #cbe771;
  margin-top: 16px;
  letter-spacing: 1px;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--text);
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.contact-card:hover {
  border-color: #10AD2F;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 173, 47, 0.2);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-platform {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-handle {
  font-size: 0.82rem;
  color: #94a3b8;
}

.contact-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: #10AD2F;
  font-weight: bold;
  transition: transform 0.2s;
}

.contact-card:hover .contact-arrow {
  transform: translateX(4px);
}

.contact-note {
  text-align: center;
}

/* =========================
   HELP PAGE
========================= */



/* PLATFORM CARDS */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 16px 0;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid #10AD2F44;
  border-radius: 10px;
  padding: 14px 16px;
}

.platform-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.platform-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #10AD2F;
}

.platform-desc {
  font-size: 0.82rem;
  color: #94a3b8;
}

/* FAQ ACCORDION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.faq-item {
  border: 1px solid #10AD2F44;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #10AD2F22;
}

.faq-question[aria-expanded="true"] {
  background: #10AD2F22;
  color: #10AD2F;
}

.faq-chevron {
  font-size: 0.75rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 14px 20px;
  background: var(--card);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  border-top: 1px solid #10AD2F33;
}

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

/* =========================
   SCROLL REVEAL ANIMATION
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in, visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVENESS
========================= */
@media (max-width: 768px) {
  .page-banner-title {
    font-size: 2rem;
  }

  .about-body,
  .contact-body,
  .help-body {
    padding: 30px 16px;
    gap: 30px;
  }

  .about-section,
  .contact-intro,
  .contact-note,
  .help-section {
    padding: 24px 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .founder-about-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 500px) {
  .page-banner-title {
    font-size: 1.6rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
