/* ========================================
   ABOUT.CSS - Page about.html uniquement
   ======================================== */

.about-page {
    padding: 48px 0;
    background: #ffffff;
}

.about-page .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-page .about-image {
    width: 100%;
    height: 620px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow-hover);
}

.about-page .about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    transition: transform 0.5s ease;
}

.about-page .about-image:hover img {
    transform: scale(1.03);
}

.about-page .about-content h2 {
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
}

.about-page .about-content p {
    margin-bottom: 18px;
    color: var(--gray);
    font-size: 16px;
}

.about-page .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.about-page .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8fafc;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-page .feature-item:hover {
    background: var(--blue);
    transform: translateX(5px);
}

.about-page .feature-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--green);
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
}

.about-page .feature-item span {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.about-page .feature-item:hover i,
.about-page .feature-item:hover span {
    color: #ffffff;
}

/* ===== VALUES ===== */

.values-section {
    margin-top: 80px;
}

.values-section h2 {
    margin-bottom: 40px;
    color: var(--blue);
    text-align: center;
    font-size: 36px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.value-card i {
    margin-bottom: 20px;
    color: var(--green);
    font-size: 80px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--blue);
    font-size: 24px;
}

.value-card p {
    color: var(--gray);
}

@media (max-width: 991px) {
    .about-page .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-page .about-image {
        height: 560px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 35px 0;
    }

    .about-page .about-image {
        height: 480px;
    }

    .about-page .about-content h2 {
        font-size: 32px;
    }

    .about-page .about-features,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-page .about-image {
        height: 400px;
    }

    .about-page .about-content h2 {
        font-size: 28px;
    }

    .value-card i {
        font-size: 55px;
    }
}