/* =========================================
   VALUES PAGE STYLES
========================================= */

/* --- Hero Section --- */
.values-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 180px;
}

.values-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.7);
    z-index: 1;
}

.values-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.values-hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.values-hero__title span {
    position: relative;
    display: inline-block;
}

.values-hero__underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 15px;
    pointer-events: none;
}

.values-hero__underline path {
    stroke: #967259;
    stroke-width: 4;
    stroke-linecap: round;
    fill: none;
}

.values-hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Values Grid Section --- */
.values-section {
    padding: 100px 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

.value-item {
    display: flex;
    gap: 20px;
}

.value-item__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #967259 0%, #755541 100%);
    border-radius: 12px;
    color: white;
}

.value-item__icon svg {
    width: 24px;
    height: 24px;
}

.value-item__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.value-item__content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4B5563;
}

.value-item__content a {
    color: #967259;
    font-weight: 600;
    text-decoration: underline;
    font-size: 14px;
    display: inline-block;
    margin-top: 8px;
}

.value-item__content a:hover {
    color: #755541;
}

/* --- Image Banner Section --- */
.values-image-banner {
    position: relative;
    height: 400px;
    background-image: url('../images/sector-usines.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.values-image-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.4);
}

/* --- Commitment Section --- */
.values-commitment {
    padding: 100px 0;
    background-color: #F9FAFB;
}

.values-commitment__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.values-commitment__content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 24px;
}

.values-commitment__content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 20px;
}

.values-commitment__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.values-commitment__image img {
    width: 100%;
    height: auto;
}

/* --- CTA Section --- */
.values-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #967259 0%, #755541 100%);
    text-align: center;
    color: white;
}

.values-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.values-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.values-cta .btn {
    background-color: white;
    color: #967259;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.values-cta .btn:hover {
    background-color: #0F172A;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-commitment__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-hero__title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .values-hero__title {
        font-size: 36px;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
    }

    .value-item__icon {
        margin: 0 auto;
    }
}