/* ===== VARIABLES CSS ===== */
:root {
    --green: #2E7D32;
    --green-dark: #1B5E20;
    --orange: #FF6B35;
    --orange-dark: #e05a2d;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* ===== RÉINITIALISATION GLOBALE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
header {
    background: var(--green-dark);
    color: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-section {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--orange);
}

.slogan {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--orange);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* ===== MENU BURGER ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== HERO SERVICES ===== */
.hero-services {
    position: relative;
    height: 100vh; /* Pleine hauteur écran */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: var(--white);
    padding: 0 1.5rem;
    background: /*linear-gradient(rgba(147, 206, 151, 0.75), rgba(152, 192, 155, 0.75)),*/ 
                url('../images/Image_6257.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero-services h1 {
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.95;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 70px;
    height: 4px;
    background: var(--orange);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

/* ===== INTRODUCTION ===== */
.intro-section {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--green);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-800);
    font-weight: 600;
}

/* ===== SERVICES DÉTAILLÉS ===== */
.services-detail-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.service-block {
    margin: 4rem 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-block:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.service-image {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-block:hover .service-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-block:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.9;
}

.service-text {
    padding: 3rem;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(27, 94, 32, 0.15));
    color: var(--orange);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--orange);
}

.service-badge i {
    font-size: 0.9rem;
}

.service-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.service-description {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature i {
    color: var(--green);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ===== REVERSE (alternance) ===== */
.service-block.reverse .service-row {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-block.reverse .service-text {
    direction: ltr;
}

.service-block.reverse .service-image {
    direction: ltr;
}

/* ===== POURQUOI NOUS ===== */
.why-us-section {
    padding: 5rem 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    background: var(--gray-50);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--green);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.advantage-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
}

.advantage-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA FINAL ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===== BOUTONS ===== */
.btn-primary,
.btn-secondary,
.btn-whatsapp {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 42px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    background: var(--orange);
    color: var(--white);
    border: 2px solid var(--orange);
}

.btn-secondary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    padding: 16px 50px;
    font-size: 1.2rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    margin-right: 10px;
    font-size: 1.4rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--orange);
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--orange);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--orange);
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-services h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .service-text {
        padding: 2rem;
    }
    
    .service-text h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav ul.show {
        max-height: 300px;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .hamburger-menu {
        display: flex;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .hero-services {
        height: 65vh;
        min-height: 450px;
    }
    
    .hero-services h1 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-block {
        margin: 2.5rem 0;
    }
    
    .service-row,
    .service-block.reverse .service-row {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        min-height: 350px;
    }
    
    .service-text {
        padding: 2rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-services {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-services h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-services .btn-primary,
    .cta-section .btn-whatsapp {
        width: 100%;
        max-width: 300px;
        padding: 14px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-image {
        min-height: 300px;
    }
    
    .service-text h3 {
        font-size: 1.4rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card,
    .advantage-card {
        padding: 1.5rem;
    }
}