/* ========== CONTACT PAGE ========== */
.page-content { margin-top: 100px; margin-left: 2%; }
#left-hero h1 { font-size: 45px; color: black; font-weight: bold; }
.hero-des { font-size: 1.1rem; color: #4a5568; }

/* ========== CONTACT INFO ========== */
.contact-info { font-size: 1rem; margin-top: 3rem;}

/* ========== SOCIAL LINKS ========== */
.social-section { margin-top: 1.25rem; }

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.6rem;
}

.social-links a {
    background: #d4e9ff;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0a2b4e;
    font-size: 1.2rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #b8dcff;
    transform: translateY(-3px);
}

.social-links a i {
    color: #0a2b4e;
    line-height: 1;
}

/* ========== MAP ========== */
#hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.map-wrapper {
    width: 90%;
    height: 90%;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    margin-left: 5%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

/* ========== RESPONSIVE ========== */
@media only screen and (max-width: 991px) {
    .page-content { margin-top: 75px; padding: 0 1rem 2rem 1rem; }
    #left-hero h1 { font-size: 30px; margin-top: 7%; }
    .hero-des { font-size: 1rem; }
    .social-links { justify-content: flex-start; }
    #hero-right { margin-top: 2rem; padding: 0; }
    .map-wrapper { min-height: 300px; }
    .map-wrapper iframe { min-height: 300px; }
}
@media (min-width: 992px) and (max-width: 1200px) {
    #left-hero h1 { font-size: 38px; }
    .map-wrapper { min-height: 400px; }
    .map-wrapper iframe { min-height: 400px; }
}
