/* Stiluri formular contact (Bootstrap se încarcă separat, local) */
/* Dacă Bootstrap lipsește, clasele .alert nu există — stil minim pentru mesajul de eroare */
body .alert.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #664d03;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 788px;
    width: 100%;
    margin-top: 50px;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}
.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0 !important;
    padding: 2rem;
    text-align: center;
}
.card-header h1 {
    font-size: 1.75rem;
    line-height: 1.4;
}
.card-header p {
    font-size: 1.05rem;
    line-height: 1.6;
}
.card-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #653a91 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.form-label {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 0.5rem;
}
.form-control,
.form-control:focus {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
textarea.form-control {
    min-height: 8rem;
    padding: 1rem;
}
.card-body .mb-3 {
    margin-bottom: 1.5rem !important;
}
.nav-band {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.nav-band .filter-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}
.filter-radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.filter-radio label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: white;
    font-size: 1.05rem;
    line-height: 2;
}
.nav-band input[type="radio"] {
    accent-color: white;
    width: 1.15rem;
    height: 1.15rem;
}
.nav-band .filter-radio label:hover {
    opacity: 0.9;
}
.domain-selection-hint:not([hidden]) {
    line-height: 1.45;
    color: #c62828;
    font-style: italic;
}

.domain-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}
.btn-domain.hidden {
    display: none;
}
.btn-domain {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #333;
    padding: 0.3rem 0.85rem;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-domain:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}
.btn-domain.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}
.btn-domain sub {
    color: #667eea;
    font-size: 0.68em;
    font-weight: bold;
    line-height: 1;
}
.btn-domain.active sub {
    color: white;
}
