/* FAQ Section Enhanced Styles */

.faq-section-modern {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

/* Accordion Item Card */
.faq-item-modern {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item-modern:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

/* Accordion Header (Button) */
.faq-header-modern button {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    transition: all 0.3s ease;
}

.faq-header-modern button:not(.collapsed) {
    color: #3b82f6;
    background: #f8fafc;
}

/* Icon */
.faq-icon {
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-header-modern button:not(.collapsed) .faq-icon {
    background: #3b82f6;
    color: #ffffff;
    transform: rotate(180deg);
}

/* Accordion Body */
.faq-body-modern {
    padding: 0 24px 24px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    background: #f8fafc; /* Matches active header bg for seamless look */
    border-top: 1px solid transparent; /* Placeholder */
}

.faq-header-modern button:not(.collapsed) + .faq-collapse .faq-body-modern {
    /* border-top-color: #f1f5f9; Optional separator */ 
}

/* Support Box (Right Side or Bottom) */
.faq-support-box {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-support-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.1);
    margin-bottom: 20px;
}

.faq-support-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.faq-support-box p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 20px;
}

.faq-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.faq-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.faq-link:hover i {
    transform: translateX(5px);
}
