.contact-card {
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
}

.contact-form-card {
    background: #f7fbff;
    padding: 15px;
    border-radius: 18px;
}

.contact-map iframe {
    width: 100%;
    min-height: 280px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(14, 48, 84, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map iframe:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(14, 48, 84, 0.12);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.12);
}

.info-box {
    border-radius: 18px;
    background: #f6f9ff;
    padding: 1rem;
    min-height: 50px;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: black;
    margin-bottom: 0.75rem;
}

.contact-link {
    width: 100%;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    text-align: left;
    color: #000000;
    transition: all 0.2s ease;
}

.contact-link:hover {
    background: #eef3ff;
    color: #1f2d55;
    text-decoration: none;
}

.contact-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2d55;
}

@media (max-width: 991px) {
    .contact-map iframe {
        min-height: 260px;
    }
}

@media (max-width: 575px) {
    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .info-box {
        padding: 0.9rem;
    }
}