/**
 * FAQ Page - Modern Styles
 * User-friendly accordion and card-based FAQ layout
 */

/* FAQ Area */
.faq-area {
    background: #f8f9fa;
    padding: 80px 0;
}

/* FAQ Section Title */
.faq-area .section-title h2 {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-area .section-title p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

/* FAQ Items */
.faq-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #0066cc;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* FAQ Item Heading */
.faq-item h3 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item h3::before {
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

/* FAQ Item Content */
.faq-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.faq-item p:last-of-type {
    margin-bottom: 0;
}

.faq-item strong {
    color: #333;
    font-weight: 600;
}

/* FAQ Lists */
.faq-item .list-style-one {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.faq-item .list-style-one li {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

.faq-item .list-style-one li:last-child {
    margin-bottom: 0;
}

.faq-item .list-style-one li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 16px;
}

/* Banner Area */
.banner-area.bg-color {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 60px 0;
}

.banner-area .banner-text h1 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.banner-area .banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 80px 0;
}

.contact-section h2 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-section p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.button-group .default-btn,
.button-group .default-btn.two {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.button-group .default-btn {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
}

.button-group .default-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.button-group .default-btn.two {
    background: white;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.button-group .default-btn.two:hover {
    background: #f5f7ff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-area {
        padding: 60px 0;
    }

    .faq-area .section-title h2 {
        font-size: 36px;
    }

    .faq-item {
        padding: 25px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .banner-area .banner-text h1 {
        font-size: 40px;
    }

    .contact-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .faq-area {
        padding: 40px 0;
    }

    .faq-area .section-title h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .faq-area .section-title p {
        font-size: 15px;
    }

    .faq-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .faq-item h3 {
        font-size: 16px;
        gap: 10px;
    }

    .faq-item h3::before {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .faq-item p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .faq-item .list-style-one li {
        font-size: 14px;
        padding-left: 26px;
        margin-bottom: 8px;
    }

    .banner-area {
        padding: 40px 0;
    }

    .banner-area .banner-text h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .banner-area .banner-text p {
        font-size: 16px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .contact-section p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .button-group {
        gap: 15px;
    }

    .button-group .default-btn,
    .button-group .default-btn.two {
        padding: 12px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-area {
        padding: 30px 0;
    }

    .faq-area .section-title h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .faq-area .section-title p {
        font-size: 14px;
    }

    .faq-item {
        padding: 18px;
        margin-bottom: 18px;
        border-left-width: 3px;
    }

    .faq-item h3 {
        font-size: 15px;
        gap: 8px;
    }

    .faq-item h3::before {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .faq-item p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .faq-item .list-style-one li {
        font-size: 13px;
        padding-left: 24px;
        margin-bottom: 7px;
    }

    .faq-item .list-style-one li::before {
        font-size: 14px;
    }

    .banner-area {
        padding: 30px 0;
    }

    .banner-area .banner-text h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .banner-area .banner-text p {
        font-size: 14px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-section h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .contact-section p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .button-group {
        flex-direction: column;
        gap: 12px;
    }

    .button-group .default-btn,
    .button-group .default-btn.two {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
        justify-content: center;
    }
}

/* Light Background */
.bg-light {
    background: #f8f9fa;
}

/* Utility Classes */
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mt-30 {
    margin-top: 30px;
}

.text-center {
    text-align: center;
}

.offset-lg-2 {
    margin-left: 16.666667%;
}

@media (max-width: 991px) {
    .offset-lg-2 {
        margin-left: 0;
    }
}
