/* Hero Section */
.contact-hero-banner {
    /* background: url('/images/hero_city_banner.jpeg') no-repeat center center/cover; */
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-banner h1 {
    font-size: 2.5rem;
}

.contact-hero-banner p {
    font-size: 1.25rem;
}

/* Contact Info Cards */
.contact-info-section .card {
    border: none;
    transition: transform 0.3s ease;
}

.contact-info-section .card:hover {
    transform: translateY(-10px);
}

.contact-info-section .card i {
    font-size: 3rem;
    color: #007bff;
}

.contact-info-section .card h5 {
    font-size: 1.25rem;
    margin-top: 1rem;
}

.contact-info-section .map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.contact-info-section .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
