/* Scroll Trigger Sections Styles */
.scroll-trigger-wrapper * {
    box-sizing: border-box;
}

.scroll-trigger-wrapper {
    /* Using site default font */
}

.scroll-trigger-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    padding: 4rem 2rem;
    position: relative;
}

.scroll-trigger-left-column {
    padding-top: 100px;
    padding-bottom: 100px;
}

.scroll-trigger-content-block {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    margin: 30px 0;
    opacity: 0.3;
    transition: all 0.6s ease;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-trigger-content-block.active {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.scroll-trigger-content-block .subtitle {
    color: #FFD581;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    display: block;
    margin-bottom:10px;
}

.scroll-trigger-content-block h2 {
    color: #fff;
    margin: 0 0 1.5rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.scroll-trigger-content-block .content-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
}

.scroll-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(219deg, #1C0146 0%, #C54AA6 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 74, 166, 0.4);
    border: none;
    cursor: pointer;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.scroll-trigger-btn:hover {
    transform: translateY(-2px);
    background: white;
    color: #000 !important;
}

.scroll-trigger-btn:active {
    transform: translateY(0);
}

.scroll-trigger-btn:hover svg {
    stroke: #000;
}

.scroll-trigger-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.scroll-trigger-btn:hover svg {
    transform: translateX(4px);
}

.scroll-trigger-right-column {
    position: sticky;
    top: 70px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    overflow: hidden;
}

.scroll-trigger-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.scroll-trigger-image-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.scroll-trigger-image-slide.active {
    opacity: 1;
}

.scroll-trigger-mobile-image {
    display: none;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.scroll-trigger-mobile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 968px) {
    .scroll-trigger-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .scroll-trigger-right-column {
        display: none;
    }

    .scroll-trigger-mobile-image {
        display: flex;
    }

    .scroll-trigger-content-block {
        min-height: auto;
        opacity: 1;
    }

    .scroll-trigger-content-block h2 {
        font-size: 2rem;
    }

    .scroll-trigger-content-block .content-text {
        font-size: 1.1rem;
    }
}