/* CSS spécifique - Landing Page Nettoyage Extrême */

/* Hero nettoyage */
.nettoyage-hero {
    background: linear-gradient(135deg, #1a2a1a 0%, #2c3e2c 50%, #1e3a1e 100%) !important;
}

.discretion-badge {
    display: inline-block;
    background: rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(39, 174, 96, 0.5);
    color: #2ecc71;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.reassurance-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Bouton CTA nettoyage (vert) */
.custom-btn-nettoyage {
    background: linear-gradient(45deg, #27ae60, #2ecc71) !important;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    color: #fff !important;
}

.custom-btn-nettoyage:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
    background: linear-gradient(45deg, #219a52, #27ae60) !important;
}

/* Onglets situations */
.situation-tabs .nav-link {
    color: #2c3e50;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.situation-tabs .nav-link.active {
    color: #27ae60;
    border-bottom-color: #27ae60;
    background: transparent;
}

.situation-tabs .nav-link:hover {
    color: #27ae60;
    transform: none;
}

.situation-content {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.situation-content h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.situation-content p {
    color: #555;
    line-height: 1.7;
}

.situation-list {
    list-style: none;
    padding: 0;
}

.situation-list li {
    padding: 0.5rem 0;
    color: #555;
}

/* Section arguments nettoyage */
.arguments-section-nettoyage {
    background: linear-gradient(135deg, #1e3a1e 0%, #2c3e2c 50%, #1a2a1a 100%);
    color: white;
}

.arguments-section-nettoyage .argument-icon {
    background: rgba(39, 174, 96, 0.2);
    border: 2px solid rgba(39, 174, 96, 0.4);
}

.arguments-section-nettoyage .argument-icon i {
    color: #2ecc71;
}

/* Services inclus cards */
.service-inclus-card {
    background: white;
    border-radius: 15px;
    padding: 1.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: start;
    gap: 1rem;
}

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

.service-inclus-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, #1e3a1e, #2c3e2c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-inclus-icon i {
    font-size: 1.3rem;
    color: #2ecc71;
}

.service-inclus-card h5 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-inclus-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Empathie section */
.empathie-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.empathie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.empathie-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empathie-icon i {
    font-size: 1.8rem;
    color: white;
}

.empathie-card h5 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.empathie-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Zone badges */
.zone-badge {
    padding: 0.6rem 1.25rem !important;
    border-radius: 25px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    background: linear-gradient(45deg, #1e3a1e, #2c3e2c) !important;
}

/* FAQ / Accordion */
.accordion-item {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    font-weight: 600;
    color: #2c3e50;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1e3a1e, #2c3e2c);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.25rem 1.5rem;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-reassurance {
        flex-direction: column;
        gap: 0.5rem;
    }

    .situation-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .discretion-badge {
        font-size: 0.8rem;
    }
}