/* Contact Page Specific Styles */

.page-header {
    background: linear-gradient(135deg, #005EB8 0%, #004F9F 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 4rem 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container h2 {
    color: #005EB8;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e1e1e;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 3px solid #005EB8;
    outline-offset: 2px;
    border-color: #005EB8;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #005EB8;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    width: 100%;
    min-height: 44px;
}

.submit-btn:hover {
    background-color: #004F9F;
    box-shadow: 0 4px 12px rgba(0, 94, 184, 0.3);
}

.submit-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Information */
.contact-info h2 {
    color: #005EB8;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: #1e1e1e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p {
    color: #495057;
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.info-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #6c757d;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    color: #005EB8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.social-link:hover {
    color: #004F9F;
    text-decoration: underline;
}

.response-time {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.response-time h3 {
    color: #005EB8;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.response-time p {
    color: #495057;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 1.5rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        padding: 0.875rem 2rem;
    }

    .info-item {
        gap: 1rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 1.5rem 1rem;
    }

    .page-header h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .contact-form-container h2,
    .contact-info h2 {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.25rem 0.75rem;
    }

    .contact-section {
        padding: 1.5rem 0.75rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.675rem;
        font-size: 16px;
    }

    .submit-btn {
        padding: 0.875rem 1.5rem;
    }

    .info-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .info-icon {
        font-size: 1.5rem;
    }

    .response-time {
        padding: 1.25rem;
    }
}
