@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Boogaloo&display=swap');

*
{
    font-family: 'Poppins', sans-serif;
}
.background-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
.bgcircles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

/* Coins - Cercles coupés */
.circle.top-left {
    width: 250px;
    height: 250px;
    background: rgba(255, 165, 0, 0.5);
    top: -100px;
    left: -100px;
    z-index:3 ;
}

.circle.top-right {
    width: 250px;
    height: 250px;
    background: rgba(255, 140, 0, 0.5);
    top: -100px;
    right: -100px;
}

.circle.center1
{
    width: 500px;
    height: 500px;
    background: rgba(237, 151, 30, 0.1);
    top: 35%;
    left: 15%;
}
.circle.center2
{
    width: 500px;
    height: 500px;
    background: rgba(231, 122, 13, 0.1);
    top: 35%;
    left: 45%;
}
.circle.bottom-left {
    width: 240px;
    height: 240px;
    background: linear-gradient(rgb(220, 167, 69) , rgb(28, 238, 175));
    bottom: -100px;
    left: -100px;
}

.circle.bottom-right {
    width: 240px;
    height: 240px;
    background: linear-gradient(rgb(220, 167, 69) , rgb(28, 238, 175));
    bottom: -100px;
    right: -100px;
    
}

.circle.center {
    width: 300px;
    height: 300px;
    background: rgba(255, 160, 50, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(30px);
}

.main-background {
    width: 100%;
    height: 60vh;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
}

header {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(245, 167, 65, 0.3);
    width: 100%;
    height: 70px;
    z-index: 100;
    padding: 0 20px;
    position: fixed; width:100%; top : 0; border-radius:none;
}

.containr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    height: 50px;
    margin-right: 12%;
    margin-top: -1%;
}

.logo:hover
{
    cursor: pointer;
}

nav {
    display: flex;
    gap: 5px;
}

nav a {
    text-decoration: none;
    color: rgb(233, 161, 27);
    font-size: 13px;
    display: flex;
    align-items: center;
    padding: 12px 18px;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

nav a i {
    font-size: 16px;
    margin-right: 8px;
    color: black;
}

nav a span {
    font-family: 'Poppins', sans-serif;
}

nav a.active,
nav a:hover {
    background: linear-gradient(135deg, #f5a741, #e6a86b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 167, 65, 0.4);
}

nav a.active i,
nav a:hover i {
    color: white;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-btn {
    color: black;
    padding: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.account-btn i{
    font-size: 25px;
}

.account-btn:hover {
    transform: translateY(-2px);
}

.language-selector select {
    margin-right: 2%;
    border: none;
    padding: 8px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.language-selector select:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(245, 167, 65, 0.3);
}

.containr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.bottom-nav a {
    text-decoration: none;
    color: #f5a741;
    display: flex;
    align-items: center;
    font-size: 12px;
    transition: 0.3s;
    padding: 8px 15px;
    border-radius: 10px;
    position: relative;
    gap: 5px;
}

.bottom-nav a i {
    font-size: 20px;
    color: black;
    transition: 0.3s;
}

.bottom-nav a span {
    display: none;
    margin-right: 10px; 
    margin-top: 7px;
    font-weight: bold;
}

.bottom-nav a.active span {
    display: inline;
    font-size: 14px;
}

.bottom-nav a span,
.bottom-nav a i {
    transition: all 0.3s ease-in-out;
}
.bottom-nav a span {
    display: none;
}

.bottom-nav a.active span {
    display: inline;
}

.bottom-nav a.active i{
    color: #f5a741;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    .bottom-nav {
        display: flex;
        z-index: 10;

    }
    .logo
    {
      width: 100%;
    }

    .main-background
    {
        height: 40vh;
    }
}
@media (min-width: 768px) {
    .bottom-nav {
        display: none;
    }
    
}

.main-text {
    font-family: 'Poppins', sans-serif;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: black;
    font-size: clamp(16px, 4vw, 30px);
    line-height: 1.4;
    letter-spacing: 0.05em;
    max-width: 45%;
}

.main-text span {
    display: block;
    margin-bottom: 5px;
}

.line1 {
    transform: translateX(0);
}

.line2 {
    transform: translateX(20px);
}

.line3 {
    transform: translateX(40px);
}

.section-title {
            text-align: center;
            margin: 5px  0 10px 0;
            position: relative;
}

        .section-title h2 {
            left: 0%;
            font-size: 2.5em;
            font-weight: 700;
            background: linear-gradient(135deg, #f5a741, #e6a86b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #f5a741, #e6a86b);
            border-radius: 2px;
        }

.section-title h2:hover {
    background-color: #fdf7f0;
}

.section-title i {
    color: #f5a741;
    font-size: 22px;
}

/* FOOTER EXCEPTIONNEL */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.footer-container {
    max-width: 100%;
    margin: 0 ;
    padding: 60px 20px 0;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #f5a741;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #f5a741, #e6a86b);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    color: #f5a741;
    margin: 0;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #f5a741;
}

.stat-label {
    font-size: 12px;
    color: #999;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #f5a741;
    transform: translateX(5px);
}

.footer-links i {
    font-size: 14px;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-3px);
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.whatsapp { background: #25d366; }

.newsletter h5 {
    color: #f5a741;
    margin-bottom: 15px;
}
.h-logo
{
    display: none;
}
.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 12px 15px;
    background: linear-gradient(135deg, #f5a741, #e6a86b);
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 167, 65, 0.4);
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.contact-item i {
    color: #f5a741;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-bottom: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #f5a741;
}

/* Décoration du footer */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 167, 65, 0.1), rgba(230, 168, 107, 0.1));
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 4s ease-in-out infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .main-text {
        max-width: 60%;
        font-size: clamp(14px, 3.5vw, 24px);
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header {
        width:100%;
        height: 60px;
        padding: 0 10px 0 0 ;
        top: 0%;
        border-radius: 0;
    }
    .logo
    {
        margin-top: -3%;
    }
    nav {
        display: none;
    }
    
    .main-text {
        max-width: 80%;
        font-size: clamp(12px, 3vw, 18px);
        left: 10%;
    }
    
    .line2 {
        transform: translateX(10px);
    }
    
    .line3 {
        transform: translateX(20px);
    }
    
    .section-title h2 {
        margin-top: 0% ;
        font-size: 1.5em;
        padding: 10px 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .section-title h2
    {
            border-left: none;

    }

     .logo
            {
                display: none;
            }

            .h-logo{
                display: block;
                margin-top: 5%;
                padding-left: 10%; 
                          
            }

            .h-logo {
                display: flex;
                align-items: center;
                gap: 20px;
                margin-bottom: 20px;
            }

            .h-logo img {
                height: 40px;
            }

            .h-logo h3 {
                font-size: 24px;
                color: #4b443b;
                margin: 0;

            }

}

@media (max-width: 480px) {
    .main-text {
        max-width: 90%;
        font-size: clamp(11px, 2.5vw, 16px);
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }

}
        


        /* Section Statistiques Animées */
        
        .stats-section {
            width: 50%;
            padding: 75px 0;
            margin: 0px 0;
            padding-bottom: 5%;
            position: relative;
            overflow: hidden;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stats-section h2
        {
            display: none;
            z-index: 100;
        }
        .stats-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 10px;
            position: relative;
            z-index: 2;
        }

        .stats-title {
            text-align: center;
            color: #2c3e50;
            font-size: 2.5em;
            margin-top: -3%;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .stats-grid {
            position: relative;
            width: 100%;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Cercle de points rotatif */
        .rotating-circle {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 3px dotted rgba(245, 167, 65, 0.4);
            border-radius: 50%;
            animation: rotateCircle 30s linear infinite;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Points sur le cercle */
        .rotating-circle::before {
            content: '';
            position: absolute;
            width: 4px;
            height: 4px;
            background: #f5a741;
            border-radius: 50%;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 
                0 75px 0 #f5a741,
                53px 53px 0 #f5a741,
                75px 0 0 #f5a741,
                53px -53px 0 #f5a741,
                0 -75px 0 #f5a741,
                -53px -53px 0 #f5a741,
                -75px 0 0 #f5a741,
                -53px 53px 0 #f5a741;
        }

        @keyframes rotateCircle {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .stat-item {
            position: absolute;
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            padding: 15px 10px;
            border-radius: 50%;
            text-align: center;
            
            backdrop-filter: blur(10px);
            border: 3px solid rgba(245, 167, 65, 0.3);
            width: 90px;
            height: 90px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* Positionnement parfait des cartes autour du cercle */
        .stat-item:nth-child(2) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) translateY(-195px);
        }

        .stat-item:nth-child(3) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) translateX(195px);
        }

        .stat-item:nth-child(4) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) translateY(195px);
        }

        .stat-item:nth-child(5) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) translateX(-195px);
        }

        .stat-item:hover {
            transform: translate(-50%, -50%) translateY(-195px) scale(1.05);
            box-shadow: 
                0 15px 30px rgba(0,0,0,0.2),
                0 0 20px rgba(245, 167, 65, 0.4),
                inset 0 1px 0 rgba(255,255,255,0.8);
            border-color: #f5a741;
        }

        .stat-item:nth-child(3):hover {
            transform: translate(-50%, -50%) translateX(195px) scale(1.05);
        }

        .stat-item:nth-child(4):hover {
            transform: translate(-50%, -50%) translateY(195px) scale(1.05);
        }

        .stat-item:nth-child(5):hover {
            transform: translate(-50%, -50%) translateX(-195px) scale(1.05);
        }

        .stat-icon {
            font-size: 1.25em;
            color: #f5a741;
            margin-bottom: 7px;
            display: block;
        }

        .stat-number {
            font-size: 1.5em;
            font-weight: bold;
            color: #2c3e50;
            display: block;
            margin-bottom: 4px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .stat-label {
            font-size: 0.95em;
            color: #666;
            font-weight: 600;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 0.25px;
        }

        /* Cercle central décoratif */
        .stats-grid::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            background: linear-gradient(145deg, rgba(245, 167, 65, 0.1), rgba(245, 167, 65, 0.3));
            border-radius: 50%;
            transform: translate(-50%, -50%);
            border: 2px solid rgba(245, 167, 65, 0.4);
            animation: pulse 3s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
            50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
        }

        .stats-grid::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 15px;
            height: 15px;
            background: rgba(245, 167, 65, 0.4);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: innerRotate 8s linear infinite reverse;
            z-index: 2;
        }

        @keyframes innerRotate {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

        /* Responsive - plus l'écran devient petit, plus les items se rapprochent du centre */
        @media (max-width: 1024px) {
            .stat-item:nth-child(2) {
                transform: translate(-50%, -50%) translateY(-175px);
            }
            
            .stat-item:nth-child(3) {
                transform: translate(-50%, -50%) translateX(175px);
            }
            
            .stat-item:nth-child(4) {
                transform: translate(-50%, -50%) translateY(175px);
            }
            
            .stat-item:nth-child(5) {
                transform: translate(-50%, -50%) translateX(-175px);
            }
            
            .stat-item:nth-child(2):hover {
                transform: translate(-50%, -50%) translateY(-175px) scale(1.05);
            }
            
            .stat-item:nth-child(3):hover {
                transform: translate(-50%, -50%) translateX(175px) scale(1.05);
            }
            
            .stat-item:nth-child(4):hover {
                transform: translate(-50%, -50%) translateY(175px) scale(1.05);
            }
            
            .stat-item:nth-child(5):hover {
                transform: translate(-50%, -50%) translateX(-175px) scale(1.05);
            }

            .stats-section
            {
                width: 90%;
            }
        }

        @media (max-width: 768px) {
            .stats-section {
                padding: 30px 0;
                min-height: 40vh;
            }
            
            .stats-title {
                font-size: 1.1em;
                margin-bottom: 25px;
            }
            
            .stats-grid {
                height: 300px;
            }
            
            .rotating-circle {
                width: 200px;
                height: 200px;
            }
            
            .rotating-circle::before {
                box-shadow: 
                    0 50px 0 #f5a741,
                    35px 35px 0 #f5a741,
                    50px 0 0 #f5a741,
                    35px -35px 0 #f5a741,
                    0 -50px 0 #f5a741,
                    -35px -35px 0 #f5a741,
                    -50px 0 0 #f5a741,
                    -35px 35px 0 #f5a741;
            }
            
            .stat-item {
                width: 70px;
                height: 70px;
                padding: 10px 7px;
            }
            
            .stat-item:nth-child(2) {
                transform: translate(-50%, -50%) translateY(-125px);
            }
            
            .stat-item:nth-child(3) {
                transform: translate(-50%, -50%) translateX(125px);
            }
            
            .stat-item:nth-child(4) {
                transform: translate(-50%, -50%) translateY(125px);
            }
            
            .stat-item:nth-child(5) {
                transform: translate(-50%, -50%) translateX(-125px);
            }
            
            .stat-item:nth-child(2):hover {
                transform: translate(-50%, -50%) translateY(-125px) scale(1.05);
            }
            
            .stat-item:nth-child(3):hover {
                transform: translate(-50%, -50%) translateX(125px) scale(1.05);
            }
            
            .stat-item:nth-child(4):hover {
                transform: translate(-50%, -50%) translateY(125px) scale(1.05);
            }
            
            .stat-item:nth-child(5):hover {
                transform: translate(-50%, -50%) translateX(-125px) scale(1.05);
            }
            
            .stat-icon {
                font-size: 1.3em;
                margin-bottom: 5px;
            }
            
            .stat-number {
                font-size: 1.5em;
                margin-bottom: 2px;
            }
            
            .stat-label {
                font-size: 0.9em;
            }
        }

        @media (max-width: 640px) {
            .stats-grid {
                height: 275px;
            }
            
            .rotating-circle {
                width: 175px;
                height: 175px;
            }
            
            .rotating-circle::before {
                box-shadow: 
                    0 43px 0 #f5a741,
                    31px 31px 0 #f5a741,
                    43px 0 0 #f5a741,
                    31px -31px 0 #f5a741,
                    0 -43px 0 #f5a741,
                    -31px -31px 0 #f5a741,
                    -43px 0 0 #f5a741,
                    -31px 31px 0 #f5a741;
            }
            
            .stat-item {
                width: 65px;
                height: 65px;
                padding: 9px 6px;
            }
            
            .stat-item:nth-child(2) {
                transform: translate(-50%, -50%) translateY(-110px);
            }
            
            .stat-item:nth-child(3) {
                transform: translate(-50%, -50%) translateX(110px);
            }
            
            .stat-item:nth-child(4) {
                transform: translate(-50%, -50%) translateY(110px);
            }
            
            .stat-item:nth-child(5) {
                transform: translate(-50%, -50%) translateX(-110px);
            }
            
            .stat-item:nth-child(2):hover {
                transform: translate(-50%, -50%) translateY(-110px) scale(1.05);
            }
            
            .stat-item:nth-child(3):hover {
                transform: translate(-50%, -50%) translateX(110px) scale(1.05);
            }
            
            .stat-item:nth-child(4):hover {
                transform: translate(-50%, -50%) translateY(110px) scale(1.05);
            }
            
            .stat-item:nth-child(5):hover {
                transform: translate(-50%, -50%) translateX(-110px) scale(1.05);
            }
            
            .stat-icon {
                font-size: 1.5em;
                margin-bottom: 4px;
            }
            
            .stat-number {
                font-size: 1.5em;
                margin-bottom: 2px;
            }
            
            .stat-label {
                font-size: 0.9em;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                height: 250px;
            }
            
            .rotating-circle {
                width: 150px;
                height: 150px;
            }
            
            .rotating-circle::before {
                box-shadow: 
                    0 37px 0 #f5a741,
                    26px 26px 0 #f5a741,
                    37px 0 0 #f5a741,
                    26px -26px 0 #f5a741,
                    0 -37px 0 #f5a741,
                    -26px -26px 0 #f5a741,
                    -37px 0 0 #f5a741,
                    -26px 26px 0 #f5a741;
            }
            
            .stat-item {
                width: 50px;
                height: 50px;
                padding: 7px 5px;
            }
            
            .stat-item:nth-child(2) {
                transform: translate(-50%, -50%) translateY(-95px);
            }
            
            .stat-item:nth-child(3) {
                transform: translate(-50%, -50%) translateX(95px);
            }
            
            .stat-item:nth-child(4) {
                transform: translate(-50%, -50%) translateY(95px);
            }
            
            .stat-item:nth-child(5) {
                transform: translate(-50%, -50%) translateX(-95px);
            }
            
            .stat-item:nth-child(2):hover {
                transform: translate(-50%, -50%) translateY(-95px) scale(1.05);
            }
            
            .stat-item:nth-child(3):hover {
                transform: translate(-50%, -50%) translateX(95px) scale(1.05);
            }
            
            .stat-item:nth-child(4):hover {
                transform: translate(-50%, -50%) translateY(95px) scale(1.05);
            }
            
            .stat-item:nth-child(5):hover {
                transform: translate(-50%, -50%) translateX(-95px) scale(1.05);
            }
            
            .stat-icon {
                font-size: 1.5em;
                margin-bottom: 4px;
            }
            
            .stat-number {
                font-size: 1.5em;
                margin-bottom: 1px;
            }
            
            .stat-label {
                font-size: 0.9em;
            }
        }

        @media (max-width: 360px) {
            .stats-grid {
                height: 175px;
            }
            
            .rotating-circle {
                width: 125px;
                height: 125px;
            }
            
            .rotating-circle::before {
                box-shadow: 
                    0 31px 0 #f5a741,
                    22px 22px 0 #f5a741,
                    31px 0 0 #f5a741,
                    22px -22px 0 #f5a741,
                    0 -31px 0 #f5a741,
                    -22px -22px 0 #f5a741,
                    -31px 0 0 #f5a741,
                    -22px 22px 0 #f5a741;
            }
            
            .stat-item {
                width: 50px;
                height: 50px;
                padding: 6px 4px;
            }
            
            .stat-item:nth-child(2) {
                transform: translate(-50%, -50%) translateY(-80px);
            }
            
            .stat-item:nth-child(3) {
                transform: translate(-50%, -50%) translateX(80px);
            }
            
            .stat-item:nth-child(4) {
                transform: translate(-50%, -50%) translateY(80px);
            }
            
            .stat-item:nth-child(5) {
                transform: translate(-50%, -50%) translateX(-80px);
            }
            
            .stat-item:nth-child(2):hover {
                transform: translate(-50%, -50%) translateY(-80px) scale(1.05);
            }
            
            .stat-item:nth-child(3):hover {
                transform: translate(-50%, -50%) translateX(80px) scale(1.05);
            }
            
            .stat-item:nth-child(4):hover {
                transform: translate(-50%, -50%) translateY(80px) scale(1.05);
            }
            
            .stat-item:nth-child(5):hover {
                transform: translate(-50%, -50%) translateX(-80px) scale(1.05);
            }
            
            .stat-icon {
                font-size: 1.2em;
                margin-bottom: 3px;
            }
            
            .stat-number {
                font-size: 1.2em;
                margin-bottom: 1px;
            }
            
            .stat-label {
                font-size: 0.9em;
            }
        }

        /* Pause animation on hover */
        .rotating-circle:hover {
            animation-play-state: paused;
        }
        /* Section Témoignages */
       

        .testimonials-section {
            margin-top: -8%;
            width: 100%;
            max-width: 1200px;
            padding: 80px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-header h2 {
            font-size: 3em;
            font-weight: 700;
            background: linear-gradient(135deg, #f5a741, #e6a86b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            position: relative;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #f5a741, #e6a86b);
            border-radius: 2px;
        }

        .testimonials-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonials-slider {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .testimonials-slider:hover {
            transform: translateY(-5px);
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 10px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 50px;
            max-width: 800px;
            width: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 24px 48px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(245, 167, 65, 0.05) inset;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(245, 167, 65, 0.1) inset;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #f5a741, #e6a86b);
            border-radius: 20px 20px 0 0;
        }

        .testimonial-card::after {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 45deg, transparent, rgba(245, 167, 65, 0.03), transparent);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }

        @keyframes rotate {
            to {
                transform: rotate(360deg);
            }
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2.5em;
            color: #f5a741;
            opacity: 0.2;
            transform: rotate(180deg);
        }

        .testimonial-text {
            font-size: 1.3em;
            line-height: 1.8;
            color: #333;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f5a741, #e6a86b);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: white;
            box-shadow: 0 12px 24px rgba(245, 167, 65, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .author-avatar::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .author-avatar:hover::before {
            width: 100%;
            height: 100%;
        }

        .author-avatar:hover {
            transform: scale(1.1);
            box-shadow: 0 16px 32px rgba(245, 167, 65, 0.4);
        }

        .author-info h4 {
            font-size: 1.2em;
            color: #333;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .author-info p {
            color: #666;
            font-size: 0.95em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .author-info i {
            color: #f5a741;
            font-size: 0.9em;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 50px;
        }

        .nav-btn {
            background: linear-gradient(135deg, #f5a741, #e6a86b);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5em;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 12px 24px rgba(245, 167, 65, 0.3);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .nav-btn:hover::before {
            width: 120%;
            height: 120%;
        }

        .nav-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(245, 167, 65, 0.4);
        }

        .nav-btn:active {
            transform: translateY(-2px) scale(1.02);
        }

        .nav-btn i {
            position: relative;
            z-index: 1;
        }

        .testimonial-indicators {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(245, 167, 65, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .indicator::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: #f5a741;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .indicator.active::before {
            width: 100%;
            height: 100%;
        }

        .indicator:hover {
            background: rgba(245, 167, 65, 0.5);
            transform: scale(1.2);
        }

        .indicator.active {
            background: #f5a741;
            transform: scale(1.3);
        }

        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(135deg, #f5a741, #e6a86b);
            border-radius: 0 0 24px 24px;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2.5em;
            }

            .testimonial-slide {
                padding: 30px 20px;
            }

            .testimonial-card {
                padding: 30px;
            }

            .testimonial-text {
                font-size: 1.1em;
            }

            .author-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.5em;
            }

            .nav-btn {
                width: 60px;
                height: 60px;
                font-size: 1.3em;
            }

            .testimonial-controls {
                gap: 20px;
                margin-top: 40px;
            }
        }

        /* Animations d'entrée */
        .testimonial-slide {
            opacity: 0;
            transform: translateY(20px);
            animation: slideIn 0.8s ease forwards;
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Loading skeleton */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }
   
        /* Section Système de Parrainage */
        .referral-section {
            width: 100%;
            padding: 80px 0;
            background: #fff;
        }

        .referral-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }

        .referral-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .referral-info {
            padding: 40px;
        }

        .referral-info h2 {
            font-size: 2.5em;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .referral-info p {
            font-size: 1.2em;
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .referral-benefits {
            list-style: none;
            padding: 0;
        }

        .referral-benefits li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 1.1em;
            color: #555;
        }

        .referral-benefits li i {
            color: #f5a741;
            font-size: 1.3em;
        }

        .referral-visual {
            background: linear-gradient(135deg, #f5a741 0%, #e6a86b 100%);
            padding: 10px;
            border-radius: 20px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .referral-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 3s ease-in-out infinite;
        }

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

        .referral-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        .step {
            background: rgba(255,255,255,0.2);
            padding: 20px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: white;
            color: #f5a741;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
        }

        /* Section Actualités */
        .news-section {
            margin-top: -5%;
            width: 100%;
            padding: 80px 0;
            background: white;
        }

        .news-section h2
        {
            font-family: 'Poppins';
        }

        .news-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .main-news {
            background: linear-gradient(135deg, #f5a741 0%, #e6a86b 100%);
            padding: 40px;
            border-radius: 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .main-news::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3C/g%3E%3C/svg%3E") repeat;
        }

        .main-news-content {
            position: relative;
            z-index: 2;
        }

        .news-badge {
            background: rgba(255,255,255,0.2);
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.9em;
            display: inline-block;
            margin-bottom: 20px;
        }

        .main-news h3 {
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .main-news p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .news-date {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9em;
            opacity: 0.8;
        }

        .side-news {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .news-item {
            background: #f9f9f9;
            padding: 25px;
            border-radius: 15px;
            border-left: 4px solid #f5a741;
            transition: all 0.3s ease;
        }

        .news-item:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }

        .news-item h4 {
            font-size: 1.1em;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .news-item p {
            font-size: 0.9em;
            color: #666;
            line-height: 1.5;
        }

        /* Section Conseils Saisonniers */
        .seasonal-tips {
            width: 100%;
            padding: 30px 0;
            background: linear-gradient(135deg, #f5a741 0%, #e6a86b 100%);
            position: relative;
            overflow: hidden;
        }

        .seasonal-tips::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite reverse;
        }

        .seasonal-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .seasonal-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
        }

        .seasonal-info {
            color: white;
        }

        .seasonal-info h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .seasonal-info p {
            font-size: 1.2em;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .tip-card {
            background: rgba(255,255,255,0.95);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .tip-icon {
            font-size: 2.5em;
            color: #f5a741;
            margin-bottom: 15px;
        }

        .tip-card h4 {
            font-size: 1.3em;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .tip-card p {
            color: #666;
            line-height: 1.5;
        }

        /* Section Partenariats */
        .partnerships-section {
            width: 100%;
            padding: 10px 0;
            background: white;
        }

        .partnerships-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .partnerships-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .partner-card {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .partner-card:hover {
            background: white;
            border-color: #f5a741;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .partner-logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f5a741 0%, #e6a86b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2em;
            color: white;
        }

        .partner-card h4 {
            font-size: 1.2em;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .partner-card p {
            color: #666;
            font-size: 0.9em;
            line-height: 1.5;
        }

        /* Animations et effets */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }

            .referral-content,
            .news-grid,
            .seasonal-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .testimonial-slide {
                padding: 0 20px;
            }

            .section-header h2 {
                font-size: 2em;
            }

            .stats-title {
                font-size: 2em;
            }

            .referral-info h2,
            .seasonal-info h2 {
                font-size: 2em;
            }

            .tips-grid {
                grid-template-columns: 1fr;
            }

            .partnerships-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }
        }

        .contain {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            padding: 0px 15px 20px; 
            margin-top: 20px;
            width: 100%;
            
        }


        .card {
            display: flex;
            flex-direction: column;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            width: 380px;
            max-width: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(245, 167, 65, 0.1);
            position: relative;
            background: white;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(245, 167, 65, 0.25);
            border-color: rgba(245, 167, 65, 0.3);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #f5a741, #e6a86b, #ca8f67);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .card:hover::before {
            opacity: 1;
        }

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
            background: #f0f0f0;
        }

        .card:hover img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
        }

        .card-content > div:first-child {
            position: absolute;
            top: -10px;
            right: 15px;
            background: linear-gradient(135deg, #f5a741, #e6a86b);
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 12px;
            box-shadow: 0 3px 10px rgba(245, 167, 65, 0.4);
        }

        .date-time {
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            color: #888;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 15px;
        }

        .date-time::before {
            content: '\f073';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 10px;
            margin-right: 5px;
        }

        .title {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            font-weight: 600;
            color: #2c3e50;
            margin: 5px 0;
            text-transform: capitalize;
        }

        .owner-info,
        .finder-info {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .owner-info::before {
            content: '\f007';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            margin-right: 5px;
        }

        .finder-info::before {
            content: '\f002';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            margin-right: 5px;
        }

        .owner {
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            color: #f5a741;
            font-weight: 600;
        }

        .restitution-section {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid rgba(245, 167, 65, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        .restitution-progress {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }

        .progress-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: conic-gradient(from 0deg, #f5a741 0deg, #f5a741 var(--progress), #e0e0e0 var(--progress), #e0e0e0 360deg);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 2px 8px rgba(245, 167, 65, 0.3);
        }

        .progress-circle::before {
            content: '';
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: white;
            position: absolute;
        }

        .progress-text {
            font-size: 12px;
            font-weight: 600;
            color: #2c3e50;
            z-index: 1;
        }

        .progress-label {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        .restitution-action {
            display: flex;
            align-items: center;
        }

        .btn-recuperer {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
        }

        .btn-recuperer:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
        }

        .btn-recuperer::before {
            content: '\f0da';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        .status-restitue {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
        }

        .status-restitue::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        .card-content hr {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(245, 167, 65, 0.3), transparent);
            margin: 15px 0 5px 0;
        }

        /* États spéciaux */
        .card.featured {
            border: 2px solid #f5a741;
            background: linear-gradient(135deg, #fff 0%, rgba(245, 167, 65, 0.02) 100%);
        }

        .card.featured::before {
            opacity: 1;
            height: 4px;
        }

        .card.recent {
            animation: pulseGlow 2s ease-in-out infinite alternate;
        }

        @keyframes pulseGlow {
            0% {
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            }
            100% {
                box-shadow: 0 8px 25px rgba(245, 167, 65, 0.2);
            }
        }

        /* Badge de statut */
        .card-content::after {
            content: 'RÉCENT';
            position: absolute;
            top: -8px;
            left: 20px;
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            padding: 4px 12px;
            font-size: 10px;
            font-weight: bold;
            border-radius: 12px;
            letter-spacing: 0.5px;
            display: none;
        }

        .card.recent .card-content::after {
            display: block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .card {
                width: 100%;
                margin: 0 10px;
            }
            
            .card img {
                height: 180px;
            }
            
            .card-content {
                padding: 15px;
            }
            
            .title {
                font-size: 18px;
            }

            .restitution-section {
                flex-direction: column;
                gap: 10px;
            }

            .restitution-progress {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .card img {
                height: 150px;
            }
            
            .card-content {
                padding: 12px;
            }
            
            .title {
                font-size: 16px;
            }

            .progress-circle {
                width: 45px;
                height: 45px;
            }

            .progress-circle::before {
                width: 30px;
                height: 30px;
            }

            .btn-recuperer {
                padding: 8px 16px;
                font-size: 12px;
            }
        }
    
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: #f5a741;
    font-weight: bold;
    border-radius: 50%;
    transition: 0.3s;
    background: white;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.pagination a:hover {
    background: #f5a741;
    color: white;
}

.pagination .active {
    background: #f5a741;
    color: white;
}

@media screen and (max-width: 500px) {
    .pagination {
        gap: 4px;
        margin-bottom: 25%;
        z-index: 10;
    }

    .pagination a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

.card-content
{
    font-family: 'Poppins' , sans-serif;
}

.initials-circle {
    width: 40px;
    height: 40px;
    background-color:rgb(233, 161, 27); /* Orange */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.account-btn:hover .initials-circle {
    background-color: #ff7700; /* Orange plus foncé au survol */
}

@media (max-width: 768px) {
    .initials-circle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

.account-btn .fas.fa-user-circle {
    font-size: 40px;
    color: #ccc;
}
