/* =============================================
   FAQ PAGE STYLES - FULLY RESPONSIVE
   ============================================= */

/* Page Header / Hero Section */
.faq-page-header {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #021936 0%, #0a2a4a 100%);
    overflow: hidden;
    text-align: center;
}

.faq-page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.faq-page-header__title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.faq-page-header__subtitle {
    font-size: 18px;
    color: #cbd5e0;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.faq-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.faq-breadcrumb li {
    color: #0EBD66;
    font-size: 14px;
}

.faq-breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-breadcrumb li a:hover {
    color: #0EBD66;
}

/* FAQ Main Section */
.faq-main {
    padding: 80px 0;
    background: #ffffff;
}

/* Section Titles */
.section-tag {
    color: #0EBD66;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    color: #1a202c;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* FAQ Category */
.faq-category {
    margin-bottom: 50px;
}

.faq-category__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0EBD66;
    display: inline-block;
}

/* FAQ Accordion */
.faq-accordion {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0EBD66;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 20px;
    color: #0EBD66;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Quick Links */
.quick-links {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    margin-top: 50px;
}

.quick-links__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.quick-links__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.quick-link {
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #0EBD66;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.quick-link:hover {
    background: #0EBD66;
    color: #ffffff;
    border-color: #0EBD66;
    transform: translateY(-2px);
}

/* Still Have Questions Section */
.still-questions {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
    margin-top: 50px;
}

.still-questions__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.still-questions__text {
    color: #4a5568;
    font-size: 16px;
    margin-bottom: 30px;
}

.still-questions__btn {
    background: #0EBD66;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.still-questions__btn:hover {
    background: #0a9e55;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1199px) {
    .faq-page-header__title {
        font-size: 44px;
    }
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .faq-page-header {
        padding: 80px 0;
    }
    .faq-page-header__title {
        font-size: 38px;
    }
    .faq-main {
        padding: 60px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .faq-category__title {
        font-size: 24px;
    }
    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .faq-page-header {
        padding: 60px 0;
    }
    .faq-page-header__title {
        font-size: 32px;
    }
    .faq-page-header__subtitle {
        font-size: 16px;
    }
    .section-title {
        font-size: 24px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 15px;
        padding-right: 10px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .faq-answer p {
        font-size: 14px;
    }
    .quick-links {
        padding: 20px;
    }
    .quick-link {
        padding: 8px 18px;
        font-size: 13px;
    }
    .still-questions__title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .faq-page-header__title {
        font-size: 28px;
    }
    .faq-breadcrumb {
        font-size: 12px;
    }
    .faq-category__title {
        font-size: 20px;
    }
    .still-questions__btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}