/* ========================================
   IRRIGATION PAGE - STYLES SIMPLIFIÉS
   ======================================== */

/* Container principal */
.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Section Block - Structure de base */
.service-block {
    margin: 80px 0;
}

/* Titre de section */
.service-block-title {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-block-title i {
    color: #27ae60;
}

/* Introduction de section */
.service-block-intro {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Grille de cartes - 3 colonnes */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Carte de service */
.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Icône de carte */
.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

/* Titre de carte */
.service-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Paragraphe de carte */
.service-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 16px;
}

/* Liste dans les cartes */
.card-list {
    text-align: left;
    color: #64748b;
    margin-top: 15px;
    line-height: 1.8;
    padding-left: 20px;
}

.card-list li {
    margin-bottom: 8px;
}

/* Bordures colorées */
.border-green {
    border-left: 4px solid #27ae60;
}

.border-blue {
    border-left: 4px solid #3b82f6;
}

.border-purple {
    border-left: 4px solid #8b5cf6;
}

/* Section Technologies - Fond gris */
.tech-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px 50px;
    border-radius: 20px;
}

/* Section Processus - Fond blanc avec bordure */
.process-section {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Cartes du processus */
.process-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Numéro du processus */
.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

/* ========================================
   RESPONSIVE - TABLETTES
   ======================================== */
@media (max-width: 1024px) {
    .services-container {
        padding: 0 40px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-block-title {
        font-size: 32px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .services-container {
        padding: 0 20px;
    }

    .service-block {
        margin: 60px 0;
    }

    .service-block-title {
        font-size: 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .service-block-intro {
        font-size: 16px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px;
    }

    .tech-section,
    .process-section {
        padding: 40px 30px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 15px;
    }

    .service-block-title {
        font-size: 24px;
    }

    .service-card {
        padding: 25px;
    }

    .tech-section,
    .process-section {
        padding: 30px 20px;
    }
}
