/* VFX Final CTA Widget Styles */
.vcta-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.vcta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    z-index: 1;
    opacity: 0.9;
}

.vcta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.vcta-light-rays {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 30% 20%, rgba(232, 119, 34, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
    animation: lightPulse 10s ease-in-out infinite alternate;
}

@keyframes lightPulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.vcta-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.vcta-title {
    font-family: serif;
    /* Will be overridden by Elementor Typography if set */
    font-size: 85px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.vcta-title-white {
    color: #fff;
}

.vcta-title-amber {
    color: #E87722;
}

.vcta-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* BUTTONS */
.vcta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.vcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.vcta-btn-primary {
    background: #E87722;
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(232, 119, 34, 0.3);
}

.vcta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 119, 34, 0.4);
    background: #f55e03;
}

.vcta-btn-secondary {
    background: transparent;
    color: #E87722;
    border: 1px solid rgba(232, 119, 34, 0.5);
}

.vcta-btn-secondary:hover {
    background: rgba(232, 119, 34, 0.05);
    border-color: #E87722;
    transform: translateY(-3px);
    color: #fff;
}

.vcta-btn-arrow {
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.vcta-btn:hover .vcta-btn-arrow {
    transform: translateX(6px);
}

/* Entrance Animations */
.vcta-title-white,
.vcta-title-amber,
.vcta-subtitle,
.vcta-buttons {
    opacity: 0;
    transform: translateY(20px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .vcta-title {
        font-size: 65px;
    }
}

@media (max-width: 768px) {
    .vcta-title {
        font-size: 45px;
    }

    .vcta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .vcta-btn {
        width: 100%;
        justify-content: center;
    }
}