﻿.contact-section-gw {
    padding: 60px 0;
    min-height: 100vh;
}

.hero-wrapper-gw {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(0deg, rgba(247, 247, 247, 0.5), rgba(247, 247, 247, 0.5)), url('/assets/images/kontakt.jpg') center center / cover no-repeat;
    text-transform: uppercase;
    color: #212529;
}

.contact-container-gw {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info-row-gw {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-item-gw {
    flex: 1 1 240px;
    min-width: 240px;
    background: var(--blue-bg);
    padding: 30px 20px;
    min-height: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-icon-wrapper-gw {
    margin-bottom: 15px;
}

    .contact-icon-wrapper-gw img {
        width: 48px;
        height: 48px;
    }

.contact-text-wrapper-gw h2 {
    color: #212529;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.contact-text-wrapper-gw span {
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin: 2px 0;
}

.contact-text-wrapper-gw a {
    text-decoration: none;
    cursor: pointer;
    color: #212529;
}

.contact-content-row-gw {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.contact-details-wrapper-gw {
    flex: 2;
}

.contact-details-heading-gw {
    color: var(--grenade);
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.contact-details-content-gw {
    background: var(--blue-bg);
    padding: 20px;
    border-radius: 4px;
}

    .contact-details-content-gw p {
        margin: 0 0 15px 0;
        line-height: 1.6;
    }

        .contact-details-content-gw p:last-child {
            margin-bottom: 0;
        }

.contact-map-wrapper-gw {
    flex: 1;
}

.contact-map-iframe-gw {
    width: 100%;
    min-height: 320px;
    height: 400px;
    border: 0;
    border-radius: 4px;
}

/* Accessibility and motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}

/* Responsive design */

@media (min-width: 768px) and (max-width: 1024px) {
    .contact-info-row-gw {
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .contact-info-item-gw {
        flex: 0 0 200px;
        width: 32%;
        padding: 24px 12px;
        min-height: 220px;
        min-width: 220px;
    }

        .contact-info-item-gw span {
            font-size: 14px;
        }

    .contact-details-content-gw {
        padding: 0px;
    }

    .contact-details-wrapper-gw {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .contact-info-row-gw {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-info-item-gw {
        flex: auto;
        padding: 24px 12px;
        max-width: 480px;
        width: 90%;
        min-height: auto;
    }

    .contact-content-row-gw {
        flex-direction: column;
        gap: 20px;
    }

    .contact-map-iframe-gw {
        min-height: 250px;
        height: 300px;
    }

    .contact-details-wrapper-gw, .contact-map-wrapper-gw {
        width: 100%;
    }

    .contact-details-content-gw {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-container-gw {
        padding: 0 10px;
    }

    .hero-wrapper-gw {
        min-height: 200px;
        padding: 0 15px;
    }

    .contact-section-gw {
        padding: 30px 0;
    }
}
