/* CTA Section Enhancements */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.cta-shape-1 {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--blue);
    animation: float 10s ease-in-out infinite;
}

.cta-shape-2 {
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--purple);
    animation: float 15s ease-in-out infinite;
}

