.myLogo {
    height: 85px;
    width: auto;
}

/* CSS Isolé avec préfixe "sn-" (services-nettoyage) */

.sn-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg,
            #f0faff 0%,
            #d4f1ff 100%);
    padding: 40px 20px;
    line-height: 1.6;
}

.sn-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Section gauche */
.sn-left-section {
    padding: 20px 0;
}

.sn-subtitle {
    color: #18BBFE;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.sn-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #5a6c7d;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.sn-description {
    color: #6b7c8d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.sn-description strong {
    color: #4a5a6b;
    font-weight: 600;
}

.sn-features-list {
    list-style: none;
    margin-bottom: 40px;
    padding-left: 0;
}

.sn-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5a6c7d;
    font-size: 15px;
    margin-bottom: 18px;
    padding: 8px 0;
}

.sn-features-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #18BBFE;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.sn-buttons-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sn-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.sn-btn-dark {
    background: #3a4a5b;
    color: white;
    box-shadow: 0 8px 20px rgba(58, 74, 91, 0.3);
}

.sn-btn-dark:hover {
    background: #2a3a4b;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(58, 74, 91, 0.4);
    color: white;
    text-decoration: none;
}

.sn-btn-green {
    background: #18BBFE;
    color: white;
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.3);
}

.sn-btn-green:hover {
    background: #6ca332;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(124, 179, 66, 0.4);
    color: white;
    text-decoration: none;
}

/* Section droite - Grille de services */
.sn-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sn-service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;

}

.sn-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #18BBFE;
}

.sn-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.sn-service-title {
    color: #18BBFE;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.sn-service-description {
    color: #6b7c8d;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .sn-container {
        grid-template-columns: 1fr;
    }

    .sn-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sn-main-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .sn-services-grid {
        grid-template-columns: 1fr;
    }

    .sn-main-title {
        font-size: 28px;
    }

    .sn-buttons-group {
        flex-direction: column;
    }

    .sn-btn {
        width: 100%;
        text-align: center;
    }

    .sn-service-card {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes snFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sn-left-section,
.sn-service-card {
    animation: snFadeInUp 0.6s ease forwards;
}

.sn-service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.sn-service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.sn-service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.sn-service-card:nth-child(4) {
    animation-delay: 0.4s;
}



/* CSS Isolé avec préfixe "sa-" (secteur-activite) */

.sa-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 60px 20px;
    background: #f8f9fa;
}

.sa-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sa-header {
    text-align: center;
    margin-bottom: 50px;
}

.sa-subtitle {
    color: #18BBFE;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.sa-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #5a6c7d;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}

/* Carousel Container */
.sa-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.sa-carousel-container {
    overflow: hidden;
    width: 100%;
}

.sa-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

/* Cards */
.sa-card {
    flex: 0 0 calc(25% - 22.5px);
    /* min-width: 250px; */
    background: linear-gradient(135deg, #f0faff 0%, #e2eff5 100%); 
    /* border-radius: 20px; */
    padding: 0px 0px 25px 0px;
    text-align: center;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    @media (max-width: 991.98px){
        flex: 0 0 calc(25% - 22.5px);
            background: linear-gradient(135deg, #f0faff 0%, #e2eff5 100%);
            padding: 0px 0px 25px 0px;
            text-align: center;
            transition: all 0.3s ease;
    }
}

.sa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sa-card-image {
    width: 100%;
    height: 180px;
    /* border-radius: 50%; */
    background: #f0f4f8;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.sa-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 15%; */
}

/* Placeholder illustration */
.sa-card-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); */
}

.sa-card-title {
    color: black;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    font-family: Aptos !important;
}

/* Navigation Arrows */
.sa-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sa-arrow:hover {
    background: #18BBFE;
    border-color: #18BBFE;
    transform: translateY(-50%) scale(1.1);
}

.sa-arrow:hover svg {
    stroke: white;
}

.sa-arrow-left {
    left: 0;
}

.sa-arrow-right {
    right: 0;
}

.sa-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #5a6c7d;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.sa-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* Responsive */
@media (max-width: 1200px) {
    .sa-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .sa-carousel-wrapper {
        padding: 0 50px;
    }

    .sa-card {
        flex: 0 0 calc(50% - 15px);
    }

    .sa-main-title {
        font-size: 32px;
    }

    .sa-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .sa-carousel-wrapper {
        padding: 0 40px;
    }

    .sa-card {
        flex: 0 0 100%;
    }

    .sa-main-title {
        font-size: 24px;
    }
}

/* Animation */
@keyframes saFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sa-card {
    animation: saFadeIn 0.6s ease forwards;
}

.sa-card:nth-child(1) {
    animation-delay: 0.1s;
}

.sa-card:nth-child(2) {
    animation-delay: 0.2s;
}

.sa-card:nth-child(3) {
    animation-delay: 0.3s;
}

.sa-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* CSS Isolé avec préfixe "qc-" (quatre-cadrans) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.qc-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.qc-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Section gauche - 4 cadrans en losange */
.qc-diamond-grid {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 40px auto;
}

.qc-diamond-container {
    width: 90%;
    height: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    transform: rotate(45deg);
    padding: 40px;
}

.qc-diamond-item {
    position: relative;
    background: white;
    border: 3px solid #2c3e50;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.qc-diamond-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #18BBFE;
    z-index: 10;
}

.qc-diamond-content {
    width: 100%;
    height: 100%;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.qc-diamond-image {
    width: 120%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Overlay pour meilleure lisibilité */
.qc-diamond-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: background 0.3s ease;
}

.qc-diamond-item:hover::before {
    background: rgba(24, 187, 254, 0.2);
}

/* Texte sur les images (optionnel) */
.qc-diamond-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #2c3e50;
    z-index: 2;
    white-space: nowrap;
}

/* Section droite - Lignes de texte */
.qc-text-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.qc-text-line {
    position: relative;
    padding-left: 0;
    opacity: 0;
    animation: qcSlideIn 0.6s ease forwards;
}

.qc-text-line:nth-child(1) {
    animation-delay: 0.2s;
}

.qc-text-line:nth-child(2) {
    animation-delay: 0.4s;
}

.qc-text-line:nth-child(3) {
    animation-delay: 0.6s;
}

.qc-text-line:nth-child(4) {
    animation-delay: 0.8s;
}

.qc-text-line::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: #18BBFE;
    border-radius: 2px;
}

.qc-text-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.qc-text-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

/* Animation */
@keyframes qcSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .qc-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .qc-diamond-grid {
        max-width: 400px;
    }

    .qc-text-line::before {
        left: -20px;
    }
}

@media (max-width: 640px) {
    .qc-diamond-grid {
        max-width: 320px;
    }

    .qc-diamond-container {
        gap: 15px;
        padding: 30px;
    }

    .qc-text-title {
        font-size: 20px;
    }

    .qc-text-description {
        font-size: 14px;
    }

    .qc-diamond-label {
        font-size: 10px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .qc-wrapper {
        padding: 40px 15px;
    }

    .qc-diamond-grid {
        max-width: 280px;
    }

    .qc-diamond-container {
        gap: 10px;
        padding: 25px;
    }

    .qc-text-section {
        gap: 25px;
    }
}

/* États de chargement des images */
.qc-diamond-image {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

 /* CSS Isolé avec préfixe "ref-" (references) */

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 .ref-wrapper {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     padding: 80px 20px;
     background: #f8f9fa;
 }

 .ref-container {
     max-width: 1400px;
     margin: 0 auto;
 }

 /* Titre principal */
 .ref-title {
     font-size: 48px;
     font-weight: 700;
     color: #18BBFE;
     text-align: center;
     margin-bottom: 60px;
     text-transform: capitalize;
 }

 /* Grille de logos */
 .ref-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 25px;
 }

 /* Carte individuelle */
 .ref-card {
     background: white;
     border: 1px solid #e9ecef;
     border-radius: 15px;
     padding: 40px 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 180px;
     transition: all 0.3s ease;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .ref-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     border-color: #18BBFE;
 }

 /* Images/Logos */
 .ref-logo {
     max-width: 100%;
     height: auto;
     max-height: 100px;
     object-fit: contain;
     transition: transform 0.3s ease;
 }

 .ref-card:hover .ref-logo {
     transform: scale(1.05);
 }

 /* Bouton retour en haut */
 .ref-scroll-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: #18BBFE;
     color: white;
     border: none;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 4px 15px rgba(24, 187, 254, 0.3);
     transition: all 0.3s ease;
     z-index: 1000;
     font-size: 24px;
 }

 .ref-scroll-top:hover {
     background: #0ea5e0;
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(24, 187, 254, 0.4);
 }

 .ref-scroll-top svg {
     width: 24px;
     height: 24px;
     stroke: white;
     stroke-width: 3;
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .ref-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 20px;
     }

     .ref-title {
         font-size: 42px;
     }
 }

 @media (max-width: 768px) {
     .ref-wrapper {
         padding: 60px 15px;
     }

     .ref-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 15px;
     }

     .ref-title {
         font-size: 36px;
         margin-bottom: 40px;
     }

     .ref-card {
         padding: 30px 20px;
         min-height: 150px;
     }

     .ref-logo {
         max-height: 80px;
     }

     .ref-scroll-top {
         width: 45px;
         height: 45px;
         bottom: 20px;
         right: 20px;
     }
 }

 @media (max-width: 480px) {
     .ref-grid {
         grid-template-columns: 1fr;
     }

     .ref-title {
         font-size: 28px;
     }

     .ref-card {
         padding: 25px 15px;
         min-height: 130px;
     }
 }

 /* Animation d'entrée */
 @keyframes refFadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .ref-card {
     animation: refFadeIn 0.6s ease forwards;
     opacity: 0;
 }

 .ref-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .ref-card:nth-child(2) {
     animation-delay: 0.15s;
 }

 .ref-card:nth-child(3) {
     animation-delay: 0.2s;
 }

 .ref-card:nth-child(4) {
     animation-delay: 0.25s;
 }

 .ref-card:nth-child(5) {
     animation-delay: 0.3s;
 }

 .ref-card:nth-child(6) {
     animation-delay: 0.35s;
 }

 .ref-card:nth-child(7) {
     animation-delay: 0.4s;
 }

 .ref-card:nth-child(8) {
     animation-delay: 0.45s;
 }

 .ref-card:nth-child(9) {
     animation-delay: 0.5s;
 }

 .ref-card:nth-child(10) {
     animation-delay: 0.55s;
 }

 .ref-card:nth-child(11) {
     animation-delay: 0.6s;
 }

 .ref-card:nth-child(12) {
     animation-delay: 0.65s;
 }

 /* Effet de brillance au survol */
 .ref-card::after {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg,
             transparent,
             rgba(24, 187, 254, 0.1),
             transparent);
     transform: rotate(45deg);
     transition: all 0.5s ease;
     opacity: 0;
 }

 .ref-card:hover::after {
     animation: refShine 1s ease;
 }

 @keyframes refShine {
     0% {
         left: -50%;
         opacity: 0;
     }

     50% {
         opacity: 1;
     }

     100% {
         left: 150%;
         opacity: 0;
     }
 }

 .ref-card {
     position: relative;
     overflow: hidden;
 }
