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

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.icon-shape {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.price-container {
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .price-container {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 1025px) {
    .price-container {
        padding-left: 100px;
        padding-right: 100px;
    }
}

/* Custom Styles for Enhanced Pricing Page */
.text-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary-subtle {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #5d87ff 0%, #785fef 100%);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hover-scale {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-zoom img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-zoom:hover img {
    transform: scale(1.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.floating-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pricing-toggle-container {
    min-width: 320px;
    position: relative;
}

.pricing-toggle-label {
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #6c757d;
    min-width: 140px;
    text-align: center;
}

.pricing-toggle-label.active {
    color: #fff;
}

.toggle-slider {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.pricing-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    border-color: rgba(93, 135, 255, 0.3);
    box-shadow: 0 25px 50px rgba(93, 135, 255, 0.15) !important;
}

.popular-badge {
    top: -2px;
    right: -2px;
}

.popular-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    z-index: -1;
}

.feature-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    transition-delay: calc(var(--i) * 0.1s);
}

.pricing-card:hover .feature-item {
    opacity: 1;
    transform: translateX(0);
}

.feature-item {
    opacity: 1;
    transform: translateX(0);
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #dee2e6;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #5d87ff;
    transform: scale(1.2);
}

.bg-pattern {
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.2) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
}

.price-container {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.min-vh-75 {
    min-height: 75vh;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cursor-pointer {
    cursor: pointer;
}

.avatar-group .avatar {
    width: 50px;
    height: 50px;
}

.avatar-group .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-card {
    background: linear-gradient(135deg, #5d87ff 0%, #785fef 100%);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .display-6 {
        font-size: 1.75rem;
    }

    .floating-card {
        display: none;
    }

    .pricing-toggle-container {
        min-width: 280px;
    }

    .pricing-toggle-label {
        min-width: 120px;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
.swiper-container {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.swiper-container.swiper-loaded {
    opacity: 1;
}

/* Stagger Animation for Features */
.feature-item:nth-child(1) {
    --i: 0;
}

.feature-item:nth-child(2) {
    --i: 1;
}

.feature-item:nth-child(3) {
    --i: 2;
}

.feature-item:nth-child(4) {
    --i: 3;
}

.feature-item:nth-child(5) {
    --i: 4;
}

.feature-item:nth-child(6) {
    --i: 5;
}

.feature-item:nth-child(7) {
    --i: 6;
}

.feature-item:nth-child(8) {
    --i: 7;
}

/* Hero Animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.animate-fade-up {
    animation: fade-up 0.8s ease-out forwards;
    opacity: 0;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounce-slow 3s ease-in-out infinite;
}

.blink {
    animation: blink 2s ease-in-out infinite;
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border-radius: 1rem !important;
}

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

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

.shadow-hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-icon-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

/* Hero Pattern */
.hero-pattern {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 200, 255, 0.3) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.cta-pattern {
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Hero Card */
.hero-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .display-6 {
        font-size: 1.75rem;
    }
}

/* Progress bar animation */
.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 0;
    }
}

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

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #fdbb2d 0%, #22c1c3 100%);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.bg-primary-soft {
    background-color: rgba(102, 126, 234, 0.1);
}

.bg-success-soft {
    background-color: rgba(78, 205, 196, 0.1);
}

.bg-gradient-primary-subtle {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

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

.lh-relaxed {
    line-height: 1.7;
}

.text-sm {
    font-size: 0.875rem;
}