/* valuation.css */
body {
    background-color: #f4f6f9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.premium-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
}

.gradient-text {
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sim-input {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.sim-input:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.btn-primary {
    background: linear-gradient(45deg, #0d6efd, #0b5ed7);
    border: none;
}

.price-text {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.analysis-list .list-group-item {
    font-size: 0.95rem;
    border-color: #f0f0f0;
}

.analysis-list .list-group-item:last-child {
    border-bottom: none;
}

.valuation-result {
    border-radius: 20px;
}

.sim-badge {
    background: linear-gradient(135deg, #dc3545, #ff5d5d);
    color: #fff;
    padding: 14px 28px;
    font-size: 24px;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.estimated-price {
    font-size: 42px;
    font-weight: 800;
    color: #198754;
    margin-bottom: 5px;
}

.sim-analysis {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.analysis-item {
    background: #f8f9fa;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
}

.analysis-item i {
    margin-right: 8px;
}

.seo-content {
    line-height: 1.9;
}

.seo-content p {
    margin-bottom: 14px;
    color: #444;
}

.seo-content strong {
    color: #dc3545;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2.2rem;
    }
    .sim-input {
        font-size: 1.2rem;
    }
}
