/* ==========================================
   AGENT PRICING SECTION - Premium Design
   ========================================== */

.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.1), transparent 70%);
    pointer-events: none;
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.pricing-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.pricing-section .section-header p {
    color: var(--text-secondary, #94a3b8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* GST Badge */
.gst-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.gst-badge i {
    font-size: 0.9rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Pricing Card */
.pricing-card {
    background: rgba(30, 41, 59, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(99, 102, 241, 0.1);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Recommended Card */
.pricing-card.recommended {
    border-color: var(--neon-primary, #6366f1);
    background: rgba(99, 102, 241, 0.1);
    transform: scale(1.05);
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.recommended-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 0.4rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0 0 12px 12px;
}

/* Pricing Period */
.pricing-period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary, #94a3b8);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pricing Amount */
.pricing-amount {
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.pricing-amount .currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: #a5b4fc;
    vertical-align: super;
}

.pricing-amount .price {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #e0e7ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-amount .period {
    font-size: 0.9rem;
    color: var(--text-secondary, #94a3b8);
    font-weight: 500;
}

/* Discount Badge */
.discount-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Seat Info */
.seat-info {
    font-size: 0.85rem;
    color: var(--text-secondary, #94a3b8);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.seat-info i {
    color: #a5b4fc;
}

/* Pricing CTA */
.pricing-cta {
    margin-top: 1.5rem;
}

.pricing-cta .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 12px;
}

/* Pricing Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #34d399;
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .pricing-card.recommended {
        transform: scale(1);
        order: -1;
        grid-column: span 2;
    }
    
    .pricing-card.recommended:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 640px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-section .section-header h2 {
        font-size: 1.75rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .pricing-card.recommended {
        grid-column: span 1;
    }
    
    .pricing-amount .price {
        font-size: 2.25rem;
    }
    
    .recommended-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }
}

/* ==========================================
   PRICING TOGGLE (Optional)
   ========================================== */
.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.pricing-toggle {
    display: flex;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 100px;
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-toggle button {
    background: transparent;
    border: none;
    color: var(--text-secondary, #94a3b8);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-toggle button.active {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Payment Note */
.payment-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-note p {
    color: var(--text-secondary, #94a3b8);
    font-size: 0.9rem;
    margin: 0;
}

.payment-note i {
    color: #a5b4fc;
    margin-right: 0.5rem;
}
