/* =========================================
   FAQ PAGE — PREMIUM ELITE CSS
   Diplomat University Design System
   ========================================= */

/* 1. HERO */
.faq-hero {
    background: url('https://images.unsplash.com/photo-1568992687947-868a62a9f521?q=80&w=2070') no-repeat center center / cover !important;
}

.highlight-text-premium.faq-anim::before {
    content: 'SAVOLLAR' !important;
}

/* 2. SEARCH BAR */
.faq-search-wrapper {
    max-width: 680px;
    margin: 0 auto 60px;
    position: relative;
}

.faq-search-input {
    width: 100%;
    padding: 20px 60px 20px 30px;
    border-radius: 50px;
    border: 2px solid rgba(7, 0, 107, 0.1);
    font-size: 1.05rem;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    background: #fff;
    box-shadow: 0 15px 40px rgba(7, 0, 107, 0.08);
    outline: none;
    transition: 0.3s;
}

.faq-search-input:focus {
    border-color: #FFC107;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
}

.faq-search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #07006b;
    font-size: 1.2rem;
    pointer-events: none;
}

/* 3. CATEGORY TABS */
.faq-tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}

.faq-tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid rgba(7, 0, 107, 0.15);
    background: #fff;
    color: #555;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-tab-btn:hover,
.faq-tab-btn.active {
    background: #07006b;
    color: #FFC107;
    border-color: #07006b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 0, 107, 0.2);
}

.faq-tab-btn i { font-size: 0.9rem; }

/* 4. ACCORDION PREMIUM */
.faq-accordion-group {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-group-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #07006b;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(7, 0, 107, 0.1);
}

.faq-group-title i { color: #FFC107; font-size: 1.3rem; }

.faq-item {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 16px;
    border: 1px solid rgba(7, 0, 107, 0.07);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 35px rgba(7, 0, 107, 0.1);
    transform: translateY(-2px);
}

.faq-item.faq-hidden { display: none; }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
}

.faq-q-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #07006b, #1a237e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFC107;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.faq-item.open .faq-q-icon {
    background: #FFC107;
    color: #07006b;
}

.faq-q-text {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
    line-height: 1.4;
    flex: 1;
}

.faq-chevron {
    color: #aaa;
    font-size: 0.9rem;
    transition: transform 0.35s ease, color 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: #07006b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 28px 24px 92px;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    border-top: 1px solid rgba(7, 0, 107, 0.06);
    padding-top: 18px;
}

.faq-answer-inner strong { color: #07006b; }

.faq-answer-inner ul {
    padding-left: 20px;
    margin-top: 10px;
}

.faq-answer-inner ul li {
    margin-bottom: 8px;
    position: relative;
}

.faq-answer-inner ul li::marker { color: #FFC107; }

.faq-answer-inner .answer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef2ff;
    color: #07006b;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 14px;
    border-radius: 50px;
    margin-top: 10px;
}

/* 5. STATS BANNER */
.faq-stats-banner {
    background: linear-gradient(135deg, #07006b 0%, #1a237e 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(7, 0, 107, 0.2);
}

.faq-stats-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(255, 193, 7, 0.08);
    border-radius: 50%;
}

.faq-stats-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.faq-stat-item { position: relative; z-index: 2; }

.faq-stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #FFC107;
    line-height: 1;
}

.faq-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
    font-weight: 500;
}

.faq-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

/* 6. STILL QUESTION CTA */
.faq-cta-card {
    background: #fff;
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(7, 0, 107, 0.06);
    box-shadow: 0 20px 60px rgba(7, 0, 107, 0.07);
    margin-bottom: 60px;
}

.faq-cta-icon-wrap {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, #07006b, #2962ff);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #FFC107;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(7, 0, 107, 0.25);
}

.faq-cta-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem; font-weight: 800;
    color: #07006b; margin-bottom: 15px;
}

.faq-cta-desc {
    color: #666; font-size: 1.05rem; max-width: 500px;
    margin: 0 auto 35px; line-height: 1.7;
}

.faq-cta-btns {
    display: flex; gap: 16px;
    justify-content: center; flex-wrap: wrap;
}

.btn-faq-primary {
    background: #07006b; color: #FFC107;
    padding: 14px 35px; border-radius: 12px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(7, 0, 107, 0.2);
}

.btn-faq-primary:hover {
    background: #FFC107; color: #07006b;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.3);
}

.btn-faq-outline {
    border: 2px solid rgba(7, 0, 107, 0.2);
    color: #07006b; background: transparent;
    padding: 14px 35px; border-radius: 12px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: 0.3s;
}

.btn-faq-outline:hover {
    background: #07006b; color: #FFC107;
    border-color: #07006b;
    transform: translateY(-3px);
}

/* 7. NO RESULTS */
.faq-no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.faq-no-results i {
    font-size: 3rem; color: #ddd; margin-bottom: 20px; display: block;
}

.faq-no-results p { color: #999; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 768px) {
    .faq-answer-inner { padding-left: 28px; }
    .faq-stats-banner { padding: 40px 20px; }
    .faq-stat-num { font-size: 2rem; }
    .faq-stat-divider { display: none; }
    .faq-cta-card { padding: 40px 20px; }
    .faq-cta-title { font-size: 1.4rem; }
}
