/* FAQ Page Styles */

/* Main FAQ Container */
.faqs-main-container {
    width: 100%;
    background: #ffffff;
    padding: 80px 0px 100px 0px;
    min-height: 100vh;
}

/* FAQ Content Wrapper */
.faqs-content-wrapper {
    margin: 0 auto;
    max-width: 1464px;
    padding: 0px 15px;
    width: 100%;
}

/* FAQ Header Section */
.faqs-header {
    text-align: center;
    margin-bottom: 60px;
}

.faqs-title {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    color: #292929;
    margin-bottom: 16px;
}

.faqs-subtitle {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Accent Line */
.faqs-accent-line {
    width: 80px;
    height: 4px;
    background: #ff4c4b;
    margin: 20px auto 40px;
    border-radius: 2px;
}

/* FAQ Categories */
.faqs-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-category-btn {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    background: transparent;
    border: 2px solid #dfe4ea;
    border-radius: 50px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    color: #ffffff;
    background: #ff4c4b;
    border-color: #ff4c4b;
    text-decoration: none;
}

/* FAQ Items Container */
.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border: 1px solid #dfe4ea;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #ff4c4b;
}

/* FAQ Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: #292929;
    transition: all 0.3s ease;
}

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

.faq-question:focus {
    outline: none;
}

/* FAQ Icon */
.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff4c4b;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

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

/* FAQ Answer */
.faq-answer {
    padding: 0px 30px 24px 30px;
    display: none;
    border-top: 1px solid #f0f0f0;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.faq-answer-content {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #666666;
    padding-top: 20px;
}

.faq-answer-content p {
    margin-bottom: 16px;
}

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

.faq-answer-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

/* FAQ Contact Section */
.faqs-contact-section {
    background: #292929;
    padding: 60px 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 80px;
}

.faqs-contact-title {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 16px;
}

.faqs-contact-description {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #fefdfd;
    margin-bottom: 32px;
    opacity: 0.9;
}

.faqs-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    gap: 12px;
    background: #ff4c4b;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

.faqs-contact-button:hover {
    background: #e63946;
    text-decoration: none;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1464px) {
    .faqs-content-wrapper {
        padding: 0px 30px;
    }
}

@media (max-width: 992px) {
    .faqs-main-container {
        padding: 60px 0px 80px 0px;
    }

    .faqs-title {
        font-size: 40px;
    }

    .faqs-subtitle {
        font-size: 16px;
    }

    .faqs-categories {
        gap: 12px;
    }

    .faq-category-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0px 24px 20px 24px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
        margin-left: 16px;
    }

    .faqs-contact-section {
        padding: 40px 24px;
        margin-top: 60px;
    }

    .faqs-contact-title {
        font-size: 28px;
    }

    .faqs-contact-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .faqs-content-wrapper {
        padding: 0px 20px;
    }

    .faqs-title {
        font-size: 32px;
    }

    .faqs-categories {
        flex-direction: column;
        align-items: center;
    }

    .faq-category-btn {
        width: 200px;
        text-align: center;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0px 20px 18px 20px;
    }

    .faq-answer-content {
        font-size: 14px;
    }

    .faqs-contact-section {
        padding: 32px 20px;
    }

    .faqs-contact-title {
        font-size: 24px;
    }

    .faqs-contact-description {
        font-size: 14px;
    }

    .faqs-contact-button {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faqs-main-container {
        padding: 40px 0px 60px 0px;
    }

    .faqs-title {
        font-size: 28px;
    }

    .faqs-header {
        margin-bottom: 40px;
    }

    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .faq-icon {
        margin-left: 0;
        align-self: flex-end;
    }
}

/* Print Styles */
@media print {
    .faqs-contact-section,
    .faqs-categories {
        display: none;
    }

    .faq-answer {
        display: block !important;
    }

    .faq-item {
        break-inside: avoid;
        margin-bottom: 20px;
    }
}
