/* Kontakt Page Styles */

/* Map Section */
.contact-map {
    margin-top: 101px;
    width: 100%;
    background: #F5F5F5;
    position: relative;
    z-index: 1;
}

.map-wrapper {
    width: 100%;
    height: 997px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Contact Info Section */
.contact-info-section {
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
    margin-top: -200px;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-info-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 600px;
    position: relative;
    z-index: 2;
}

.contact-info-left {
    flex: 1;
    position: relative;
    display: flex;
    align-items: anchor-center;
    padding: 60px;
}

.contact-cta-overlay {
    position: relative;
}

.cta-button-white {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 22px 10px 40px;
    background: white;
    color: #AB844E;
    border-radius: 60px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.cta-button-white .arrow-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    border: none;
    border-radius: 0;
}

.cta-button-white .arrow-circle img {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.cta-button-white .arrow-default {
    opacity: 1;
}

.cta-button-white .arrow-hover {
    opacity: 0;
}

.cta-button-white:hover {
    background-color: #d7a461;
    border-color: #d7a461;
    color: #fff;
}

.cta-button-white:hover .arrow-default {
    opacity: 0;
}

.cta-button-white:hover .arrow-hover {
    opacity: 1;
}

.contact-info-right {
    position: absolute;
    right: 100px;
    top: -130px;
    width: 50%;
    max-width: 600px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 0px 80px 83px;
    z-index: 10;
}

.contact-info-box {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-details h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.contact-details p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}

.contact-details p a {
    color: #FFFFFF;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-details p a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info-section {
        margin-top: -150px;
    }

    .contact-info-container {
        flex-direction: column;
        min-height: 500px;
    }

    .contact-info-left {
        padding: 40px;
    }

    .contact-info-right {
        position: absolute;
        top: -150px;
        width: 60%;
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 400px;
    }

    .contact-info-section {
        margin-top: 0;
    }

    .contact-info-container {
        min-height: 400px;
    }

    .contact-info-left {
        padding: 30px;
    }

    .contact-info-right {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 100%;
    }

    .cta-button-white {
        padding: 15px 25px;
        font-size: 16px;
    }

    .contact-info-right {
        padding: 50px 30px;
    }

    .contact-info-box {
        gap: 40px;
    }

    .contact-details h3 {
        font-size: 19px;
    }

    .contact-details p {
        font-size: 17px;
    }
}
