/* TEST : FORCE L'AFFICHAGE DE TOUT */
.animate-on-scroll, 
.fade-in, 
.fade-in-up, 
.fade-in-left, 
.fade-in-right,
.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
}


/* =========================================
   1. VARIABLES & UTILITAIRES (Manquants dans votre code)
========================================= */
:root {
    --clr-primary: #10B981;
    --clr-primary-hover: #059669;
}

/* Couleurs de texte et de fond */
.text-primary { color: var(--clr-primary); }
.text-white { color: #ffffff; }
.text-dark { color: #000000; }
.text-gray-300 { color: #d1d5db; }
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gradient-dark { background: linear-gradient(to bottom right, #000000, #111827); }

/* Espacements et typographie */
.font-semibold { font-weight: 600; }
.section-padding { padding: 5rem 0; }
.text-center { text-align: center; }
.mb-12 { margin-bottom: 3rem; }

/* =========================================
   2. BOUTONS & ICÔNES (C'est ce qui bloquait !)
========================================= */
.btn-primary {
    background-color: var(--clr-primary);
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
    border: none;
}
.btn-primary:hover { background-color: var(--clr-primary-hover); }

.btn-white {
    background: #ffffff;
    color: var(--clr-primary);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
}
.btn-white:hover { background-color: #f3f4f6; }

/* Tailles des icônes SVG */
.icon-lg { width: 2rem; height: 2rem; }
.icon-primary { width: 1.5rem; height: 1.5rem; color: var(--clr-primary); }

.service-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, var(--clr-primary), var(--clr-primary-hover));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* =========================================
   3. ANIMATIONS AU SCROLL
========================================= */
.animate-on-scroll { opacity: 0; }
.fade-in { transition: opacity 0.8s ease-out; }
.fade-in-up { transform: translateY(30px); transition: all 0.8s ease-out; }

.is-visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* =========================================
   4. STRUCTURE DE LA PAGE SERVICES
========================================= */
.page-hero {
    padding: 10rem 1rem 5rem 1rem;
    background-color: #000;
}
.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.page-subtitle {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
}

.detailed-services-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.service-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
.service-row-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}
.service-row-desc {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
}
.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-weight: 500;
}
.dot-icon {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--clr-primary, #10B981);
    border-radius: 50%;
    display: inline-block;
}

.service-row-image { width: 100%; }
.service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.small-service-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}
.small-service-card:hover {
    border-color: var(--clr-primary, #10B981);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.cta-section {
    background: linear-gradient(to right, var(--clr-primary), #059669);
}
.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 42rem;
    margin: 0 auto 2rem auto;
}

/* =========================================
   5. RESPONSIVE & ALTERNANCE (Image Gauche / Droite)
========================================= */
@media (min-width: 1024px) {
    .service-row {
        grid-template-columns: 1fr 1fr;
    }
    .service-row-reverse .service-row-content {
        order: 2;
    }
    .service-row-reverse .service-row-image {
        order: 1;
    }
}