/* --- 1. Main Banner Section --- */
.values-main-section {
    position: relative;
    width: 100%;
    min-height: 70vh; /* Chiều cao banner lớn */
    background-size: cover;
    background-position: center left; /* Căn ảnh nền sang trái để lấy hình cô gái */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.values-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 15px;
}

.values-col-empty {
    flex: 1; /* Phần bên trái để trống */
}

.values-col-content {
    flex: 1; /* Phần nội dung bên phải */
    text-align: right;
    padding-left: 20px;
}

/* --- Typography --- */
.values-subtitle {
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 2px;
    color: #ccafa5; /* Màu hồng be nhạt */
    margin-bottom: 20px;
    text-transform: uppercase;
}

.values-title {
    font-size: 55px;
    font-weight: 400;
    line-height: 1.3;
    color: #eac086; /* Màu vàng kim */
    margin-bottom: 30px;
    text-transform: uppercase;
}

.values-origin {
    font-size: 16px;
    color: #eac086;
    margin-bottom: 30px;
}

.values-origin p {
    margin: 0;
    font-weight: 300;
}

.values-origin strong {
    font-size: 18px;
    font-weight: bold;
}

/* Badge Tròn */
.values-badge img {
    width: 90px;
    height: auto;
    border-radius: 50%;
    border: 2px solid #fff;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* --- 2. Bottom Bar (Nền vàng nâu) --- */
.values-bottom-bar {
    width: 100%;    
    background-color: #B69770; /* Màu nền giống hình mẫu */
    padding: 15px 0;
}

.values-features-track {
    display: flex;
    justify-content: center;
    gap: 100px; /* Khoảng cách giữa các icon */
    align-items: center;
}

.values-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon img {
    width: 70px; /* Kích thước icon SVG */
    height: 70px;
    object-fit: contain;
    /* Nếu icon màu đen muốn chuyển sang nâu đậm, có thể dùng filter CSS, nhưng tốt nhất là dùng SVG đúng màu */
}

.feature-text {
    font-size: 16px;
    font-weight: bold;
    color: #3e2b26; /* Màu chữ nâu đậm */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Responsive Mobile (Tối ưu nhỏ lại & Căn lề) --- */
@media (max-width: 992px) {
    /* 1. Giảm chiều cao banner */
    .values-main-section {
        min-height: 400px; 
        background-position: center center; 
        align-items: center; /* Căn giữa dọc */
        padding-bottom: 40px;
    }
    
    /* 2. Tăng độ phủ tối bên phải để chữ rõ hơn */
    .values-overlay {
        width: 100%;
        background: linear-gradient(to left, rgba(40, 0, 0, 0.95) 0%, rgba(40, 0, 0, 0.6) 60%, transparent 100%);
        height: 100%;
    }
    
    .values-container {
        flex-direction: column;
    }
    
    .values-col-empty { display: none; }
    
    /* 3. Đẩy chữ sang phải (Vùng màu nâu) */
    .values-col-content {
        text-align: right; /* Căn lề phải để khớp với vùng trống bên phải */
        padding-left: 40%; /* Đẩy khối chữ sang phải 40%, chừa 40% bên trái cho hình người */
        padding-right: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    /* 4. Giảm kích thước chữ */
    .values-subtitle {
        font-size: 14px; 
        margin-bottom: 8px;
        letter-spacing: 1px;
    }

    .values-title {
        font-size: 24px; 
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .values-origin {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .values-origin strong {
        font-size: 14px;
    }

    /* 5. Giảm kích thước Logo Badge */
    .values-badge img {
        width: 70px; 
        /* Căn badge sang phải theo text-align: right của cha */
        display: inline-block; 
    }

    /* --- Bottom Bar Mobile --- */
    .values-bottom-bar {
        padding: 25px 0;
    }

    .values-features-track {
        flex-direction: row; 
        flex-wrap: wrap; 
        gap: 20px; 
        justify-content: center;
        padding-left: 0;
    }
    
    .values-feature-item {
        flex-direction: column; 
        gap: 8px;
        width: 30%; 
        min-width: 80px;
        text-align: center;
    }

    .feature-icon img {
        width: 35px; 
        height: 35px;
    }

    .feature-text {
        font-size: 12px; 
    }
}

/* --- Animation Classes --- */
.animate-values {
    opacity: 0;
    will-change: transform, opacity;
    transition: all 0.8s ease-out;
}

.values-visible .animate-values {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.from-right { transform: translateX(50px); }
.from-bottom { transform: translateY(30px); }
.from-zoom { transform: scale(0.5); }

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }