body {
    background: #050505;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.container {
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
}

.card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

h1 {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
}

input[type="email"],
input[type="text"] {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

input::placeholder {
    color: #444;
    opacity: 1;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: #e2252b;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-primary:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-error {
    background: rgba(255, 0, 85, 0.1);
    color: #ff0055;
    border: 1px solid rgba(255, 0, 85, 0.2);
}

.alert-success {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.quote-item {
    background: #000;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.quote-item:hover {
    border-color: #e2252b;
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-pending {
    background: #332b00;
    color: #ffcc00;
}

.status-sent {
    background: #00331a;
    color: #00ff80;
}

.parts-list {
    font-size: 0.85rem;
    color: #aaa;
    list-style: none;
    padding: 0;
}

.parts-list li {
    margin-bottom: 5px;
    display: flex;
    gap: 10px;
}

/* Process Steps Card */
.process-card {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border: 1px solid rgba(226, 37, 43, 0.2);
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 12px;
}

.process-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #e2252b;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

.step-item:hover {
    background: rgba(226, 37, 43, 0.05);
    border-color: rgba(226, 37, 43, 0.3);
}

.step-number {
    width: 24px;
    height: 24px;
    background: #e2252b;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.step-icon {
    color: #fff;
    margin-bottom: 10px;
}

.step-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .step-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 15px;
    }
    .step-number { margin-bottom: 0; }
    .step-icon { margin-bottom: 0; }
}