/**
 * VIP Showcase Page Styles
 * File: platform/assets/css/vip-showcase.css
 * 
 * Unique styling for the Become VIP page
 */

:root {
    --vip-gold: #FFD700;
    --vip-gold-dark: #FFA500;
    --vip-purple: #6B46C1;
    --vip-purple-light: #9F7AEA;
    --vip-dark: #1A202C;
    --vip-light: #F7FAFC;
    --vip-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --vip-shadow-xl: 0 20px 60px rgba(107, 70, 193, 0.2);
}

/* ========================================
   VIP HERO SECTION
   ======================================== */
.vip-hero-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 6rem 0 8rem;
    overflow: hidden;
}

.vip-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255, 215, 0, 0.1) 35px,
        rgba(255, 215, 0, 0.1) 70px
    );
}

.vip-badge-animated {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--vip-gold);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: vipGlow 2s ease-in-out infinite;
}

@keyframes vipGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.vip-star {
    font-size: 1.5rem;
    animation: vipSpin 3s linear infinite;
}

@keyframes vipSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vip-text {
    color: var(--vip-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vip-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.vip-gradient-text {
    background: linear-gradient(135deg, var(--vip-gold) 0%, var(--vip-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vip-hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.vip-stat-item {
    text-align: center;
}

.vip-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vip-gold);
    line-height: 1;
}

.vip-stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.vip-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.vip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-btn-primary {
    background: var(--vip-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.vip-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.4);
    color: white;
}

.vip-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.vip-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--vip-gold);
    color: var(--vip-gold);
}

.vip-trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.vip-trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.vip-trust-indicators i {
    color: var(--vip-gold);
}

/* VIP Visual Container */
.vip-visual-container {
    position: relative;
    height: 500px;
}

.vip-crown-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.crown-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: vipPulse 2s ease-in-out infinite;
}

@keyframes vipPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.crown-icon {
    font-size: 8rem;
    color: var(--vip-gold);
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.5));
    position: relative;
    z-index: 2;
}

.vip-benefit-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.vip-benefit-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: vipFloat 3s ease-in-out infinite;
}

.vip-benefit-card i {
    font-size: 1.5rem;
    color: var(--vip-purple);
}

.vip-benefit-card span {
    font-weight: 600;
    color: var(--vip-dark);
}

.vbc-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.vbc-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.vbc-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes vipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========================================
   VIP TIERS SECTION
   ======================================== */
.vip-tiers-section {
    padding: 5rem 0;
    background: var(--vip-light);
}

.vip-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vip-section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--vip-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.vip-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vip-dark);
    margin-bottom: 1rem;
}

.vip-section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
}

.vip-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.vip-tier-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vip-tier-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--vip-shadow-xl);
}

.vtc-info { border-color: #17a2b8; }
.vtc-primary { border-color: #007bff; }
.vtc-warning { border-color: #ffc107; }
.vtc-danger { border-color: #dc3545; }

.vtc-featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.15);
}

.vip-popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--vip-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.vip-tier-header {
    margin-bottom: 1.5rem;
}

.vip-tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vip-dark);
    margin-bottom: 0.5rem;
}

.discount-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(107, 70, 193, 0.1);
    color: var(--vip-purple);
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.125rem;
}

.vip-tier-requirement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.vip-tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.vip-tier-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.vip-tier-benefits i {
    color: #22c55e;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.vip-tier-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--vip-gradient);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vip-tier-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
    color: white;
}

/* ========================================
   VIP CALCULATOR SECTION
   ======================================== */
.vip-calculator-section {
    padding: 5rem 0;
    background: white;
}

.vip-calculator-card {
    background: var(--vip-gradient);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--vip-shadow-xl);
    color: white;
}

.vip-calc-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vip-calc-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.vip-calc-input {
    margin-bottom: 2rem;
}

.vip-calc-input label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.vip-calc-input input[type="number"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.vip-calc-input input[type="number"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.vip-discount-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vip-discount-slider input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}

.vip-discount-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.discount-display {
    background: white;
    color: var(--vip-purple);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    min-width: 60px;
    text-align: center;
}

.vip-calc-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
}

.vip-calc-results {
    background: white;
    color: var(--vip-dark);
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
}

.vip-calc-results h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vip-calc-breakdown {
    margin-bottom: 2rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.125rem;
}

.calc-row.highlight {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #22c55e;
    font-weight: 700;
    color: #22c55e;
    margin-top: 1rem;
}

.vip-btn-success {
    background: #22c55e;
    color: white;
    width: 100%;
    justify-content: center;
    font-size: 1.125rem;
    padding: 1.25rem;
}

.vip-btn-success:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    color: white;
}

/* ========================================
   VIP STORIES SECTION
   ======================================== */
.vip-stories-section {
    padding: 5rem 0;
    background: var(--vip-light);
}

.vip-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.vip-story-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.vip-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vip-story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vip-story-avatar {
    width: 60px;
    height: 60px;
    background: var(--vip-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.vip-story-info h4 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vip-dark);
}

.vip-story-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
}

.vip-story-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.story-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vip-purple);
}

.stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-story-quote {
    position: relative;
    padding-left: 2rem;
    color: #475569;
    font-style: italic;
    line-height: 1.6;
}

.vip-story-quote i {
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 1.5rem;
    color: var(--vip-gold);
    opacity: 0.3;
}

/* ========================================
   VIP PROCESS SECTION
   ======================================== */
.vip-apply-section {
    padding: 5rem 0;
    background: white;
}

.vip-process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.vip-process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(12.5% + 30px);
    right: calc(12.5% + 30px);
    height: 2px;
    background: linear-gradient(90deg, var(--vip-purple) 0%, var(--vip-purple-light) 50%, var(--vip-purple) 100%);
    z-index: 0;
}

.vip-process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.vip-step-number {
    width: 60px;
    height: 60px;
    background: var(--vip-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.vip-step-number::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(107, 70, 193, 0.1);
    z-index: -1;
    animation: vipPulse 2s ease-in-out infinite;
}

.vip-step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vip-dark);
    margin-bottom: 0.5rem;
}

.vip-step-content p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* Remove the connector divs from HTML as they're handled by CSS pseudo-element */
.vip-process-connector {
    display: none;
}

/* ========================================
   VIP FAQ SECTION
   ======================================== */
.vip-faq-section {
    padding: 5rem 0;
    background: var(--vip-light);
}

.vip-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.vip-faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.vip-faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vip-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vip-faq-question:hover {
    background: #f8f9fa;
}

.vip-faq-question i {
    transition: transform 0.3s ease;
}

.vip-faq-question:not(.collapsed) i {
    transform: rotate(180deg);
}

.vip-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #475569;
    line-height: 1.8;
}

/* ========================================
   VIP FINAL CTA
   ======================================== */
.vip-final-cta {
    padding: 5rem 0;
    background: var(--vip-dark);
}

.vip-cta-card {
    background: var(--vip-gradient);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.vip-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.vip-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.vip-cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.vip-cta-benefits span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.vip-cta-benefits i {
    color: var(--vip-gold);
}

.vip-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vip-btn-premium {
    background: white;
    color: var(--vip-purple);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.vip-btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    color: var(--vip-purple);
}

.vip-btn-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.vip-btn-white:hover {
    background: white;
    color: var(--vip-purple);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .vip-headline {
        font-size: 2.5rem;
    }
    
    .vip-hero-stats {
        justify-content: center;
    }
    
    .vip-visual-container {
        height: 300px;
    }
    
    .crown-icon {
        font-size: 5rem;
    }
    
    .vip-tier-card.vtc-featured {
        transform: none;
    }
    
    /* Process timeline for tablets */
    .vip-process-timeline {
        flex-direction: column;
        padding: 0;
    }
    
    .vip-process-timeline::before {
        top: 30px;
        left: 50%;
        right: auto;
        width: 2px;
        height: calc(100% - 60px);
        transform: translateX(-50%);
        background: linear-gradient(180deg, var(--vip-purple) 0%, var(--vip-purple-light) 100%);
    }
    
    .vip-process-step {
        margin-bottom: 3rem;
        position: relative;
    }
    
    .vip-process-step:last-child {
        margin-bottom: 0;
    }
    
    .vip-process-step:not(:last-child)::after {
        content: '↓';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        color: var(--vip-purple);
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .vip-hero-section {
        padding: 4rem 0 6rem;
    }
    
    .vip-headline {
        font-size: 2rem;
    }
    
    .vip-section-title {
        font-size: 2rem;
    }
    
    .vip-calc-title {
        font-size: 1.75rem;
    }
    
    .vip-cta-title {
        font-size: 2rem;
    }
    
    .vip-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-tiers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .vip-badge-animated {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .vip-hero-stats {
        gap: 1.5rem;
    }
    
    .vip-stat-number {
        font-size: 1.75rem;
    }
    
    .vip-calculator-card {
        padding: 1.5rem;
    }
    
    .vip-cta-card {
        padding: 2rem;
    }
}