/* FAQ Page Styles */

.faq-page {
    padding-top: 80px;
    background: #ffffff;
    min-height: 100vh;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 40px;
}

.faq-page-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 12px;
}

.faq-subtitle {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #ff8c00;
}

.faq-arrow {
    font-size: 22px;
    color: #999;
    flex-shrink: 0;
    transition: transform 0.3s, color 0.3s;
    transform: rotate(0deg);
}

/* Active State */
.faq-item.active .faq-question {
    color: #ff8c00;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
    color: #ff8c00;
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 16px;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    padding-left: 0;
    border-left: none;
}

/* CTA Section */
.faq-cta {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #e5e7eb;
}

.faq-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
}

.btn-whatsapp-faq {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-faq:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.btn-whatsapp-faq .whatsapp-icon {
    width: 22px;
    height: 22px;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-page {
        padding-top: 76px;
    }
}

@media (max-width: 768px) {
    .faq-page-title {
        font-size: 26px;
    }

    .faq-cta-title {
        font-size: 20px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    .faq-page-title {
        font-size: 22px;
    }

    .faq-cta-title {
        font-size: 18px;
    }

    .btn-whatsapp-faq {
        padding: 12px 24px;
        font-size: 15px;
    }
}