/* ─── FAQ PAGE — Page-Specific Styles ─── */

.faq-section { padding: 5rem 2rem; }
.faq-inner { max-width: 1080px; margin: 0 auto; }

.faq-tabnav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--border); }
.faq-tab { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1rem; border-radius: 100px; font-size: 0.88rem; font-weight: 500; color: var(--text-muted); background: var(--white); border: 1.5px solid var(--border); cursor: pointer; font-family: 'Source Sans 3', sans-serif; transition: all 0.15s; white-space: nowrap; }
.faq-tab:hover { border-color: var(--navy); color: var(--navy); background: var(--off-white); }
.faq-tab.active { background: var(--navy); border-color: var(--navy); color: white; font-weight: 600; }
.faq-tab-icon { font-size: 0.85rem; }

.faq-content { display: flex; flex-direction: column; gap: 3.5rem; }
.faq-category-header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border); }
.faq-category-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.faq-category-title { font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 0; cursor: pointer; background: none; border: none; text-align: left; width: 100%; font-family: 'Source Sans 3', sans-serif; transition: color 0.2s; }
.faq-question:hover .faq-q-text { color: var(--red); }
.faq-q-text { font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.4; transition: color 0.2s; }
.faq-item.open .faq-q-text { color: var(--red); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: var(--off-white); display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.3s; }
.faq-item.open .faq-toggle { background: var(--red-light); transform: rotate(45deg); }
.faq-toggle svg { width: 14px; height: 14px; color: var(--navy); transition: color 0.2s; }
.faq-item.open .faq-toggle svg { color: var(--red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0; }
.faq-item.open .faq-answer { max-height: 800px; padding-bottom: 1.25rem; }
.faq-answer-inner { padding-right: 3rem; }
.faq-answer-inner p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 0.75rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner strong { color: var(--navy); }
.faq-answer-inner a { color: var(--red); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(192,39,45,0.3); transition: border-color 0.2s; }
.faq-answer-inner a:hover { border-color: var(--red); }
.faq-answer-highlight { background: var(--off-white); border-left: 3px solid var(--red); border-radius: 0 8px 8px 0; padding: 0.85rem 1rem; margin-top: 0.75rem; font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }
.faq-answer-highlight strong { color: var(--navy); }

.still-questions { background: var(--navy); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.still-questions::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(192,39,45,0.1) 0%, transparent 65%); }
.still-questions-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.still-questions h2 { font-family: 'Lora', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: white; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1rem; }
.still-questions p { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 2rem; }
.still-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.still-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: white; padding: 0.9rem 1.75rem; border-radius: 8px; font-size: 0.97rem; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; box-shadow: 0 4px 16px rgba(192,39,45,0.35); }
.still-btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.still-btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); color: white; padding: 0.9rem 1.75rem; border-radius: 8px; font-size: 0.97rem; font-weight: 600; text-decoration: none; border: 1px solid rgba(255,255,255,0.15); transition: background 0.2s; }
.still-btn-secondary:hover { background: rgba(255,255,255,0.14); }

@media (max-width: 768px) { .faq-answer-inner { padding-right: 0; } }
