/* ===================================
   VIP PAGE SPECIFIC CSS
   =================================== */

/* Hero */
.vip-hero {
    background: radial-gradient(ellipse at center, #3d1a5e 0%, #2d1b4e 40%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.vip-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.vip-crown-big {
    font-size: 4.5rem;
    color: var(--gold);
    text-shadow: var(--shadow-gold);
    margin-bottom: 1rem;
    animation: crownFloat 3s ease-in-out infinite;
}

/* Benefits */
#vip-benefits { background: var(--dark); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: var(--dark2);
    border: 1px solid rgba(107, 47, 160, 0.2);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(107,47,160,0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(107,47,160,0.3));
    transform: rotateY(180deg);
}

.benefit-card h3 {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.toggle-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.save-badge {
    background: linear-gradient(135deg, #2ED573, #26AE60);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.05em;
}

.toggle-switch {
    position: relative;
    width: 54px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(107, 47, 160, 0.4);
    border-radius: 28px;
    transition: var(--transition);
    border: 1px solid rgba(107, 47, 160, 0.5);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    background: var(--primary-light);
    border-radius: 50%;
    transition: var(--transition);
}

input:checked + .toggle-slider {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

input:checked + .toggle-slider::before {
    transform: translateX(26px);
    background: var(--gold);
}

/* Pricing subtitle */
.pricing-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-note i { color: #2ED573; }

/* VIP Testimonials */
#vip-testimonials { background: var(--dark2); }

/* FAQ */
#vip-faq { background: var(--dark); }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(107, 47, 160, 0.2);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    background: var(--dark2);
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(107, 47, 160, 0.1);
    color: var(--gold);
}

.faq-question i {
    color: var(--primary-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(107, 47, 160, 0.05);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px 25px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* CTA Section */
#vip-cta {
    background: linear-gradient(135deg, #1a0a2e, #2d1b4e, #1a0a2e);
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-om {
    font-size: 5rem;
    color: var(--gold);
    font-family: var(--font-hindi);
    text-shadow: var(--shadow-gold);
    margin-bottom: 1.5rem;
    display: block;
    animation: glowPulse 3s ease-in-out infinite;
}

.cta-inner h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-inner p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-hindi);
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
