/* =========================================================
HERO FINAL FIX
========================================================= */

.hero{
    position:relative;

    min-height:500px;
    display:flex;
    align-items:center;

    margin-bottom:60px;

    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('/assets/images/spital-hero.jpg') center/cover no-repeat;

    color:#fff;
}

/* TEXT */
.hero h1{
    color:#fff;
}

.hero p{
    color:rgba(255,255,255,0.9);
}

/* =========================================================
   HERO TITLE OVERRIDE
========================================================= */

.home-hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.home-hero .hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* =========================================================
   HERO BADGE (nume spital)
========================================================= */

.hero .hero-badge {
    font-size: 24px;      /* 🔥 creștem vizibil */
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.95;
}

/* =========================================================
CTA SPACING (HOME)
========================================================= */

.home-cta{
    margin-bottom:60px;
}

<!-- TRUST BAR -->

.hero-trust{
    margin: 20px auto 40px; /* sus + jos */
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 15px;
    opacity: 0.9;
}

.hero-trust span{
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 999px;
}

.hero-trust{ margin-bottom:40px; }

.hero-trust + .cards-section{
    margin-top: 40px;
}

/* =========================================================
LIMITARE REVIEW 2 RANDURI (HOME)
========================================================= */
.review-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-date {
    font-size: 13px;
    color: #888;
    margin-top: 6px;
}

.review-author {
    font-weight: 500;
}

.review-author .review-date {
    font-weight: normal;
    color: #999;
    margin-left: 6px;
    font-size: 12px;
}

.review-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-text {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* default: 2 rânduri */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 🔥 HOVER → text complet */
.review-card:hover .review-text {
    -webkit-line-clamp: unset;
}

/* mic efect vizual */
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.review-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* hover expand */
.review-card:hover .review-text {
    -webkit-line-clamp: unset;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.review-author {
    font-weight: 500;
}

.review-date {
    font-size: 12px;
    color: #999;
    margin-left: 6px;
}