

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

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}


.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ffd700;
    color: #333;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 10;
}

.card-header {
    padding: 2rem 1.5rem;
    border: none;
    background: transparent;
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.popular .package-icon {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.popular .package-name {
    color: white;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.popular .price {
    color: white;
}

.duration {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.popular .duration {
    color: rgba(255, 255, 255, 0.8);
}

.card-body {
    padding: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.popular .features-list li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: #28a745;
    margin-left: 0.75rem;
    font-size: 0.9rem;
}

.popular .features-list i {
    color: #ffd700;
}

.card-footer {
    padding: 1.5rem;
    border: none;
    background: transparent;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-gradient {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
    font-weight: 700;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #ffed4e, #ffc947);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
    color: #333;
}

.info-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: none;
        margin-top: 1rem;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .price {
        font-size: 2.5rem;
    }

    .package-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.4s;
}