/* Premium Distributors Plan Styling */
.subscription-plan.premium-plan {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(255, 215, 0, 0.08) 50%, 
        rgba(26, 26, 26, 0.95) 100%);
    border: 2px solid #FFD700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    animation: premiumGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transform: scale(1.02);
}

.subscription-plan.premium-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FFD700 50%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes premiumGlow {
    0%, 100% { box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 25px 80px rgba(255, 215, 0, 0.5); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.value-badge.premium-badge {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.price.premium-price {
    color: #FFD700;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    font-size: 1.3em;
    font-weight: 900;
}

.savings-tag.premium-savings {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
    color: #FFD700;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.limited-spots.premium-limited {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
    border-radius: 8px;
    padding: 8px 12px;
    margin: 10px 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.features.premium-features {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.features.premium-features li {
    color: #FFD700;
    font-weight: 500;
    margin: 8px 0;
    position: relative;
    padding-left: 10px;
}

.features.premium-features li::before {
    content: '💎';
    position: absolute;
    left: -15px;
    top: 0;
}

.subscribe-btn.premium-btn {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

.contact-sales-btn {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer;
}

.contact-sales-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
}

.subscribe-btn.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.subscribe-btn.premium-btn:hover::before {
    left: 100%;
}

.subscribe-btn.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6);
    cursor: pointer;
}

.guarantee-badge.premium-guarantee {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid #FFD700;
    font-weight: 600;
    border-radius: 20px;
    padding: 8px 16px;
    margin-top: 12px;
    font-size: 14px;
}

/* Make sure premium plan stands out */
.subscription-plans {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
}

/* Mobile responsiveness for premium plan */
@media (max-width: 768px) {
    .subscription-plan.premium-plan {
        transform: none;
        margin: 1rem 0;
    }
    
    .price.premium-price {
        font-size: 1.2em;
    }
    
    .subscribe-btn.premium-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .contact-sales-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Terms and Conditions Text */
.terms-text {
    margin: 1rem 0;
    padding: 0.75rem;
    font-size: 13px;
    color: #aaa;
    text-align: center;
    line-height: 1.4;
}

.terms-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

.terms-text a:hover {
    color: #fff;
    text-decoration: underline;
}

