/* Hero Section */
.hero-section-contact {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-background-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

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

.hero-section-contact .container {
    position: relative;
    height: 100%;
    z-index: 2;
}

.hero-content-contact {
    position: absolute;
    top: 60%;
    max-width: 800px;
    text-align: left;
}

.hero-content-contact h1 {
    font-family: var(--title-font-family);
    font-size: 70px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    color: #FFFFFF;
}

/* Responsywność */
@media (max-width: 992px) {
    .hero-section-contact {
        height: 250px;
    }

    .hero-content-contact h1 {
        font-size: 60px;
    }
}

.contact-form-section {
    padding: 100px 0;
}

.contact-columns {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 0 0 45%;
}

.contact-form-column {
    flex: 0 0 50%;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    padding: 25px;
    border: 1px solid #63636140;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-item-title {
    font-size: 16px;
    color: #1D1D1B;
    font-weight: 500;
    margin: 0 0 5px 0;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-phone-contact,
.icon-mail-contact {
    background-image: url('../icons/phone.svg');
    filter: brightness(0) saturate(100%) invert(8%) sepia(9%) saturate(10%) hue-rotate(315deg) brightness(95%) contrast(84%);
}

.icon-mail-contact {
    background-image: url('../icons/mail.svg');
}     

.custom-icon-contact {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.contact-page-info-link,
.contact-info-text {
    color: #636361;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.contact-info-address {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #636361;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 5px;
}

/* Responsywność */
@media (max-width: 992px) {
    .contact-columns {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-column,
    .contact-form-column {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .contact-info-content {
        gap: 15px;
    }

    .contact-info-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-info-item {
        padding: 15px;
    }

    .contact-form-section {
        padding: 50px 0;
    }
}