/* ============================================
   CTA SECTION CSS
   ============================================ */

/* CTA Section - Beautiful Gradient Background */
.section-padding.bg-gradient-to-r {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F28C28 0%, #FF7A00 50%, #F28C28 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.section-padding.bg-gradient-to-r::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-padding.bg-gradient-to-r::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: rotate 20s linear infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.section-padding.bg-gradient-to-r > .container {
    position: relative;
    z-index: 1;
}

.section-padding.bg-gradient-to-r h2 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-padding.bg-gradient-to-r p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.section-padding.bg-gradient-to-r a {
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.section-padding.bg-gradient-to-r a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .section-padding.bg-gradient-to-r {
        padding: 3rem 0;
    }
    
    .section-padding.bg-gradient-to-r h2 {
        font-size: 2rem;
    }
    
    .section-padding.bg-gradient-to-r p {
        font-size: 1rem;
    }
}



