.contact-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0 0 24px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-modern {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-info p {
    margin: 0 0 16px;
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: #1e3a8a;
    display: inline-block;
    min-width: 120px;
}

.contact-info a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.social-box h3 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    color: #1e3a8a;
}

.social-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.social-links li {
    display: flex;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.social-links img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.li-2 {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.map {
    padding: 12px;
    height: 440px;
    display: flex;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map {
        height: 350px;
    }
}