/* Custom styles for enhanced visual effects */
.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-bg {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #4338ca 100%);
}

.offer-bg {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.final-cta-bg {
    background: linear-gradient(135deg, #dc2626 0%, #ec4899 50%, #7c3aed 100%);
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #ef4444);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-bounce {
    transition: transform 0.3s ease;
}

.icon-bounce:hover {
    transform: scale(1.1);
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.6);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Loading animation for icons */
.lucide {
    display: inline-block;
}