/* CTA Buttons Styles */
.cta-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.btn-cta {
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 25, 55, 0.3);
    animation: gentlePulse 3s ease-in-out infinite;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-cta i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 25, 55, 0.4);
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta:hover i {
    transform: scale(1.2);
}

.btn-cta.focused {
    animation: focusPulse 1.5s ease-in-out 3;
    box-shadow: 0 0 0 4px rgba(232, 25, 55, 0.4), 0 6px 20px rgba(232, 25, 55, 0.5);
}

/* Ripple Effect on Click */
.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:active::before {
    width: 300px;
    height: 300px;
}

/* Gentle Pulse Animation */
@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(232, 25, 55, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(232, 25, 55, 0.4);
    }
}

/* Focus Pulse Animation */
@keyframes focusPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(232, 25, 55, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 8px rgba(232, 25, 55, 0.4), 0 8px 25px rgba(232, 25, 55, 0.6);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cta-buttons-container {
        gap: 10px;
    }
    
    .btn-cta {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .btn-cta i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cta-buttons-container {
        gap: 8px;
    }
    
    .btn-cta {
        margin-right: 0 !important;
        justify-content: center;
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .btn-cta i {
        font-size: 13px;
        margin-right: 4px !important;
    }
}
