/* Contact Page Styles */

/* Page Header - Profile/Dashboard Style */
.contact-page-header {
    background: #fffde7 !important;
    padding: 40px 0 !important;
    text-align: center !important;
    border-bottom: 1px solid #fff9c4;
    position: relative;
    overflow: hidden;
}

.contact-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.contact-page-header h1 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: #333 !important;
}

.contact-page-header h1 i {
    color: #28a745;
}

.contact-page-header p {
    font-size: 1rem !important;
    color: #666 !important;
    margin: 0;
}

/* Contact Section */
.contact-main-section {
    padding: 80px 0;
    background: #fff;
}

.contact-main-section .contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info-box {
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-info-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: #28a745;
    text-decoration: none;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.contact-form-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.contact-form-box .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-social-link:hover {
    background: #28a745;
    color: white;
    transform: translateY(-3px);
}

/* FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-faq-section .accordion-button {
    font-weight: 600;
    color: #333;
}

.contact-faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    color: #28a745;
}

.contact-faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(40, 167, 69, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page-hero h1 {
        font-size: 2rem !important;
    }

    .contact-info-box {
        margin-bottom: 30px;
    }
}