@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

body, h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, select, textarea {
    font-family: 'Open Sans', sans-serif !important;
}

.hubungi-header-section {
    background-color: #f8f9fa;
    padding: 80px 0 20px;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: #1a3673;
    margin: 15px auto;
    border-radius: 2px;
}

.hubungi-title {
    font-weight: 900;
    color: #1a3673;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hubungi-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafd 100%);
    border: 1px solid #eef2f5;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a3673, #4370d3);
    z-index: -1;
}

.contact-card-title {
    font-weight: 800;
    color: #1a3673;
    font-size: 22px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.contact-info-item i {
    font-size: 20px;
    color: #1a3673;
    margin-top: 3px;
    width: 25px;
    text-align: center;
}

.social-title {
    font-weight: 800;
    color: #1a3673;
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.social-links-contact {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #f0f4f8;
    color: #1a3673;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #1a3673;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(26, 54, 115, 0.2);
}

.map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 450px;
    border: 1px solid #eef2f5;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

@media (max-width: 768px) {
    .hubungi-title {
        font-size: 28px;
    }
    .contact-card {
        padding: 25px;
    }
    .map-card {
        min-height: 350px;
    }
    .map-card iframe {
        min-height: 350px;
    }
}