/* Kontakt Page Specific Styles */

.main_contact {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/img/home/szybki.png") center / cover no-repeat;
    padding: 160px 0 100px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.main_contact .main__container_pages {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.main_contact .main__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.main_contact .main__text {
    font-size: 1.25rem;
    max-width: 800px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact {
    padding: 100px 0;
    background-color: #fff;
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 2.5rem;
}

.connect-contact {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.connect-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.connect-contact__item:hover {
    transform: translateX(10px);
}

.connect-contact__icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #e1e4eb;
}

.connect-contant__type {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #00b1cf;
    margin-bottom: 4px;
}

.connect-contact__label {
    font-size: 1.25rem;
    font-weight: 500;
    color: #303a4d;
    line-height: 1.4;
}

.contact__links {
    display: flex;
    gap: 20px;
}

.contact__link {
    width: 45px;
    height: 45px;
    background: #303a4d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact__link:hover {
    background: #00b1cf;
    transform: translateY(-5px);
}

.contact__info .contact__text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Map Section */
.map {
    padding: 0 2rem 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map iframe {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.map iframe:hover {
    filter: grayscale(0);
}

/* Responsive */
@media (max-width: 992px) {
    .contact__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .main_contact .main__title {
        font-size: 2.5rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact__title {
        font-size: 2rem;
    }

    .map {
        padding-bottom: 60px;
    }

    .map iframe {
        height: 350px;
    }
}