/* ============================================
   TECHNICAL SEO SERVICES - Page CSS
   Prefix: tseo-
   ============================================ */

/* Trust Band (numeric) */
.tseo-trust-band {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tseo-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tseo-trust-stat .num {
    font-family: var(--gv-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gv-primary);
}

.tseo-trust-stat .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.tseo-faq {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.tseo-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.tseo-faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 209, 2, 0.08);
    border: 1px solid rgba(248, 209, 2, 0.2);
    color: var(--gv-primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.tseo-faq-title {
    font-family: var(--gv-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}

.tseo-faq-title span {
    color: var(--gv-primary);
}

.tseo-faq-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

.tseo-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.tseo-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tseo-faq-item:hover {
    border-color: rgba(248, 209, 2, 0.15);
}

.tseo-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s ease;
}

.tseo-faq-q:hover {
    background: rgba(255, 255, 255, 0.04);
}

.tseo-faq-q h4 {
    font-family: var(--gv-font-heading);
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.tseo-faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(248, 209, 2, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gv-primary);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tseo-faq-item.active .tseo-faq-toggle {
    transform: rotate(45deg);
    background: rgba(248, 209, 2, 0.15);
}

.tseo-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.tseo-faq-item.active .tseo-faq-a {
    max-height: 300px;
}

.tseo-faq-a p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .tseo-trust-band {
        gap: 24px;
    }

    .tseo-trust-stat .num {
        font-size: 1.5rem;
    }

    .tseo-faq {
        padding: 56px 16px;
    }
}

@media (max-width: 480px) {
    .tseo-trust-band {
        gap: 16px;
    }

    .tseo-faq {
        padding: 44px 14px;
    }
}
