/* ============================================
   FAQ PAGE SPECIFIC STYLES
   ============================================ */

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #FFF;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
}

/* Two columns: col 1 = FAQ 1–5, col 2 = FAQ 6–10 */
.faq-two-columns {
    display: flex;
    flex-wrap: wrap;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-column .faq-card {
    margin-bottom: 16px;
}

.faq-column .faq-card:last-child {
    margin-bottom: 0;
}

/* FAQ Card */
.faq-card {
    background: #FFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 5px;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

@media (max-width: 767px) {
    .faq-card {
        padding: 16px;
        margin-bottom: 5px;
    }

    .faq-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        cursor: pointer;
        user-select: none;
    }

    .faq-question {
        font-size: 13px;
        line-height: 1.6;
    }
}

.faq-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .faq-card {
        padding: 14px;
        margin-bottom: 5px;
    }
}

/* FAQ Header */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #25374B;
    margin: 0;
    line-height: 1.5;
    flex: 1;
    font-family: "Be Vietnam Pro", sans-serif;
    text-align: left;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* FAQ Toggle Button */
.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E1F8FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background: #038DB5;
}

.faq-toggle i {
    color: #25374B;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-toggle:hover i {
    color: #FFF;
}

/* Active/Open State */
.faq-header[aria-expanded="true"] .faq-toggle {
    background: #038DB5;
}

.faq-header[aria-expanded="true"] .faq-toggle i {
    color: #FFF;
    transform: rotate(45deg);
}

/* FAQ Content */
.faq-content {
    padding-top: 20px;
    padding-left: 0;
    margin-top: 0;
}

.faq-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-content li {
    font-size: 16px;
    color: #25374B;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-family: "Be Vietnam Pro", sans-serif;
}

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

.faq-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: url('../images/diagonal-line.svg') no-repeat center;
    background-size: contain;
}

@media (min-width: 768px) {
    .faq-content {
        padding-top: 24px;
    }
    
    .faq-content li {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 14px;
        padding-left: 28px;
    }
    
    .faq-content li::before {
        width: 16px;
        height: 16px;
        top: 7px;
    }
}

/* Collapse Animation */
.collapse {
    transition: height 0.35s ease;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

/* Bottom CTA Section (Executive Style) */
.executive-bottom-cta-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

@media (min-width: 768px) {
    .executive-bottom-cta-section {
        padding: 60px 0;
    }
}

.executive-bottom-cta-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.executive-bottom-cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-bottom-cta-overlay {
    position: absolute;
    inset: 0;
}

.executive-bottom-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFF;
}

.executive-bottom-cta-title {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .executive-bottom-cta-title {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

.executive-bottom-cta-subtitle {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .executive-bottom-cta-subtitle {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.executive-bottom-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.executive-bottom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background-color: transparent;
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #FFF;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.executive-bottom-cta-btn:hover {
    background-color: #FFF;
    color: #038DB5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.executive-bottom-cta-btn .cta-icon {
    width: 20px;
    height: 20px;
}
