/* ===== Top Contact Section ===== */
.top-contact {
    height: 50vh;
    width: 100%;
    position: relative;
    text-align: center;
    color: white;
}

.top-contact h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.contact-top-img {
    height: 50vh;
    width: 100%;
    object-fit: cover;
    opacity: 0.6;
    border-bottom: 4px solid #198754; /* brand accent (green) */
}

/* ===== Contact Main Section ===== */
.contact-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    gap: 30px;
}

/* ===== Left Column (Form) ===== */
.contact-left {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-left h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #363636;
}

.contact-blurb {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #555;
}

.contact-form .form-label {
    font-weight: 600;
    color: #444;
}

.contact-form .form-control {
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #ccc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* ===== Right Column (Details) ===== */
.contact-right {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e0e0e0;
}

.contact-right h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #363636;
}

.contact-right h3 {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #198754;
}

.contact-right p,
.contact-right a {
    font-size: 0.95rem;
    color: #444;
    text-decoration: none;
}

.contact-right a:hover {
    text-decoration: underline;
    color: #145c32;
}

.social-link {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-main {
        flex-direction: column;
        padding: 10px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        margin: 0 auto;
    }
}
