/* RESET ȘI PROTECȚIE SCROLL ORIZONTAL */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden; /* Esențial pentru a nu avea stânga-dreapta */
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.premium-evolution {
    background-color: #ffffff;
    padding: 100px 0;
    width: 100%;
}

.evo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* GRID-UL PRINCIPAL */
.evo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Două coloane egale */
    gap: 80px;
    align-items: start; /* Permite coloanei sticky să funcționeze */
}

/* COLOANA STÂNGĂ */
.evo-header {
    margin-bottom: 80px;
}

.evo-tag {
    color: #c5a059;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.evo-title {
    font-size: 3.5rem;
    color: #0a192f;
    line-height: 1.1;
    margin: 20px 0;
}

.evo-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 500px;
}

/* CARDURILE DINAMICE */
.evo-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 30px; /* Margini rotunjite premium */
    padding: 25px;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.evo-card:hover {
    transform: translateY(-10px);
    border-color: #c5a059;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.evo-card-img {
    width: 100%;
    height: 300px;
    border-radius: 20px; /* Imagine rotunjită conform cerinței */
    overflow: hidden;
    margin-bottom: 25px;
}

.evo-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.evo-card:hover .evo-card-img img {
    transform: scale(1.08);
}

.evo-year {
    background: #0a192f;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.evo-card-body h3 {
    margin: 20px 0 10px;
    font-size: 1.7rem;
    color: #0a192f;
}

.evo-card-body p {
    color: #4a5568;
    line-height: 1.7;
}

/* COLOANA DREAPTĂ (STICKY) */
.evo-sticky-side {
    position: relative;
    height: 100%; /* Ocupă toată înălțimea coloanei stângi */
}

.sticky-inner {
    position: -webkit-sticky; /* Suport Safari */
    position: sticky;
    top: 50px; /* Distanța de sus când devine fixă */
    height: auto;
}

.visual-premium {
    width: 100%;
    height: 650px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.visual-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Elemente de decor peste imaginea fixă */
.status-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255,255,255,0.9);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.experience-tag {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #c5a059;
    color: white;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
}

.experience-tag strong { font-size: 2.5rem; display: block; }

/* RESPONSIVE (MOBIL) */
@media (max-width: 1024px) {
    .evo-grid {
        grid-template-columns: 1fr; /* O singură coloană pe mobil */
    }
    
    .evo-sticky-side {
        display: none; /* Ascundem partea fixă pe mobil pentru fluiditate */
    }
    
    .evo-title {
        font-size: 2.5rem;
    }

    .evo-container {
        padding: 0 20px;
    }
}