.np-contact {
    padding: 120px 40px;
    background: #f5f5f5;
}

.np-contact-card {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 80px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.np-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEWA STRONA */
.np-contact-info h2 {
    font-size: 34px;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.np-contact-block {
    margin-bottom: 30px;
}

.np-contact-block strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.np-contact-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.np-contact-block a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.np-contact-block a:hover {
    text-decoration: underline;
}

/* PRZYCISK */
.np-contact-cta {
    margin-top: 40px;
}

.np-contact-btn {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #000;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.np-contact-btn:hover {
    background: #000;
    color: white;
}

/* MAPA */
.np-contact-map {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.np-contact-map img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.np-contact-map a {
    display: block;
    cursor: pointer;
}

.np-contact-map img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.np-contact-map a:hover img {
    transform: scale(1.03);
    filter: brightness(0.9);
}

/* RESPONSYWNOŚĆ */
@media (max-width: 992px) {
    .np-contact-card {
        padding: 50px 40px;
    }

    .np-contact-grid {
        grid-template-columns: 1fr;
    }

    .np-contact-map {
        order: -1;
    }
}

@media (max-width: 576px) {
    .np-contact {
        padding: 80px 20px;
    }

    .np-contact-card {
        padding: 40px 25px;
    }

    .np-contact-info h2 {
        font-size: 26px;
    }
}