/* ============================================
   FAQ — THEME 1: TECH NEON (LIGHT)
   ============================================ */

:root {
  /* ===============================
     FAQ COLORS (TECH NEON)
  =============================== */
  --ebfq20-section-background-color: #f8fafc;
  --ebfq20-orb-1-color: rgba(0, 180, 216, 0.4);
  --ebfq20-orb-2-color: rgba(0, 180, 216, 0.2);

  --ebfq20-badge-background-color: rgba(0, 180, 216, 0.08);
  --ebfq20-badge-border-color: rgba(0, 180, 216, 0.2);
  --ebfq20-badge-text-color: #00b4d8;
  
  --ebfq20-title-text-color: #0f172a;
  --ebfq20-title-highlight-text-color: #00b4d8;
  --ebfq20-subtitle-text-color: #64748b;

  --ebfq20-item-background-color: #ffffff;
  --ebfq20-item-border-color: rgba(0, 180, 216, 0.15);
  --ebfq20-item-accent-line-color: #00b4d8;
  --ebfq20-item-hover-border-color: rgba(0, 180, 216, 0.4);
  --ebfq20-item-hover-shadow: 0 10px 25px rgba(0, 180, 216, 0.05);
  --ebfq20-item-active-border-color: rgba(0, 180, 216, 0.4);
  --ebfq20-item-active-shadow: 0 12px 30px rgba(0, 180, 216, 0.08);

  --ebfq20-item-question-text-color: #0f172a;
  --ebfq20-item-question-hover-text-color: #00b4d8;
  --ebfq20-item-answer-text-color: #64748b;
  --ebfq20-item-answer-divider-color: rgba(0, 180, 216, 0.1);

  --ebfq20-toggle-background-color: rgba(0, 180, 216, 0.05);
  --ebfq20-toggle-border-color: rgba(0, 180, 216, 0.15);
  --ebfq20-toggle-icon-color: #00b4d8;
  --ebfq20-toggle-active-background-color: #00b4d8;
  --ebfq20-toggle-active-border-color: #00b4d8;
  --ebfq20-toggle-active-icon-color: #ffffff;

  /* ===============================
     FAQ LAYOUT & TIMINGS
  =============================== */
  --ebfq20-radius: 12px;
  --ebfq20-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.ebfq20-section {
  position: relative;
  background-color: var(--ebfq20-section-background-color);
  overflow: hidden;
}

/* Background effects */
.ebfq20-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ebfq20-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.ebfq20-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--ebfq20-orb-1-color), transparent 70%);
  top: -10%;
  right: -5%;
}

.ebfq20-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--ebfq20-orb-2-color), transparent 70%);
  bottom: -10%;
  left: -5%;
}

.ebfq20-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 0 2rem;
  margin: 0 auto;
}

/* Header */
.ebfq20-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ebfq20-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ebfq20-badge-background-color);
  border: 1px solid var(--ebfq20-badge-border-color);
  color: var(--ebfq20-badge-text-color);
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.ebfq20-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ebfq20-title-text-color);
  line-height: 1.2;
}

.ebfq20-title-highlight {
  color: var(--ebfq20-title-highlight-text-color);
}

.ebfq20-subtitle {
  font-size: 1.05rem;
  color: var(--ebfq20-subtitle-text-color);
  line-height: 1.7;
}

/* List wrapper */
.ebfq20-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Item - Floating Glass Card */
.ebfq20-item {
  background: var(--ebfq20-item-background-color);
  border: 1px solid var(--ebfq20-item-border-color);
  border-radius: var(--ebfq20-radius);
  padding: 1.5rem 2rem;
  transition: all 0.4s var(--ebfq20-ease);
  position: relative;
  overflow: hidden;
}

.ebfq20-item::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 4px;
  background: var(--ebfq20-item-accent-line-color);
  transform: scaleY(0);
  transition: transform 0.3s var(--ebfq20-ease);
}

.ebfq20-item:hover {
  border-color: var(--ebfq20-item-hover-border-color);
  box-shadow: var(--ebfq20-item-hover-shadow);
}

.ebfq20-item.ebfq20-active {
  border-color: var(--ebfq20-item-active-border-color);
  box-shadow: var(--ebfq20-item-active-shadow);
}

.ebfq20-item.ebfq20-active::before {
  transform: scaleY(1);
}

/* Question Row */
.ebfq20-question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1.5rem;
}

.ebfq20-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ebfq20-item-question-text-color);
  line-height: 1.4;
  transition: color 0.3s var(--ebfq20-ease);
}

.ebfq20-item:hover .ebfq20-question {
  color: var(--ebfq20-item-question-hover-text-color);
}

/* Toggle icon buttons */
.ebfq20-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--ebfq20-toggle-background-color);
  border: 1px solid var(--ebfq20-toggle-border-color);
  color: var(--ebfq20-toggle-icon-color);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s var(--ebfq20-ease);
  flex-shrink: 0;
}

.ebfq20-toggle .fa-xmark {
  display: none;
}

.ebfq20-item.ebfq20-active .ebfq20-toggle {
  background: var(--ebfq20-toggle-active-background-color);
  color: var(--ebfq20-toggle-active-icon-color);
  border-color: var(--ebfq20-toggle-active-border-color);
  transform: rotate(90deg);
}

.ebfq20-item.ebfq20-active .ebfq20-toggle .fa-chevron-down {
  display: none;
}

.ebfq20-item.ebfq20-active .ebfq20-toggle .fa-xmark {
  display: inline-block;
}

/* Answer block height slide animation */
.ebfq20-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ebfq20-ease);
}

.ebfq20-item.ebfq20-active .ebfq20-answer-wrapper {
  max-height: 250px;
}

.ebfq20-answer {
  font-size: 0.95rem;
  color: var(--ebfq20-item-answer-text-color);
  line-height: 1.7;
  padding-top: 1rem;
  border-top: 1px dashed var(--ebfq20-item-answer-divider-color);
  margin-top: 1rem;
}
