/* ====== ASK A QUESTION SECTION ====== */
.ask-question {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.ask-question .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Question Form */
.question-form-container {
    max-width: 600px;
    margin: 0 auto 4rem auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.question-form .form-group {
    margin-bottom: 1.5rem;
}

.question-form label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.question-form input,
.question-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.question-form input:focus,
.question-form textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.question-form textarea {
    resize: vertical;
    min-height: 120px;
}

.question-form button {
    width: 100%;
    margin-top: 1rem;
}

.question-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.question-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.question-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    flex: 1;
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: #dc2626;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 4.5rem;
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ask-question {
        padding: 3rem 0;
    }
    
    .question-form-container {
        margin: 0 1rem 3rem 1rem;
        padding: 2rem;
    }
    
    .faq-section {
        margin: 0 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem 3rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .question-form-container {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .faq-answer p {
        padding: 0 0.875rem 0.875rem 2.5rem;
    }
}