﻿<!--

===== CSS ADIȚIONAL PENTRU PAGINA DESPRE NOI ===== -->

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #eaf1fb 0%, #f4f7fb 100%);
    padding: 80px 0 60px;
    position: relative;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--ss-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--ss-muted);
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: rgba(30, 91, 184, 0.1);
    color: var(--ss-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.lead-text {
    font-size: 18px;
    color: var(--ss-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Stats Boxes */
.stat-box {
    text-align: center;
    padding: 20px 10px;
    background: var(--ss-light);
    border-radius: 12px;
    border-left: 4px solid var(--ss-accent);
}

    .stat-box h3 {
        font-size: 32px;
        font-weight: 800;
        color: var(--ss-primary);
        margin-bottom: 5px;
    }

    .stat-box p {
        font-size: 13px;
        color: var(--ss-muted);
        margin: 0;
        font-weight: 500;
    }

/* About Image */
.about-image-wrapper {
    position: relative;
}

    .about-image-wrapper img {
        width: 100%;
        height: auto;
    }

.floating-badge {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

    .floating-badge.top {
        top: 20px;
        left: -20px;
    }

    .floating-badge.bottom {
        bottom: 20px;
        right: -20px;
    }

    .floating-badge i {
        font-size: 24px;
        color: var(--ss-accent);
        width: 45px;
        height: 45px;
        background: rgba(245, 166, 35, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .floating-badge strong {
        display: block;
        color: var(--ss-dark);
        font-size: 14px;
    }

    .floating-badge small {
        color: var(--ss-muted);
        font-size: 12px;
    }

/* Strength Cards (Puncte Forte) */
.strength-card {
    background: #fff;
    padding: 35px 28px;
    border-radius: 16px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

    .strength-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-color: var(--ss-primary);
    }

.strength-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.strength-card:hover .strength-icon {
    transform: rotate(-5deg) scale(1.1);
}

.strength-icon i {
    font-size: 32px;
}

.bg-primary-light {
    background: rgba(30, 91, 184, 0.12);
}

    .bg-primary-light i {
        color: var(--ss-primary);
    }

.bg-accent-light {
    background: rgba(245, 166, 35, 0.15);
}

    .bg-accent-light i {
        color: var(--ss-accent);
    }

.strength-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ss-dark);
    margin-bottom: 12px;
}

.strength-card > p {
    color: var(--ss-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.strength-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .strength-list li {
        padding: 6px 0;
        font-size: 14px;
        color: var(--ss-text);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .strength-list li i {
            color: #10b981;
            font-size: 12px;
            background: rgba(16, 185, 129, 0.1);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

/* Mission Cards */
.mission-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 16px;
    height: 100%;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

    .mission-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, var(--ss-primary), var(--ss-accent));
    }

    .mission-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ss-primary), var(--ss-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .mission-icon i {
        font-size: 26px;
        color: #fff;
    }

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ss-dark);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--ss-muted);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Value Cards */
.value-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border: 2px solid transparent;
}

    .value-card:hover {
        border-color: var(--ss-accent);
        transform: translateY(-5px);
    }

    .value-card i {
        font-size: 40px;
        color: var(--ss-accent);
        margin-bottom: 15px;
    }

    .value-card h5 {
        font-size: 18px;
        font-weight: 700;
        color: var(--ss-dark);
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 13px;
        color: var(--ss-muted);
        margin: 0;
    }

/* Team Cards */
.team-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--ss-primary), var(--ss-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.team-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--ss-dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--ss-primary);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Buton light outline custom pentru CTA */
.btn-light-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

    .btn-light-outline-custom:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        color: #fff;
    }

/* Responsive */
@media (max-width: 991px) {
    .floating-badge.top {
        left: 10px;
    }

    .floating-badge.bottom {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .floating-badge {
        padding: 10px 15px;
    }

        .floating-badge i {
            width: 35px;
            height: 35px;
            font-size: 18px;
        }

    .stat-box h3 {
        font-size: 24px;
    }

    .section-title.text-start {
        text-align: center !important;
    }
}
.about-image-box {
    width: 100%;
    height: 450px; /* înălțime fixă pentru aspect uniform */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* umple containerul, decupează excesul */
    object-position: center; /* centrează imaginea */
    display: block;
    transition: transform 0.5s ease;
}

.about-image-box:hover .about-image {
    transform: scale(1.05); /* efect zoom subtil la hover */
}

/* Responsive */
@media (max-width: 991px) {
    .about-image-box {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .about-image-box {
        height: 280px;
    }
}