/* FAQ Page Styles */

/* Page Title */
.page-title {
    background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-title-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 1rem;
}

.page-title-content .subtitle {
    font-size: 1.1rem;
    color: white;
    opacity: 0.95;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #FAFAFA;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Category */
.faq-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #2C3E50;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #FF9E00;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #FF9E00;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Question */
.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #FFF8F0;
}

.question-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E50;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF9E00;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF8F0;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer table {
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    padding-left: 3rem;
    padding-right: 2rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0.75rem;
}

.faq-answer strong {
    color: #2C3E50;
    font-weight: 700;
}

/* Cost Table */
.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 2rem;
    max-width: calc(100% - 4rem);
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cost-table thead {
    background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
}

.cost-table th {
    color: white;
    font-weight: 700;
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
}

.cost-table td {
    padding: 1rem;
    border-bottom: 1px solid #E0E0E0;
    color: #333;
    font-size: 0.95rem;
}

.cost-table tbody tr:last-child td {
    border-bottom: none;
    font-weight: 700;
    background: #FFF8F0;
}

.cost-table tbody tr:hover {
    background: #FAFAFA;
}

/* FAQ CTA */
.faq-cta {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF4E6 100%);
    border-radius: 1.5rem;
    text-align: center;
    border: 2px solid #FF9E00;
}

.faq-cta h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 3rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: #FF9E00;
    border: 2px solid #FF9E00;
}

.btn-secondary:hover {
    background: #FF9E00;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title-content h1 {
        font-size: 2rem;
    }

    .page-title-content .subtitle {
        font-size: 1rem;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .question-text {
        font-size: 1rem;
    }

    .faq-answer p,
    .faq-answer ul,
    .faq-answer li {
        font-size: 0.95rem;
    }

    .faq-answer p,
    .faq-answer ul {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .faq-answer ul {
        padding-left: 2.5rem;
    }

    .cost-table {
        font-size: 0.85rem;
        margin: 1.5rem 1.5rem;
        max-width: calc(100% - 3rem);
    }

    .cost-table th,
    .cost-table td {
        padding: 0.75rem 0.5rem;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
    }

    .faq-cta h2 {
        font-size: 1.5rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }
}
