/* ================================================================
   CONTACT SECTION
================================================================ */
.itr-contact {
    padding: 4rem 0 5rem;
    background: #f8fafb;
}

/* info cards */
.contact-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}
.contact-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    transform: translateY(-2px);
}
.contact-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(23,162,184,.1);
    color: #17A2B8;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
}
.contact-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin: 0 0 .25rem;
}
.contact-value {
    font-size: .875rem;
    font-weight: 500;
    color: #111827;
    margin: 0;
    line-height: 1.55;
}
.contact-value a { color: #17A2B8; text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

/* whatsapp badge */
.wa-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .72rem;
    font-weight: 600;
    color: #25d366;
    background: rgba(37,211,102,.1);
    border-radius: 4px;
    padding: 1px 6px;
    margin-left: 4px;
    text-decoration: none !important;
}
.wa-badge:hover { background: rgba(37,211,102,.2); }

/* map wrapper */
.map-embed-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.10);
    height: 100%;
    min-height: 320px;
}
.map-embed-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    border: none;
}

@media (max-width: 767px) {
    .itr-contact { padding: 2.5rem 0 3.5rem; }
}
