/* CTA Video Section Styles */
.section_cta {
    position: relative;
    min-height: 100vh;
    padding-left: 1rem;
    padding-right: 1rem;
}

.track-cta.is-sticky-active {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 10;
}

.track-cta {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.sticky-cta {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-video_background {
    background-color: #000;
    border-radius: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
    position: relative;
    overflow: hidden;
}

.cta_content {
    position: absolute;
    z-index: 4;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 1rem;
    padding: 2rem;
    inset: 0;
}

.cta-heading {
    margin: 0 0 2rem 0;
    color: #fff;
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.button-wrap {
    display: inline-block;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.button-text {
    position: relative;
    overflow: hidden;
    height: 1.5em;
}

.button_text {
    display: inline-block;
    transition: transform 0.3s ease;
}

.button-text-animation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transition: top 0.3s ease;
}

.button:hover .button_text {
    transform: translateY(-100%);
}

.button:hover .button-text-animation {
    top: 0;
}

.button-image {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.button:hover .button-image {
    transform: translateX(5px);
}

.background-video {
    z-index: 2;
    border-radius: 0.5rem;
    width: 100%;
    height: 100%;
}

.background-video.absolute {
    z-index: 1;
    position: absolute;
    inset: 0;
}

.cta-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    z-index: 2;
    background-image: radial-gradient(circle, rgba(23, 20, 17, 0) 20%, rgba(0, 0, 0, 0.73));
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .cta-heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .button {
        padding: 12px 24px;
        font-size: 14px;
    }
}