﻿/* Island Gigs Pricing Styles - Blazor/Radzen Compatible */

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    font-weight: 300;
}

.toggle-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-btn {
    min-width: 150px;
    padding: 0.75rem 2rem !important;
    font-size: 1.1rem !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.toggle-btn:not(.active) {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid white !important;
    color: white !important;
}

.toggle-btn.active {
    background: white !important;
    color: #667eea !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
    transform: scale(1.05);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    position: relative;
    padding: 2.5rem 2rem !important;
    border-radius: 20px !important;
    transition: all 0.3s ease;
    background: white !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
}

.pricing-card.featured {
    border: 3px solid #667eea !important;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 20px 0 0 20px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.popular-badge i {
    color: #ff6b00;
}

.savings-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px 0 0 20px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 3px 15px rgba(76, 175, 80, 0.4);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #666;
    font-size: 1rem;
}

.price-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    line-height: 1;
}

.price span {
    font-size: 1.2rem;
    color: #999;
    font-weight: 400;
}

.plan-limit {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.features-list {
    margin: 2rem 0;
    min-height: 300px;
}

.feature-item {
    display: flex;
    color:darkslateblue;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item.highlight {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1), transparent);
    padding: 0.75rem;
    border-radius: 8px;
    border-bottom: none;
}

.check-icon {
    color: #4CAF50;
    font-size: 1.3rem;
}

.feature-item i.rzi-lock {
    color: #ff9800;
    font-size: 1.3rem;
}

.cta-button {
    width: 100%;
    padding: 1rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    margin-top: 1.5rem;
    transition: all 0.3s ease !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
}

.pricing-footer {
    margin-top: 3rem;
}

.pricing-footer .rz-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
}

.footer-item i {
    font-size: 1.5rem;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .toggle-container {
        flex-direction: column;
        align-items: stretch;
    }

    .toggle-btn {
        width: 100%;
    }

    .price {
        font-size: 2.5rem;
    }

    .popular-badge,
    .savings-badge {
        right: 0;
        border-radius: 20px;
        top: 10px;
    }
}

/* Radzen Theme Overrides */
.rz-card.pricing-card .rz-stack {
    width: 100%;
}

.pricing-card .rz-button {
    text-transform: none !important;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}