/* Explain: Component styles for forms, cards, and other UI elements with an industrial feel. - */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .lead-form { gap: 0.75rem; }
    .lead-form .input { height: 2.75rem; min-height: 2.75rem; }
    .lead-form .btn { min-height: 2.9rem; }
}

/* Suprascriere globală pentru aspect industrial */
.input, .select, .textarea {
    border-radius: 4px !important;
}
.btn {
    border-radius: 4px !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.service-card {
    min-height: 100%;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--border-color);
    border-radius: var(--radius-xl);
    background: var(--surface-color);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-left-color: var(--accent-color);
    box-shadow: var(--shadow-card);
}

.service-icon {
    display: flex;
    height: 3.5rem;
    width: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.trust-pill {
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    gap: 0.75rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.review-card {
    margin: 0;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 0.9rem;
    border-radius: 4px;
    background: var(--surface-color);
    border-left: 4px solid var(--accent-color);
    padding: 1.75rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-soft);
}
.review-card p { margin: 0; line-height: 1.75; }
.review-card cite {
    margin-top: auto;
    display: block;
    padding-top: 0.25rem;
    color: var(--primary-color);
    font-style: normal;
    font-weight: 800;
}

.contact-tile {
    display: flex;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    transition: background 200ms ease;
}
.contact-tile:hover {
    background: rgba(255, 255, 255, 0.06);
}
.contact-tile h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-color);
}
.contact-tile p {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.status-success { background: rgba(21, 128, 61, 0.1); color: var(--success-color); }
.status-error { background: rgba(185, 28, 28, 0.1); color: var(--error-color); }