﻿.contact-header {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.contact-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    background-color: white;
}

.contact-card-body {
    padding: 2.5rem;
}

.contact-title {
    color: #8b0000;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-label {
    font-weight: 600;
    color: #495057;
}

.form-control {
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid #ced4da;
}

    .form-control:focus {
        border-color: #8b0000;
        box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.25);
    }

textarea.form-control {
    min-height: 150px;
}

.submit-btn {
    background-color: #8b0000;
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .submit-btn:hover {
        background-color: #d63384;
        transform: translateY(-2px);
    }

.contact-info {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

    .contact-info h3 {
        color: #8b0000;
        margin-bottom: 1.5rem;
    }

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    background-color: #f8f9fa;
    color: #8b0000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #343a40;
}

.contact-text p {
    color: #6c757d;
    margin-bottom: 0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

    .map-container iframe {
        width: 100%;
        height: 300px;
        border: none;
    }
