/* ============================================
   SECTION À PROPOS - STYLE PREMIUM
   ============================================ */

.about_section_enhanced {
    position: relative;
    padding: 80px 0 !important;
}

@media (max-width: 768px) {
    .about_section_enhanced {
        padding: 60px 0 !important;
    }
}

/* ============================================
   FORMES DÉCORATIVES D'ARRIÈRE-PLAN
   ============================================ */

.decorative-shapes .shape {
    animation: floatShape 10s ease-in-out infinite;
}

.decorative-shapes .shape-1 {
    animation-delay: 0s;
}

.decorative-shapes .shape-2 {
    animation-delay: 2s;
    animation-duration: 12s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) rotate(5deg) scale(1.05);
    }
    66% {
        transform: translateY(-15px) rotate(-3deg) scale(0.98);
    }
}

/* ============================================
   IMAGE SECTION AMÉLIORÉE
   ============================================ */

.about_thumb_enhanced {
    position: relative;
    z-index: 1;
}

/* Wrapper d'image avec cadre moderne */
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about_thumb_enhanced:hover .image-wrapper {
    transform: translateY(-10px);
}

.about_thumb_enhanced:hover .image-wrapper::before {
    opacity: 0.15;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about_thumb_enhanced:hover .image-wrapper img {
    transform: scale(1.05);
}

/* Overlay décoratif */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about_thumb_enhanced:hover .image-overlay {
    opacity: 1;
}

/* ============================================
   BADGE FLOTTANT
   ============================================ */

.floating-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.badge-content {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    text-align: center;
    min-width: 120px;
}

.badge-content i {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.badge-content span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   CARTE DE STATISTIQUES
   ============================================ */

.stats-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 30px;
    z-index: 10;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

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

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 5px 0;
    line-height: 1;
}

.stat-item span {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* ============================================
   CONTENU SECTION
   ============================================ */

.about_content_enhanced {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .about_content_enhanced {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* Badge Premium */
.badge-premium {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.badge-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Titre avec gradient */
.about-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #333 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0 25px 0;
    line-height: 1.2;
    position: relative;
}

.about-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin-top: 15px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }
}

/* Description */
.about-description {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
}

/* ============================================
   LISTE AMÉLIORÉE AVEC ICÔNES
   ============================================ */

.about_list_enhanced {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.about_list_enhanced li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeInListItem 0.6s ease-out forwards;
}

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

.about_list_enhanced li .icon-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.about_list_enhanced li:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.5);
}

.about_list_enhanced li .icon-wrapper i {
    color: white;
    font-size: 12px;
}

.about_list_enhanced li span {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    font-weight: 500;
}

/* ============================================
   BOUTON CTA MODERNE
   ============================================ */

.btn-about-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-about-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-about-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-about-enhanced:hover::before {
    width: 100%;
}

.btn-about-enhanced i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-about-enhanced:hover i {
    transform: translateX(5px);
}

/* ============================================
   SÉPARATEUR DÉCORATIF
   ============================================ */

.decorative-divider {
    margin-top: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
    border-radius: 2px;
    opacity: 0.3;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .stats-card {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
    
    .floating-badge {
        right: 20px;
        top: -15px;
    }
    
    .badge-content {
        padding: 15px;
        min-width: 100px;
    }
    
    .badge-content i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .stats-card {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .stat-item h3 {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .about_list_enhanced li span {
        font-size: 15px;
    }
    
    .btn-about-enhanced {
        width: 100%;
        justify-content: center;
    }
}

