/* Contact Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    color: white;
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.header-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

/* Contact Info Cards */
.contact-info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.contact-info-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.contact-info-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.8;
}

/* Contact Form */
.contact-form-section {
    position: relative;
    margin-top: -3rem;
    padding-top: 5rem;
}

.contact-form-wrapper {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--gray-100);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: none;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.attachment-area {
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius);
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.attachment-area:hover {
    border-color: var(--primary);
    background-color: rgba(59, 130, 246, 0.05);
}

.file-input {
    display: none;
}

.file-label {
    display: block;
    cursor: pointer;
    margin-bottom: 0;
}

.file-label i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.file-label span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.file-label small {
    color: var(--gray-500);
}

.file-list {
    max-height: 150px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
}

.file-info {
    display: flex;
    align-items: center;
}

.file-icon {
    margin-right: 0.75rem;
    color: var(--primary);
}

.file-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.file-size {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.file-remove {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.file-remove:hover {
    color: var(--danger);
}

/* Contact Sidebar */
.contact-sidebar {
    height: 100%;
}

.faq-section {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.faq-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--gray-700);
    background-color: white;
    box-shadow: none;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: rgba(59, 130, 246, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-200);
}

.accordion-button::after {
    background-size: 1rem;
    transition: var(--transition);
}

.accordion-body {
    padding: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.contact-cta {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    color: white;
    margin-top: 2rem;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.contact-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-cta .btn-outline-primary {
    color: white;
    border-color: white;
    background: transparent;
}

.contact-cta .btn-outline-primary:hover {
    background-color: white;
    color: var(--primary);
}

.support-hours {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Map Section */
.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Success Modal */
.success-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.modal-title {
    font-weight: 700;
    color: var(--gray-800);
}

.modal-text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.request-number {
    background-color: var(--gray-100);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.request-number span {
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .page-header {
        padding: 3rem 0 5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper, .faq-section, .contact-cta {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 2.5rem 0 4rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem 1rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}