.contact-card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
}

.details-panel {
    background: #ffffff;
    padding: 3rem 2.5rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 1.2rem 0 2.5rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.icon-circle {
    background: #eef2ff;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e4fd9;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.info-item:hover .icon-circle {
    background: #e0e7ff;
}

.info-text h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #5f6c80;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.info-text p {
    font-size: 13.5px;
    font-weight: 500;
    color: #121f33;
    word-break: break-word;
}

.info-text p.small-info {
    font-size: 12px;
    font-weight: 400;
    color: #2d3a4b;
    margin-top: 0.2rem;
}

.contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.contact-social {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--gray);
}

.contact-social:hover{ 
    color: var(--white); 
    border: none;
}

.contact-social:nth-child(1):hover {
    background-color: #1877F2;
    transform: translateY(-3px);
}

.contact-social:nth-child(2):hover {
    background-color: #1DA1F2;
    transform: translateY(-3px);
}

.contact-social:nth-child(3):hover {
    background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    transform: translateY(-3px);
}

.contact-social:nth-child(4):hover {
    background-color: #0A66C2;
    transform: translateY(-3px);
}

.map-panel {
    background: #eaf0f6;
    min-height: 100%;
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: #d9e2ed;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: auto;
}

.card-footer-note {
    background: #f8fafd;
    padding: 1rem 3rem;
    border-top: 1px solid #e9edf3;
    font-size: 0.95rem;
    color: #4f6072;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-legal i {
    color: #74869c;
    font-size: 0.8rem;
}

.badge-responsive {
    background: #dee5ed;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #253649;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .details-panel { padding: 2.5rem 2rem; }
    .map-container { min-height: 380px; }
}

@media screen and (max-width: 500px) {
    .details-panel { padding: 2rem 1.5rem; }
    .info-item { gap: 1rem; }
    .info-text p { font-size: 1.2rem; }
    .icon-circle {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.2rem;
    }

    .card-footer-note {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.2rem 1.5rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 1.2rem;
    }
}

@media screen and (max-width: 380px) {
    .sub-headline {
        font-size: 1rem;
    }

    .badge-responsive {
        margin-top: 0.3rem;
    }
}

/* optional micro-animations */
.info-item,
.social-mini a {
    transition: all 0.2s ease;
}