/* --- BUDGET ESTIMATOR SPECIFIC STYLES --- */

.estimator-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.estimator-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

/* Premium Clickable Blocks */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.option-block {
    background: #f8f9fa;
    border: 2px solid transparent;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.option-block i {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.option-block h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.option-block.active {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.option-block.active i, .option-block.active h4 {
    color: var(--accent);
}

/* Elegant Summary Card */
.result-card {
    background: var(--primary-dark);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.result-card h3 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.estimated-price {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.estimated-price span {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 10px;
}

/* --- ADMIN PANEL SPECIFIC STYLES --- */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #111;
    color: #eee;
}

.admin-sidebar {
    width: 280px;
    background: #1a1a1a;
    padding: 40px 20px;
    border-right: 1px solid #333;
}

.admin-main {
    flex: 1;
    padding: 50px;
    overflow-y: auto;
}

.admin-card {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #333;
    margin-bottom: 30px;
}

.admin-form .form-group {
    margin-bottom: 25px;
}

.admin-form label {
    display: block;
    color: #999;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.admin-form input, .admin-form select, .admin-form textarea {
    width: 100%;
    background: #ffbebe;
    border: 1px solid #444;
    padding: 15px;
    border-radius: 8px;
    color: #000000;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.admin-form input:focus {
    border-color: var(--accent);
    outline: none;
}
