/* =========================================================
   STILURI PAGINA COMISIA SIGURANȚA CIRCULAȚIEI
========================================================= */
.comisia-siguranta-circulatie {
    padding: 20px;
    background-color: #f5f8fa;
}

.comisia-siguranta-circulatie h2 {
    font-size: 1.8rem;
    color: #1d4ed8;
    margin-bottom: 20px;
    font-weight: bold;
}

.comisia-siguranta-circulatie h3 {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 20px;
    font-weight: bold;
}

.comisia-siguranta-circulatie ul {
    margin-left: 20px;
    padding-left: 10px;
    font-size: 1rem;
}

.comisia-siguranta-circulatie ul li {
    margin-bottom: 8px;
    cursor: pointer;
}

.comisia-siguranta-circulatie .faq-item {
    margin-bottom: 10px;
}

.comisia-siguranta-circulatie .faq-icon {
    color: #22c55e;
}

.comisia-siguranta-circulatie .breadcrumb {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.comisia-siguranta-circulatie .breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.comisia-siguranta-circulatie .breadcrumb a:hover {
    text-decoration: underline;
}

/* Carduri pentru membrii comisiei */
.comisia-siguranta-circulatie .card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comisia-siguranta-circulatie .card h4 {
    margin-bottom: 10px;
    color: #1d4ed8;
}

.comisia-siguranta-circulatie .card p {
    margin: 0;
}

/* Efect hover pe carduri */
.comisia-siguranta-circulatie .card:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comisia-siguranta-circulatie h2 {
        font-size: 1.6rem;
    }

    .comisia-siguranta-circulatie h3 {
        font-size: 1.4rem;
    }

    /* Modificare layout pentru carduri pe mobil */
    .comisia-siguranta-circulatie .card {
        padding: 12px;
    }
}

/* =========================================================
   BREADCRUMB STILURI PENTRU COMISIA SIGURANȚEI CIRCULAȚIEI
========================================================= */
.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    background-color: transparent;
    padding: 10px 0;
}

.breadcrumb-item {
    color: #2563eb;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumb-item:hover {
    text-decoration: underline;
}

.breadcrumb-item.current {
    color: #6b7280;
}

.home-link svg {
    fill: #2563eb;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    margin: 0 5px;
    color: #2563eb;
}

/* GRID MEMBRI */
.comisia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

/* CARD MEMBRU */
.comisia-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 16px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

/* HOVER */
.comisia-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

/* NUME */
.comisia-card strong {
    display: block;
    color: #1d4ed8;
    font-size: 1rem;
}

/* SPECIALITATE */
.comisia-card span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* PRESEDINTE - highlight */
.comisia-card.president {
    border-left: 4px solid #22c55e;
    background: #f0fdf4;
}

/* BLOCKURI CONTINUT */
.info-block {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid #2563eb;
}

/* TITLU BLOCK */
.info-block h3 {
    margin-top: 0;
}

/* LISTA MODERNA */
.info-block ul {
    list-style: none;
    padding-left: 0;
}

.info-block ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}

.info-block ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 0.8rem;
}

/* highlight albastru */
.info-block.highlight {
    border-left: 4px solid #2563eb;
    background: #eff6ff;
}

/* highlight important */
.info-block.warning {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
}

/* text lead */
.lead {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 20px;
}

/* FLOW PACIENT */
.flow-pacient {
    margin-top: 30px;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.flow-step {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
}

/* NUMĂR PAS */
.step-number {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

/* HOVER */
.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* GHID URGENT */
.info-block.urgent {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
}

/* text mic */
.small-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 10px;
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    text-align: center;
}

/* TEXT */
.cta-box h3 {
    color: #ffffff; /* FORȚĂM alb */
    font-weight: 700;
}

.cta-box p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #e0e7ff;
}

/* BUTOANE */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #22c55e;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

.cta-box {
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

.cta-box h3 {
    color: #ffffff;
    font-size: 1.4rem;
}

.cta-box p {
    color: #dbeafe; /* mai deschis pentru contrast */
}

.cta-box h3 {
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.comisia-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.comisia-badge {
    margin: 8px 0 12px;
    margin-top: 4px;
}

/* =========================================================
   SEPARATOR SECȚIUNI
========================================================= */
.section-divider {
    border-top: 1px solid #e5e7eb;
    margin: 30px 0;
}

/* =========================================================
   SEPARATOR
========================================================= */
.section-divider {
    border-top: 1px solid #e5e7eb;
    margin: 28px 0;
}

/* =========================================================
   CARD HOVER EFFECT 🔥
========================================================= */
.card {
    transition: all 0.25s ease;
    border-radius: 12px;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* =========================================================
   INFO BLOCK HOVER (foarte subtil)
========================================================= */
.info-block {
    transition: all 0.2s ease;
}

.info-block:hover {
    transform: translateY(-2px);
}