/* ==================================================
   About Us - CHIEP Values (Calidad, Honestidad, Innovación, Empatía, Pasión)
   Vertical stacked pills with initial letters
   ================================================== */

/* Values Section Title */
.values-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #183544;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.3px;
}

.values-chiep-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.value-chiep-pill {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(24, 53, 68, 0.1);
    border-radius: 12px;
    padding: 25px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-chiep-pill:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(24, 53, 68, 0.15);
    border-color: #e1c126;
}

/* Letter Circle */
.value-chiep-letter {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #183544 0%, #2a4d5e 100%);
    color: #e1c126;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin-right: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(24, 53, 68, 0.2);
}

.value-chiep-pill:hover .value-chiep-letter {
    background: linear-gradient(135deg, #e1c126 0%, #f0d04f 100%);
    color: #183544;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(225, 193, 38, 0.4);
}

/* Content Area */
.value-chiep-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.value-chiep-title {
    font-size: 20px;
    font-weight: 700;
    color: #183544;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.value-chiep-description {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Stagger animation for pills */
.value-chiep-pill:nth-child(1) {
    animation: slideInLeft 0.6s ease-out 0.1s both;
}

.value-chiep-pill:nth-child(2) {
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.value-chiep-pill:nth-child(3) {
    animation: slideInLeft 0.6s ease-out 0.3s both;
}

.value-chiep-pill:nth-child(4) {
    animation: slideInLeft 0.6s ease-out 0.4s both;
}

.value-chiep-pill:nth-child(5) {
    animation: slideInLeft 0.6s ease-out 0.5s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Quality Policy Banner */
.quality-policy-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e1c126;
    border-radius: 12px;
    padding: 40px 50px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out;
}

.quality-policy-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(24, 53, 68, 0.15);
}

.quality-policy-banner .icon-large {
    font-size: 50px;
    color: #183544;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.quality-policy-banner:hover .icon-large {
    color: #e1c126;
    transform: scale(1.1);
}

.quality-policy-banner h4 {
    font-size: 22px;
    font-weight: 600;
    color: #183544;
    margin-bottom: 20px;
}

.quality-policy-banner .btn-primary {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quality-policy-banner .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(24, 53, 68, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .value-chiep-pill {
        padding: 20px;
    }
    
    .value-chiep-letter {
        width: 50px;
        height: 50px;
        font-size: 26px;
        margin-right: 20px;
    }
    
    .value-chiep-title {
        font-size: 18px;
    }
    
    .value-chiep-description {
        font-size: 14px;
    }

    .quality-policy-banner {
        padding: 30px 25px;
    }

    .quality-policy-banner .icon-large {
        font-size: 40px;
    }

    .quality-policy-banner h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .value-chiep-pill {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .value-chiep-letter {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .quality-policy-banner {
        padding: 25px 20px;
    }
}
