.pricing-wrapper {
    min-height: 100vh;
    padding-top: 80px;
    background: #090a0f;
    position: relative;
    overflow: hidden;
}

/* Background Animation same as index */
.bg-animation {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #1b2735 0%, #090a0f 100%);
    z-index: 1;
}

.pricing-header {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.pricing-header h1 span { color: #007bff; }

.tab-container {
    margin-top: 30px;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 50px;
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    border-radius: 50px;
    transition: 0.3s;
}

.tab-btn.active {
    background: #007bff;
}

/* Cards Layout */
.pricing-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 10%;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 320px;
    padding: 25px;
    color: white;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: #007bff;
}

.card-img img {
    width: 100%;
    height: 160px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
}

.price-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #00ff88; }

.price-card ul {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.price-card ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.price-card ul li i { color: #007bff; margin-right: 10px; }

.price-box {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.btn-select {
    padding: 12px;
    background: #007bff;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}
.combo-card {
    max-width: 450px; /* Thoda bada card */
    border: 2px solid #00ff88; /* Greenish border for Premium feel */
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.combo-card h3 {
    font-size: 1.8rem;
}

/* Animation Class */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container transition setup */
.pricing-container {
    display: none; /* JS handle karega */
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 10%;
    opacity: 0; /* Initial state for animation */
}