/* FAQ Page Specific Styles */

/* Main Section Styling */
.wpo-faq-section {
    padding: 100px 0;
    background: #f9f9f9;
}

/* FAQ Title Styling */
.wpo-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.wpo-section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b00;
}

.wpo-section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Accordion Styling */
.accordion {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    padding: 20px 25px;
    background: #fff;
    border: none;
    text-align: left;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #ff6b00;
    background-color: #fff9f5;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed):after {
    transform: translateY(-50%) rotate(180deg);
    color: #ff6b00;
}

.accordion-body {
    padding: 20px 25px;
    background: #fff9f5;
    border-top: 1px solid #ffebdd;
    color: #4a4a4a;
    line-height: 1.7;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

/* Contact Form Styling */
.question-area {
    padding: 80px 0;
    background: #fff;
}

.question-touch {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.question-touch h2 {
    margin-bottom: 30px;
    color: #1a1a1a;
    font-size: 1.8rem;
    text-align: center;
}

.form-control {
    height: 55px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.form-control:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.1);
}

.half-col {
    width: 48%;
    float: left;
    margin-right: 4%;
}

.half-col:last-child {
    margin-right: 0;
}

/* Submit Button */
.theme-btn {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.theme-btn:hover {
    background: #e05d00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.submit-btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* Benefits List Styling */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    position: relative;
    padding: 8px 0 8px 35px;
    line-height: 1.6;
    color: #4a4a4a;
    font-size: 1rem;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: #ff6b00;
    font-size: 1.1rem;
}

/* Success Message */
.alert-success {
    padding: 15px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .wpo-faq-section, .question-area {
        padding: 60px 0;
    }
    
    .wpo-section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .half-col {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    
    .question-touch {
        padding: 25px 20px;
    }
    
    .accordion-button {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 15px 20px;
    }
}

/* Animation for accordion items */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.accordion-item {
    animation: fadeIn 0.3s ease-out forwards;
    opacity: 0;
}

.accordion-item:nth-child(1) { animation-delay: 0.1s; }
.accordion-item:nth-child(2) { animation-delay: 0.2s; }
.accordion-item:nth-child(3) { animation-delay: 0.3s; }
.accordion-item:nth-child(4) { animation-delay: 0.4s; }
