/* ────────────────────────────────────────────────────────────────────────────
   Unified FAQ Split Layout
   Extracted from contact.css to be shared across Contact and Services pages.
   ────────────────────────────────────────────────────────────────────────── */

.ct-faq-section {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.015);
  padding: 4rem 2rem;
}

.ct-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: start;
}

.ct-faq-left {
  position: sticky;
  top: 88px;
}

.ct-faq-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(197, 197, 214, 0.5);
  margin-bottom: 0.75rem;
}

.ct-faq-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ct-faq-title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(90deg, #C24E2C 0%, #9D3377 50%, #4A89C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-faq-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(197,197,214,0.5);
  line-height: 1.75;
}

.ct-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ct-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ct-faq-item:first-child { 
    border-top: 1px solid rgba(255,255,255,0.06); 
}

.ct-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(229,225,229,0.88);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.ct-faq-q:hover { 
    color: #fff; 
}

.ct-faq-q svg {
  flex-shrink: 0;
  color: rgba(194, 78, 44, 0.6);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), color 0.2s;
}

.ct-faq-item.open .ct-faq-q svg { 
    transform: rotate(45deg); 
    color: #4A89C7; 
}

.ct-faq-a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(197,197,214,0.5);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.28s cubic-bezier(0.22,1,0.36,1),
              opacity    0.22s ease,
              transform  0.26s cubic-bezier(0.22,1,0.36,1);
  padding-bottom: 0;
}

.ct-faq-item.open .ct-faq-a {
  max-height: 500px; /* Increased for longer answers */
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .ct-faq-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ct-faq-left {
    position: static;
  }
}
