
:root {
    --amber: #FFB400;
    --navy: #0F172A;
    --glass-bg: rgba(255, 255, 255, 0.1); /* Sticlă mai transparentă */
}


.italic-story {
    font-style: italic;
    color: #000 !important;
    font-size: 1.1rem;
    line-height: 1.7;
    border-left: 3px solid var(--amber);
    padding-left: 20px;
}
/* --- STIL FOTOGRAFIE (Initial Color -> Hover Grayscale) --- */
.main-image-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.business-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(0%); /* Începe colorat */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image-container:hover .business-img {
    filter: grayscale(100%); /* Devine alb-negru la hover */
    transform: scale(1.05);
}

/* --- BADGE STICLĂ SEMITRANSPARENT (AERO-GLASS) --- */
.aero-glass-badge {
    position: absolute;
    top: 40px;
    right: -20px;
    z-index: 10;
}

.glass-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 25px 35px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.glass-num {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.glass-label {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- BUSINESS CARDS & TEXT --- */
.header-business-card {
    border-left: 6px solid var(--amber);
    padding-left: 25px;
}

.corporate-stat-card {
    background: #fff;
    border: 1px solid #eef2f6;
    padding: 35px 25px;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}

.corporate-stat-card:hover {
    border-color: var(--amber);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.stat-icon-wrapper {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.stat-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    opacity: 0.04; /* Număr subtil pe fundal */
}

.btn-business-gold {
    background: var(--amber);
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.btn-business-gold:hover {
    background: var(--navy);
    color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 991.98px) {
    .business-img { height: 450px; }
    .aero-glass-badge { 
        position: relative; 
        top: 0; 
        right: 0; 
        margin: -60px 0 30px 20px; 
        width: fit-content; 
    }
}