/* pricing.css - Styling for subscription plans */

.pricing-section {
    background: #f8f9fa;
    border-radius: 25px;
    padding: 40px;
    margin-top: 60px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
    color: #1a56db;
    font-size: 32px;
    margin-bottom: 10px;
}

.pricing-header p {
    color: #666;
    font-size: 16px;
}

/* Billing Toggle Buttons */
.billing-toggle-container {
    display: inline-flex;
    background: white;
    border-radius: 50px;
    padding: 5px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.billing-toggle {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.billing-toggle.monthly {
    background: #1a56db;
    color: white;
}

.billing-toggle.annual {
    background: transparent;
    color: #666;
}

.billing-toggle.annual:hover {
    background: #eef2ff;
}

.save-badge {
    background: #059669;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    margin-left: 5px;
}

/* Plan Cards Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Individual Plan Card */
.plan-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.plan-card.free {
    border: 1px solid #e5e7eb;
}

.plan-card.basic {
    border: 1px solid #e5e7eb;
}

.plan-card.premium {
    border: 2px solid #f59e0b;
}

.plan-card.enterprise {
    border: 2px solid #8b5cf6;
}

/* Plan Badges */
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.plan-badge.popular {
    background: #1a56db;
    color: white;
}

.plan-badge.best-seller {
    background: #f59e0b;
    color: white;
}

.plan-badge.enterprise {
    background: #8b5cf6;
    color: white;
}

/* Plan Icon */
.plan-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Plan Name */
.plan-name {
    margin-bottom: 15px;
}

.plan-name.free { color: #6b7280; }
.plan-name.basic { color: #1a56db; }
.plan-name.premium { color: #f59e0b; }
.plan-name.enterprise { color: #8b5cf6; }

/* Price Container */
.price-container {
    margin: 20px 0;
}

.price-amount {
    font-size: 36px;
    font-weight: bold;
    color: #059669;
}

.price-period {
    color: #666;
    font-size: 14px;
}

.usd-equivalent {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.savings {
    color: #059669;
    font-size: 12px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
}

.features-list i {
    color: #059669;
    margin-right: 10px;
}

/* Buttons */
.btn-plan {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-plan.free {
    border: 2px solid #6b7280;
    color: #6b7280;
}

.btn-plan.basic {
    border: 2px solid #1a56db;
    color: #1a56db;
}

.btn-plan.premium {
    border: 2px solid #f59e0b;
    color: #f59e0b;
}

.btn-plan.enterprise {
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
}

.btn-plan:hover {
    transform: scale(1.02);
}

.btn-plan.free:hover { background: #6b7280; color: white; }
.btn-plan.basic:hover { background: #1a56db; color: white; }
.btn-plan.premium:hover { background: #f59e0b; color: white; }
.btn-plan.enterprise:hover { background: #8b5cf6; color: white; }

/* Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 20px;
    }
    .pricing-header h2 {
        font-size: 28px;
    }
    .billing-toggle {
        padding: 8px 20px;
        font-size: 14px;
    }
    .plan-card {
        padding: 20px;
    }
    .price-amount {
        font-size: 28px;
    }
}
