/* =============================================
   MENTACY — Help Center Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --bg:           #0d0f12;
  --bg-card:      rgba(255,255,255,0.04);
  --bg-card-hover:rgba(255,255,255,0.07);
  --teal:         #4ed5d2;
  --teal-dim:     rgba(78,213,210,0.15);
  --text-primary: #e2e2e2;
  --text-muted:   #888;
  --text-body:    #b0b0b0;
  --border:       rgba(255,255,255,0.08);
  --border-card:  rgba(255,255,255,0.1);
  font-size: 14px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 85% 5%,  rgba(40,40,60,0.6),  transparent 35%),
    radial-gradient(circle at 15% 60%, rgba(30,30,50,0.5),  transparent 40%);
  color: var(--text-primary);
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}

/* =============================================
   NAVBAR
   ============================================= */



/* =============================================
   PAGE WRAPPER
   ============================================= */

.page-wrapper {
  width: 98%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 2.6rem 2rem 5rem;
}


.hero-header{
  position: relative;
  max-width: 640px;
  margin-left: 60px; /* pushes title area right */
}

/* arrow */
.back-btn{
  position: absolute;
  left: -50px;   /* moves arrow left of title */
  top: 4px;
  display:flex;
  align-items:center;
}

.back-btn img{
  width:22px;
  height:22px;
}
.hero-divider{
  width: calc(100% - 60px);   /* extends further across */
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 22px 0 26px 60px;   /* keeps alignment with title */
}
/* hero text block */
.hero-block{
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* title */
.hero-title{
  font-family:"Lato",sans-serif;
  font-size:2.1rem;
  font-weight:700;
  line-height:1.25;
  margin:0;
  margin-top: 40px;
}

/* subtitle */
.hero-sub{
  font-size:.8rem;
  color:var(--text-muted);
  line-height:1.6;
  max-width:560px;
}
.content-align{
  margin-left:60px;
}
/* =============================================
   SEARCH
   ============================================= */

.search-wrap {
  margin-bottom: 3rem;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  max-width: 520px;

  background: linear-gradient(
    180deg,
    rgba(20,28,40,0.95) 0%,
    rgba(12,18,28,0.95) 100%
  );

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;

  padding: 0.75rem 1.5rem;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 4px 14px rgba(0,0,0,0.45);

  transition: border-color 0.25s, background 0.25s;
}

.search-box:focus-within {
  border-color: rgba(78,213,210,0.45);
  background: rgba(255,255,255,0.07);
}

.search-icon { flex-shrink: 0; }

.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.85);
  font-family: "Poppins", sans-serif;
}

.search-input::placeholder {
  color: rgba(255,255,255,0.35);
}

/* =============================================
   SECTION HEADERS
   ============================================= */

.section {
  margin-bottom: 3.2rem;
}

.section-title {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.section-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

/* =============================================
   HELP CARDS GRID
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* CARD */
.help-card {
  background: linear-gradient(
    135deg,
    rgba(12,20,40,0.95) 0%,
    rgba(8,14,28,0.95) 100%
  );

  border: 2px solid rgba(91, 95, 100, 0.338);
  border-radius: 14px;

  padding: 1.6rem 1.7rem 1.4rem;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;

  transition: all 0.25s ease;
  cursor: pointer;
}

/* HOVER */
.help-card:hover {
  border-color: rgba(110,150,255,0.35);
  background: linear-gradient(
    135deg,
    rgba(14,26,50,0.98) 0%,
    rgba(10,18,36,0.98) 100%
  );
  transform: translateY(-2px);
}

/* TOP */
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TITLE */
.card-title {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #e6edf7;
}

/* BADGE */
.card-badge {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);

  background: rgba(83, 105, 176, 0.25);
  border: 1px solid rgba(109, 115, 129, 0.57);

  border-radius: 15px;
  padding: 0.5rem 1rem;
}

/* DESCRIPTION */
.card-desc {
  font-size: 0.84rem;
  color: rgba(200,210,225,0.75);
  line-height: 1.7;
}

/* FOOTER */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
}

/* TAG */
.card-tag {
  font-size: 0.9rem;
  color: rgba(180,190,205,0.55);
}

/* LINK */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 0.8rem;
  font-weight: 500;

  color: #2cd0ac;
  text-decoration: none;

  transition: gap 0.2s ease;
}

.card-link:hover {
  gap: 10px;
}

/* =============================================
   FAQ GRID
   ============================================= */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 90px; /* spacing between columns */
}

.faq-col {
  display: flex;
  flex-direction: column;
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 0;

  /* force remove card styles */
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;

  /* only divider line */
  border-bottom: 1px solid rgba(255, 255, 255, 0.201) !important;

  text-decoration: none;
  font-size: 15px;
  color: rgba(255,255,255,0.75);

  transition: color .25s ease;
}

.faq-item:first-child {
  border-top: 2px solid rgba(255, 255, 255, 0.896);
}

/* top divider line */
.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.905);
}

.faq-item:hover {
  color: #ffffff;
}

/* arrow */
.faq-item svg {
  width: 18px;
  height: 18px;
  color: #ffffff;      /* bright white */
  opacity: 0.8;        /* more visible */
  transition: transform .25s ease, opacity .25s ease;
}

.faq-item:hover svg {
  opacity: .8;
  transform: translateX(4px);
}
/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
  margin-top: 3.5rem;
  border-radius: 18px;

  /* closer to the screenshot gradient */
  background: linear-gradient(
    120deg,
    #0f292fcf 0%,
    #143f46 45%,
    #3e8f88 100%
  );

  /* softer cyan border like the image */
  border: 1px solid rgba(80, 197, 193, 0.474);

  padding: 2.4rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  position: relative;

  margin-bottom: 80px;
}

/* Subtle glow */
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(78,213,210,0.1), transparent 55%);
  pointer-events: none;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: "Lato", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.cta-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

/* Primary CTA — teal/green filled */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  transition: all 0.25s;
  font-family: "Poppins", sans-serif;
}

.cta-btn--primary {
  background: rgb(85, 236, 193);
  border: 1.5px solid rgba(78, 213, 181, 0.773);
  color: black;
}

.cta-btn--primary:hover {
  background: rgb(78, 213, 168);
  box-shadow: 0 0 18px rgba(78, 213, 172, 0.25);
}

.cta-btn--outline {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}

.cta-btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}

/* Illustration */
.cta-right{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-illustration{
  height: 220px;      /* controls image size */
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-link-active {
  color: rgba(255,255,255,0.92) !important;
}