/* Pricing Tabs Enhancements */
.pricing-tabs {
    position: relative;
}

.pricing-tab-button {
    position: relative;
    overflow: hidden;
}

.pricing-tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.pricing-tab-button:hover::before {
    left: 100%;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .pricing-tab-button {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pricing-tab-button span.text-sm {
        white-space: nowrap;
    }
}

/* Smooth transitions for tab content */
.tab-content-enter {
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gradient text animation */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animated {
    background-size: 200% auto;
    animation: gradient 3s ease infinite;
}
