/**
 * STYLES SPÉCIFIQUES - PAGES SECTEURS
 * Jagg.Site - Pages sectorielles (agriculture, automobile, bâtiment, etc.)
 */

/* ===================================
   HERO SECTION
   =================================== */
.secteur-hero-description {
    text-align: justify;
    hyphens: none;
}

.secteur-highlight-orange {
    color: #e9840a;
    font-weight: 600;
}

.secteur-highlight-green {
    color: #326108;
    font-weight: 600;
}

/* ===================================
   SECTIONS JUSTIFIÉES
   =================================== */
.secteur-section-justified {
    text-align: justify;
}

.secteur-section-title h2 {
    color: #0d5a73;
    margin-bottom: 40px;
}

/* ===================================
   GRILLE PRESENTATION
   =================================== */
.secteur-presentation-grid {
    align-items: center;
    gap: 40px;
}

.presentation-image img {
    width: 80%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

.secteur-presentation-text p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #1d1d1d;
    margin-bottom: 20px;
}

.secteur-presentation-text p:last-child {
    margin-bottom: 0;
}

.secteur-presentation-text strong {
    color: #e9840a;
}

/* ===================================
   GRILLE CARTES OBTENIR
   =================================== */
.secteur-cards-grid {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.card.secteur-card-light {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px;
}

.card.secteur-card-dark {
    background: rgba(110, 110, 110, 0.7);
    padding: 35px;
}

.secteur-card-light h3,
.secteur-card-dark h3 {
    color: #0d5a73;
    font-size: 1.9rem;
    margin-bottom: 20px;
}

.secteur-card-light p {
    color: #1d1d1d;
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
}

.secteur-card-dark p {
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   SECTION TARIF
   =================================== */
.secteur-tarif-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.secteur-tarif-wrapper h2 {
    color: #0d5a73;
    margin-bottom: 25px;
}

.secteur-tarif-wrapper p {
    font-size: 1.9rem;
    color: #1d1d1d;
    margin-bottom: 30px;
}

.secteur-tarif-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (min-width: 1001px) and (max-width: 1400px) {
    .presentation-image img {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .secteur-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .secteur-presentation-text p {
        font-size: 1.4rem;
    }

    .secteur-card-light h3,
    .secteur-card-dark h3 {
        font-size: 1.6rem;
    }

    .secteur-card-light p,
    .secteur-card-dark p {
        font-size: 1.4rem;
    }

    .secteur-tarif-wrapper p {
        font-size: 1.6rem;
    }
}
