/* ============================================================
   pages.css — Testimonials, FAQs, Gallery, News Styles
   ============================================================ */

/* ── TESTIMONIALS ── */
.testimonial-quote {
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-body {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    border: none;
    padding: 0;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ── STATS SUMMARY BAR ── */
.stats-bar-value {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-bar-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ── FAQS ── */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.faq-button {
    background: transparent !important;
    color: #fff !important;
    font-family: 'Syne', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    box-shadow: none !important;
    padding: 1.2rem 1.5rem !important;
}

.faq-button:not(.collapsed) {
    color: var(--accent) !important;
}

.faq-body {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.8;
    padding: 0 1.5rem 1.5rem;
}

.faq-cta {
    padding: 2.5rem;
    margin-top: 2rem;
}

/* ── GALLERY ── */
.filter-btn {
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.05);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
}

.gallery-category {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--accent);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 600;
}

.gallery-year {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
}

.gallery-tags {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── NEWS ── */
.news-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.2rem;
}

.news-thumbnail-placeholder {
    height: 160px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(123, 47, 255, 0.08));
    border-radius: 10px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(0, 212, 255, 0.3);
}

.news-category {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.news-date {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.news-read-more {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-read-more:hover {
    color: var(--accent);
    gap: 8px;
}

/* ============================================================
   MOBILE RESPONSIVE — pages.css
   ============================================================ */

@media (max-width: 767px) {

    /* Testimonials */
    .testimonial-quote {
        font-size: 1.5rem;
    }

    .testimonial-body {
        font-size: 0.88rem;
    }

    .stats-bar-value {
        font-size: 1.8rem;
    }

    /* FAQs */
    .faq-button {
        font-size: 0.88rem !important;
        padding: 1rem 1.2rem !important;
    }

    .faq-body {
        font-size: 0.88rem;
        padding: 0 1.2rem 1.2rem;
    }

    .faq-cta {
        padding: 1.5rem;
    }

    /* Gallery */
    .filter-btn {
        font-size: 0.78rem;
        padding: 0.4rem 0.9rem;
    }

    /* News */
    .news-thumbnail {
        height: 160px;
    }

    .news-thumbnail-placeholder {
        height: 130px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    .stats-bar-value {
        font-size: 1.5rem;
    }

    .testimonial-name {
        font-size: 0.85rem;
    }
}
