.map-section {
    position: relative;
    height: 100vh;
    margin-bottom: 60px;
    margin-top: 7%;
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    border: none;
}

.contact-card {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
    max-width: 1100px;
    width: 90%;
}

.contact-card h2 {
    font-weight: 700;
    font-size: 50px;
    text-align: center;
}

.contact-card p.lead {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #555;
    margin-bottom: 40px;
}

.form-control {
    background-color: #f5f5f5;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    padding: 10px;
}

.btn-submit {
    background-color: #0056d2;
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 6px;
}

.btn-submit:hover {
    background-color: #0041a8;
}

.contact-info h5 {
    font-size: 30px;
    font-weight: 700;
}

.contact-info p {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-info i {
    color: #0d6efd;
    margin-right: 10px;
}

@media (max-width: 991px) {
    .map-section {
        margin-bottom: 100%;
        margin-top: 31%;
    }

    .contact-card {
        padding: 30px 20px;
        top: 80%;
    }

    .border-end {
        border: none !important;
        border-bottom: 1px solid #ddd !important;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}