/* Pricing Page Styles */

.pricing-section {
    margin-bottom: 2rem;
}

.base-price-display {
    padding: 1.5rem;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 10px;
    text-align: center;
}

.feature-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    align-items: flex-start;
}

.feature-item.included {
    border-left: 3px solid #28a745;
}

.feature-check {
    color: #28a745;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-checkbox {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-checkbox:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 165, 250, 0.3);
}

.feature-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.feature-checkbox label {
    cursor: pointer;
    margin-bottom: 0;
    margin-left: 0.5rem;
}

.pricing-summary {
    background: rgba(96, 165, 250, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(96, 165, 250, 0.2);
}

/* Range Slider Styles */
.form-range {
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    outline: none;
    cursor: pointer;
}

.form-range::-webkit-slider-thumb {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-range::-moz-range-thumb {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.alert-info {
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: #f8f9fa;
}

.badge {
    font-size: 0.95rem;
    padding: 0.35rem 0.65rem;
}

.bg-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-summary {
        padding: 1.5rem;
    }

    .base-price-display {
        padding: 1rem;
    }

    .feature-checkbox {
        padding: 0.75rem;
    }
}
