/**
 * 🚨 CORRECTIONS URGENTES FEEDBACK UTILISATEUR 
 * Corrections spécifiques complémentaires
 */

/* 🎨 AMÉLIORATION CONTRASTE SECTION À PROPOS */
.about-section .value-item {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(170, 123, 76, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    border-radius: 32px !important;
}

.about-section .value-item:hover {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 2px solid rgba(170, 123, 76, 0.5) !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18) !important;
}

.about-section .value-item h3 {
    color: #1D1D1F !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.about-section .value-item p {
    color: #424245 !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.about-section .value-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    font-size: 24px !important;
    box-shadow: 0 4px 16px rgba(170, 123, 76, 0.3) !important;
}

/* 🌀 BORDER-RADIUS PLUS PRONONCÉS */
.testimonial-card,
.step,
.portfolio-item {
    border-radius: 32px !important;
}

.portfolio-image,
.photographer-img,
.hero img,
.carousel img {
    border-radius: 24px !important;
}

/* 🎯 SYSTÈME DE DESIGN HARMONISÉ : Border-radius cohérent */

/* Boutons premium avec nouveau système */
.btn-premium {
    border-radius: var(--radius-button, 28px) !important;
}

/* Navigation et CTA - Base desktop */
.pill-nav,
.pill-nav-cta {
    border-radius: var(--radius-button, 28px) !important;
}

/* 🎯 RESPONSIVE : Mobile standard (768px) */
@media (max-width: 768px) {
    .pill-nav,
    .pill-nav-cta {
        border-radius: var(--radius-button-mobile, 30px) !important;
    }
}

/* 🎯 RESPONSIVE : Mobile étroit (480px) */
@media (max-width: 480px) {
    .pill-nav {
        border-radius: var(--radius-button-small, 26px) !important;
    }
    
    .pill-nav-cta {
        border-radius: var(--radius-button, 28px) !important; /* CTA garde sa forme */
    }
}

/* 🚫 SUPPRESSION BARRES COLORÉES CONCEPT SECTION */
.step::before {
    display: none !important;
}

/* Hover simple sans animation bizarre */
.step:hover {
    border: 2px solid rgba(170, 123, 76, 0.3) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}
