/*product-filter*/
.bb-product-filter-link {
  font-size:15px;
  font-weight:500;
}

.bb-product-filter-items li:not(:last-child) {
    margin-bottom: 15px
}

.bb-product-filter {
	border-radius:20px;
}


.logo.logo-width-1 a img {
    width: 200px;
}

.border-radius-10.slick-slide.slick-current.slick-active{
background-color:#f3f6f9
}

.search-style-2 form input {
    min-height: 52px !important;
    padding: 3px 62px 3px 20px;
    width: 540px !important;
}

    /* -------------------------------------------------- */

    :root {
        --primary: #005c99;
        --primary-dark: #003d66;
        --primary-light: #e6f0f7;
        --secondary: #4b5563;
        --accent: #e05a2a;
        --success: #10b981;
        --warning: #f59e0b;
        --dark: #0f172a;
        --light: #f8fafc;
        --border: #e2e8f0;
    }

    /* Buttons */
    .btn-primary-custom {
        background: var(--accent);
        color: white;
        padding: 14px 36px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s;
        border: none;
        font-size: 1rem;
    }

    .btn-primary-custom:hover {
        background: #c44a1a;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(224, 90, 42, 0.3);
        color: white;
    }

    .btn-outline-custom {
        border: 2px solid white;
        color: white;
        padding: 12px 32px;
        border-radius: 50px;
        font-weight: 600;
        background: transparent;
        transition: all 0.3s;
    }

    .btn-outline-custom:hover {
        background: white;
        color: var(--primary);
        transform: translateY(-2px);
    }

    .btn-outline-secondary {
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 10px 28px;
        border-radius: 50px;
        font-weight: 600;
        background: transparent;
        transition: all 0.3s;
    }

    .btn-outline-secondary:hover {
        background: var(--primary);
        color: white;
    }

    /* Sections */
    .section-padding {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .section-subtitle {
        color: var(--secondary);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .title-decoration {
        width: 70px;
        height: 4px;
        background: var(--accent);
        margin: 1rem auto 0;
        border-radius: 2px;
    }

    .services-grid {
        display: grid;
        /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        background: white;
        border-radius: 24px;
        padding: 2rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        height: 100%;
        border: 1px solid var(--border);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--accent);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: var(--primary-light);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .service-icon i {
        font-size: 2rem;
        color: var(--primary);
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

     .section-header { text-align: center; margin-bottom: 3rem; }
        .section-header h2 { font-size: 2rem; font-weight: 700; background: linear-gradient(135deg, #1e293b, #3b82f6); -webkit-background-clip: text; background-clip: text; color: transparent; }
        .section-header .divider { width: 60px; height: 4px; background: linear-gradient(90deg, #3b82f6, #8b5cf6); margin: 1rem auto 0; border-radius: 2px; }
        

    .about-image {
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .feature-list {
        list-style: none;
        padding: 0;
    }

    .feature-list li {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .feature-list i {
        color: var(--accent);
        margin-right: 1rem;
        font-size: 1.2rem;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
        color: white;
        padding: 80px 0;
    }

    /* Contact */
    .contact-card {
        background: white;
        border-radius: 24px;
        padding: 2rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        height: 100%;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
    }

    .contact-icon i {
        font-size: 1.3rem;
        color: var(--primary);
    }



    /* Responsive */
    @media (max-width: 768px) {
        .section-title {
            font-size: 1.8rem;
        }

        .section-padding {
            padding: 60px 0;
        }

        /* .stat-number {
            font-size: 2rem;
        } */

        .services-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (min-width: 768px) and (max-width: 1200px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }


    .service-card h3{
        font-size:18px;
    }

/*--------------------------------*/

.stats-section {
            /* max-width: 1200px; */
            margin: 0 auto;
            padding: 5rem 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header { text-align: center; margin-bottom: 3rem; }
        .section-header h2 { font-size: 2rem; font-weight: 700; background: linear-gradient(135deg, #1e293b, #3b82f6); -webkit-background-clip: text; background-clip: text; color: transparent; }
        .section-header .divider { width: 60px; height: 4px; background: linear-gradient(90deg, #3b82f6, #8b5cf6); margin: 1rem auto 0; border-radius: 2px; }
        

        .section-header p {
            color: #64748b;
            margin-top: 0.5rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: #eef2ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
        }

        .stat-icon i {
            font-size: 2rem;
            color: #3b82f6;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f172a;
        }

        .stat-number .suffix {
            font-size: 1.5rem;
            color: #3b82f6;
        }

        .stat-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #475569;
            margin: 0.5rem 0 0.2rem;
        }

        .stat-subtext {
            font-size: 0.7rem;
            color: #94a3b8;
        }

        @media (max-width: 900px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 500px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

/*-------------------------------------------*/

    .about-section {
        max-width: 1280px;
        margin: 0 auto;
        padding: 5rem 2rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header .experience-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: #eef2ff;
        color: #3b82f6;
        padding: 0.4rem 1.5rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(59, 130, 246, 0.2);
        opacity: 0;
        animation: fadeInUp 0.6s ease forwards;
    }


    .section-header .subtitle {
        color: #64748b;
        font-size: 1rem;
        margin-top: 1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0;
        animation: fadeInUp 0.6s ease 0.3s forwards;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
        align-items: center;
    }

    .about-text {
        opacity: 0;
        animation: fadeInLeft 0.8s ease 0.4s forwards;
    }

    .about-text h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 1.2rem;
        letter-spacing: -0.01em;
    }

    .about-text p {
        color: #475569;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .highlight-box {
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        border-left: 4px solid #3b82f6;
        padding: 1.2rem 1.8rem;
        margin: 1.8rem 0;
        border-radius: 16px;
        transition: all 0.3s;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    .highlight-box:hover {
        transform: translateX(8px);
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.08);
    }

    .highlight-box i {
        color: #3b82f6;
        margin-right: 0.5rem;
        font-size: 0.9rem;
    }

    .highlight-box p {
        margin-bottom: 0;
        font-style: italic;
        color: #334155;
        font-weight: 500;
    }

    /* Key Facts Liste */
    .key-facts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .fact-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        background: #ffffff;
        padding: 0.8rem 1rem;
        border-radius: 14px;
        border: 1px solid #eef2f8;
        transition: all 0.3s;
        opacity: 0;
        animation: fadeInUp 0.5s ease forwards;
    }

    .fact-item:nth-child(1) {
        animation-delay: 0.5s;
    }

    .fact-item:nth-child(2) {
        animation-delay: 0.6s;
    }

    .fact-item:nth-child(3) {
        animation-delay: 0.7s;
    }

    .fact-item:nth-child(4) {
        animation-delay: 0.8s;
    }

    .fact-item:hover {
        transform: translateX(5px);
        border-color: #3b82f6;
        background: #f8fafc;
    }

    .fact-item i {
        width: 36px;
        height: 36px;
        background: #eef2ff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3b82f6;
        font-size: 1rem;
        transition: all 0.3s;
    }

    .fact-item:hover i {
        background: #3b82f6;
        color: white;
    }

    .fact-item span {
        font-size: 0.85rem;
        font-weight: 500;
        color: #1e293b;
    }

    .about-image {
        position: relative;
        opacity: 0;
        animation: fadeInRight 0.8s ease 0.4s forwards;
    }

    .about-image img {
        width: 100%;
        border-radius: 32px;
        box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.15);
        transition: all 0.5s;
    }

    .about-image img:hover {
        transform: scale(1.02);
    }

    .image-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: white;
        padding: 1rem 1.8rem;
        border-radius: 24px;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
        border: 1px solid #eef2f8;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .image-badge:hover {
        transform: translateY(-5px);
        border-color: #3b82f6;
    }

    .image-badge i {
        color: #3b82f6;
        font-size: 1.5rem;
    }

    .image-badge .badge-text {
        display: flex;
        flex-direction: column;
    }

    .image-badge .badge-text strong {
        font-weight: 800;
        color: #0f172a;
        font-size: 0.9rem;
    }

    .image-badge .badge-text span {
        font-size: 0.7rem;
        color: #64748b;
    }

    /* Qualität Section - Realistisch */
    .quality-section {
        margin: 4rem 0;
        padding: 2rem 0;
        border-top: 1px solid #eef2f8;
        border-bottom: 1px solid #eef2f8;
    }

    .quality-section h3 {
        text-align: center;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 2rem;
        opacity: 0;
        animation: fadeInUp 0.6s ease 0.9s forwards;
    }

    .quality-section h3 span {
        color: #3b82f6;
    }

    .quality-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .quality-card {
        text-align: center;
        padding: 1.5rem 1rem;
        background: #ffffff;
        border-radius: 24px;
        transition: all 0.3s;
        border: 1px solid #eef2f8;
        opacity: 0;
        animation: fadeInUp 0.5s ease forwards;
    }

    .quality-card:nth-child(1) {
        animation-delay: 1.0s;
    }

    .quality-card:nth-child(2) {
        animation-delay: 1.1s;
    }

    .quality-card:nth-child(3) {
        animation-delay: 1.2s;
    }

    .quality-card:nth-child(4) {
        animation-delay: 1.3s;
    }

    .quality-card:hover {
        transform: translateY(-6px);
        border-color: #3b82f6;
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.08);
    }

    .quality-card i {
        font-size: 2.2rem;
        color: #3b82f6;
        margin-bottom: 0.8rem;
    }

    .quality-card h4 {
        font-size: 0.9rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 0.3rem;
    }

    .quality-card p {
        font-size: 0.7rem;
        color: #64748b;
    }

    /* Team Section */
    .team-section {
        margin-top: 4rem;
        text-align: center;
    }

    .team-section h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 2rem;
        opacity: 0;
        animation: fadeInUp 0.6s ease 1.4s forwards;
    }

    .team-section h3 span {
        color: #3b82f6;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .team-card {
        background: #ffffff;
        border-radius: 28px;
        padding: 2rem 1.5rem;
        transition: all 0.3s;
        border: 1px solid #eef2f8;
        text-align: center;
        opacity: 0;
        animation: fadeInUp 0.5s ease forwards;
    }

    .team-card:nth-child(1) {
        animation-delay: 1.5s;
    }

    .team-card:nth-child(2) {
        animation-delay: 1.6s;
    }

    .team-card:nth-child(3) {
        animation-delay: 1.7s;
    }

    .team-card:hover {
        transform: translateY(-8px);
        border-color: #3b82f6;
        box-shadow: 0 20px 30px -12px rgba(59, 130, 246, 0.15);
    }

    .team-avatar {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #eef2ff, #e0e7ff);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.2rem;
    }

    .team-avatar i {
        font-size: 3rem;
        color: #3b82f6;
    }

    .team-card h4 {
        font-size: 1.1rem;
        font-weight: 800;
        margin-bottom: 0.3rem;
    }

    .team-card .team-role {
        font-size: 0.7rem;
        color: #3b82f6;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .team-card .team-desc {
        font-size: 0.75rem;
        color: #64748b;
    }

    /* CTA Banner */
    .cta-banner {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        border-radius: 32px;
        padding: 3.5rem;
        text-align: center;
        margin-top: 4rem;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        opacity: 0;
        animation: fadeInUp 0.6s ease 1.8s forwards;
    }

    .cta-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 50%;
        pointer-events: none;
    }

    .cta-banner:hover {
        transform: scale(1.01);
    }

    .cta-banner h3 {
        color: white;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .cta-banner p {
        color: #94a3b8;
        margin-bottom: 1.8rem;
    }

    .btn-cta {
        background: #3b82f6;
        color: white;
        padding: 0.9rem 2.2rem;
        border-radius: 60px;
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
    }

    .btn-cta:hover {
        background: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 15px 25px -8px rgba(59, 130, 246, 0.4);
    }

    /* Keyframe Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-40px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(40px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Responsive */
    @media (max-width: 1000px) {
        .about-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .quality-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .team-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .image-badge {
            position: static;
            margin-top: 1.5rem;
            display: inline-flex;
        }
    }

    @media (max-width: 640px) {
        .about-section {
            padding: 3rem 1rem;
        }

        .quality-grid {
            grid-template-columns: 1fr;
        }

        .team-grid {
            grid-template-columns: 1fr;
        }

        .key-facts {
            grid-template-columns: 1fr;
        }

        .section-header h2 {
            font-size: 1.6rem;
        }

        .cta-banner {
            padding: 2rem;
        }

        .cta-banner h3 {
            font-size: 1.3rem;
        }

        .about-text h3 {
            font-size: 1.3rem;
        }
    }

/*------------------------------*/

        .faq {
            max-width: 900px;
            margin: 4rem auto;
            padding: 2rem;
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Structure FAQ Item */
        .faq-item {
            border-bottom: 1px solid #eef2f8;
            margin-bottom: 0.5rem;
            opacity: 0;
            animation: slideInLeft 0.5s ease forwards;
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.15s; }
        .faq-item:nth-child(3) { animation-delay: 0.2s; }
        .faq-item:nth-child(4) { animation-delay: 0.25s; }
        .faq-item:nth-child(5) { animation-delay: 0.3s; }
        .faq-item:nth-child(6) { animation-delay: 0.35s; }
        .faq-item:nth-child(7) { animation-delay: 0.4s; }
        .faq-item:nth-child(8) { animation-delay: 0.45s; }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Question stylée */
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            padding: 1rem 0;
            transition: all 0.3s ease;
            color: #0f172a;
            gap: 1rem;
        }

        .faq-question:hover {
            color: #3b82f6;
        }

        .faq-question-text {
            flex: 1;
            line-height: 1.4;
        }

        .faq-question i {
            color: #3b82f6;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Réponse stylée */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            color: #475569;
            font-size: 0.9rem;
            line-height: 1.65;
            padding: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 1.2rem;
        }

        /* Liens dans les réponses */
        .faq-answer a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
        }

        .faq-answer a:hover {
            text-decoration: underline;
        }

        /* Contact box */
        .faq-contact-box {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 24px;
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
            border: 1px solid #eef2f8;
        }

        .faq-contact-box h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.5rem;
        }

        .faq-contact-box p {
            color: #64748b;
            margin-bottom: 1rem;
        }

        .faq-contact-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .faq-contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .faq-contact-btn.phone {
            background: #3b82f6;
            color: white;
        }

        .faq-contact-btn.phone:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }

        .faq-contact-btn.mail {
            background: white;
            color: #3b82f6;
            border: 1px solid #cbd5e1;
        }

        .faq-contact-btn.mail:hover {
            border-color: #3b82f6;
            transform: translateY(-2px);
        }

       
        @media (max-width: 768px) {
            .faq { padding: 1rem; margin: 2rem auto; }
            .faq-question { font-size: 0.9rem; }
            .footer-container { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
        }


/*-----------------------------------------------*/

.footer-premium {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            color: #b8b8b8;
            padding: 4rem 0 2rem 0;
            position: relative;
        }

        .footer-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #3b82f6, #3b82f6, #3b82f6, transparent);
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-premium-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-premium h3 {
            color: #3b82f6;
            font-size: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .premium-logo {
            font-size: 1.8rem;
            font-weight: 600;
            background: linear-gradient(135deg, #3b82f6, #f4e4a0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Playfair Display', serif;
            margin-bottom: 0.5rem;
        }

        .premium-tagline {
            font-size: 0.7rem;
            letter-spacing: 3px;
            color: #3b82f6;
        }

        .premium-links {
            list-style: none;
        }

        .premium-links li {
            margin-bottom: 0.8rem;
        }

        .premium-links a {
            color: #b8b8b8;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .premium-links a:hover {
            color: #3b82f6;
            transform: translateX(5px);
        }

        .premium-contact {
            background: rgba(201, 160, 61, 0.05);
            padding: 1rem;
            border-radius: 8px;
            border-left: 2px solid #3b82f6;
        }

        .premium-contact p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .premium-contact i {
            color: #3b82f6;
            width: 25px;
        }

        .footer-premium-bottom {
            border-top: 1px solid rgba(201, 160, 61, 0.2);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.75rem;
            letter-spacing: 1px;
        }

        .footer-premium-bottom .legal {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
        }

        .footer-premium-bottom .legal a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-premium-bottom .legal a:hover {
            color: #3b82f6;
        }

/*----------------------------*/

.social-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.social-icon-item {
    display: inline-block;
}

.social-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-link:active {
    transform: scale(0.95);
}

.pro-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pro-count.blue {
    background: linear-gradient(135deg, #0a66c2, #1e7fd4);
    color: white;
}

.pro-count.red {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}


.social-link:hover .pro-count.blue {
    background: linear-gradient(135deg, #1e7fd4, #0a66c2);
}

.social-link:hover .pro-count.red {
    background: linear-gradient(135deg, #ff3333, #cc0000);
}

.pro-count i {
    font-size: 20px;
    line-height: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 102, 194, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(10, 102, 194, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(10, 102, 194, 0);
    }
}

.social-link.linkedin:hover .pro-count {
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.social-link.youtube:hover .pro-count {
    animation: pulseRed 1.2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .pro-count {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .pro-count i {
        font-size: 16px;
    }
    
    .social-icons-wrapper {
        gap: 8px;
    }
}

.social-link {
    position: relative;
}

.social-link::after {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

@media only screen and (max-width: 480px) {
    .header-style-5 {
        border-bottom: 1px solid #f7f8f9;
        padding: 0px 0!important;
    }
}
/*------------------------list----------------*/
    .categories-sidebar {
        background: white;
        border-radius: 24px;
        padding: 1.5rem;
        border: 1px solid #eef2f6;
        box-shadow: 0 4px 12px rgb(33 47 174 / 17%);
        height: fit-content;
        /* width: 295px; */
        /* position: fixed; */
        /* top: 141px; */
    }

    .sidebar-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid #1e619f;
    }

    .sidebar-title i {
        color: #1e619f;
    }

    .category-list {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .category-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
        color: #475569;
        font-weight: 500;
    }

    .category-item:hover {
        background: #fef3c7;
        color: #1e619f;
    }

    .category-item.active {
        background: #1e619f;
        color: white;
    }

    .category-item.active .category-count {
        background: white;
        color: #1e619f;
    }

    .category-name {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .category-name i {
        width: 24px;
        font-size: 1rem;
    }

    .category-count {
        background: #f1f5f9;
        padding: 0.2rem 0.6rem;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        color: #64748b;
    }

    /* Filtre par prix */
    .filter-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #eef2f6;
    }

    .filter-section h4 {
        font-size: 0.8rem;
        font-weight: 600;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .price-range {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .price-range input {
        width: 100%;
        padding: 0.5rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 0.8rem;
    }

    .btn-filter {
        width: 100%;
        padding: 0.6rem;
        background: #f1f5f9;
        border: none;
        border-radius: 10px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s;
    }

    .btn-filter:hover {
        background: #1e619f;
        color: white;
    }

/*-----------------------contact-------------------*/

        section.contact-us {
            background-position: center center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            background-size: cover;
            padding: 0px 0px 80px 0px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        section.contact-us #contact {
            background-color: #fff;
            border-radius: 20px;
            padding: 40px;
            border: 2px solid #f8f4f4;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        section.contact-us #contact:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: #fff;
        }

        section.contact-us #contact h2 {
            text-transform: uppercase;
            color: #1f272b;
            border-bottom: 1px solid #eee;
            margin-bottom: 40px;
            padding-bottom: 20px;
            font-size: 22px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        section.contact-us #contact h2::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #2061a2;
            transition: width 0.5s ease;
        }

        section.contact-us #contact:hover h2::after {
            width: 100%;
        }

        section.contact-us #contact input {
            width: 100%;
            height: 47px;
            border-radius: 6px;
            background-color: #f7f7f7;
            outline: none;
            border: none;
            box-shadow: none;
            font-size: 13px;
            font-weight: 500;
            color: #7a7a7a;
            padding: 0px 15px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        section.contact-us #contact input:focus {
            background-color: #e8f0fe;
            transform: scale(1.02);
            box-shadow: 0 0 0 3px rgba(32, 97, 162, 0.1);
        }

        section.contact-us #contact textarea {
            width: 100%;
            min-height: 140px;
            max-height: 180px;
            border-radius: 6px;
            background-color: #f7f7f7;
            outline: none;
            border: none;
            box-shadow: none;
            font-size: 13px;
            font-weight: 500;
            color: #7a7a7a;
            padding: 15px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            resize: vertical;
        }

        section.contact-us #contact textarea:focus {
            background-color: #e8f0fe;
            transform: scale(1.02);
            box-shadow: 0 0 0 3px rgba(32, 97, 162, 0.1);
        }

        section.contact-us #contact button {
            font-size: 13px;
            color: #fff;
            background-color: #2061a2;
            padding: 12px 30px;
            display: inline-block;
            border-radius: 7px;
            font-weight: 500;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            outline: none;
            position: relative;
            overflow: hidden;
        }

        section.contact-us #contact button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        section.contact-us #contact button:hover::before {
            width: 300px;
            height: 300px;
        }

        section.contact-us #contact button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(32, 97, 162, 0.3);
            background-color: #1a4f84;
        }

        section.contact-us #contact button:active {
            transform: translateY(0);
        }

        /* Style pour la carte d'informations droite */
        section.contact-us .right-info {
            background: linear-gradient(135deg, #2061a2 0%, #1a4f84 100%);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            height: 100%;
        }

        section.contact-us .right-info::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%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        section.contact-us .right-info:hover::before {
            transform: scale(1);
        }

        section.contact-us .right-info:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        section.contact-us .right-info ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        section.contact-us .right-info ul li {
            display: inline-block;
            border-bottom: 1px solid rgba(250, 250, 250, 0.15);
            margin-bottom: 30px;
            padding-bottom: 30px;
            transition: all 0.3s ease;
            width: 100%;
        }

        section.contact-us .right-info ul li:hover {
            transform: translateX(10px);
            border-bottom-color: rgba(250, 250, 250, 0.4);
        }

        section.contact-us .right-info ul li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        section.contact-us .right-info ul li h6 {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        section.contact-us .right-info ul li:hover h6 {
            transform: translateX(5px);
        }

        section.contact-us .right-info ul li span {
            display: block;
            font-size: 18px;
            color: #fff;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        section.contact-us .right-info ul li:hover span {
            transform: translateX(5px);
            color: #ffd700;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(32, 97, 162, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(32, 97, 162, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(32, 97, 162, 0);
            }
        }

        .contact-us .container {
            position: relative;
            z-index: 2;
        }

        @media (max-width: 992px) {
            section.contact-us {
                padding: 100px 0px 60px 0px;
            }
            
            section.contact-us #contact {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            section.contact-us #contact,
            section.contact-us .right-info {
                padding: 25px;
            }
            
            .right-info {
                margin-top: 30px;
            }
        }

        @media (max-width: 576px) {
            [data-aos] {
                transition-duration: 0.6s !important;
            }
        }

  .page-header.breadcrumb-wrap {
    background-color:unset;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%)!important;
  }