/* --- TOONZ CINEMATIC CTA WALL (Single Image Version) --- */
.toonz-cta-wall-wrapper {
    position: relative;
    padding: 180px 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #fff;
    padding-bottom: 0;
    margin: 0 auto;
}

.tcw-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

}

/* LEFT CONTENT */
.tcw-content {
    flex: 1;
    z-index: 2;
}

.tcw-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #999;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.tcw-subtitle-line {
    width: 35px;
    height: 2px;
    background-color: #E87722;
    margin-bottom: 35px;
}

.tcw-title {
    font-size: clamp(40px, 5vw, 78px);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 35px;
}

.tcw-white {
    color: #FFFFFF;
    display: block;
}

.tcw-orange {
    color: #E87722;
    display: block;
}

.tcw-desc {
    font-size: 17px;
    color: #BBBBBB;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 500px;
}

/* BUTTONS */
.tcw-btn-group {
    display: flex;
    gap: 20px;
}

.tcw-btn {
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.tcw-btn-primary {
    background-color: #E87722;
    color: #000;
}

.tcw-btn-outline {
    background: transparent;
    border: 1px solid #444;
    color: #FFFFFF;
}

.tcw-arrow {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.tcw-btn:hover {
    transform: translateY(-5px);
}

.tcw-btn:hover .tcw-arrow {
    transform: translateX(8px);
}

.tcw-btn-outline:hover {
    border-color: #E87722;
    color: #E87722;
}

/* RIGHT SIDE IMAGE */
.tcw-image-column {
    flex: 1.1;
    display: flex;
    justify-content: flex-end;
}

.tcw-main-image {
    width: 100%;
    max-width: 700px;
    position: relative;
}

.tcw-main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    /* Optional: Add a slight perspective tilt like the design */
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.8s ease;
}

.tcw-main-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .tcw-container {
        flex-direction: column;
        text-align: center;
    }

    .tcw-subtitle-line {
        margin: 0 auto 35px auto;
    }

    .tcw-desc {
        margin: 0 auto 45px auto;
    }

    .tcw-btn-group {
        justify-content: center;
    }

    .tcw-image-column {
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }

    .tcw-main-image img {
        transform: none;
    }
}