.parallax-contact-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.98)
    );
    padding: var(--sekcie, 60px) 0;
    overflow: hidden;
}

.parallax-contact-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05),
        transparent
    );
    pointer-events: none;
    z-index: 1;
}

.parallax-contact-inner {
    position: relative;
    will-change: transform, opacity;
    transition: transform 0.1s linear, opacity 0.1s linear;
    transform: translateY(-300px);
    opacity: 0;
}

.parallax-contact-inner > * {
    position: relative;
    z-index: 2;
}

.parallax-contact-section.in-view .parallax-contact-inner {
    transform: translateY(0);
    opacity: 1;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.5s ease-out;
}