/* CSS spécifique - Landing Page Punaises de Lit */

/* Hero punaises */
.punaises-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
}

.urgence-badge {
    display: inline-block;
    background: rgba(243, 156, 18, 0.2);
    border: 1px solid rgba(243, 156, 18, 0.5);
    color: #f39c12;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.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 punaises (orange/warning) */
.custom-btn-punaises {
    background: linear-gradient(45deg, #f39c12, #e67e22) !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(243, 156, 18, 0.4);
    color: #fff !important;
}

.custom-btn-punaises:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
    background: linear-gradient(45deg, #e67e22, #d35400) !important;
}

/* Signes d'infestation */
.signe-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

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

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

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

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

/* Alerte box */
.alerte-box {
    background: rgba(243, 156, 18, 0.1);
    border: 2px solid #f39c12;
    border-radius: 10px;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Section arguments punaises */
.arguments-section-punaises {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    color: white;
}

.arguments-section-punaises .argument-icon {
    background: rgba(243, 156, 18, 0.2);
    border: 2px solid rgba(243, 156, 18, 0.4);
}

.arguments-section-punaises .argument-icon i {
    color: #f39c12;
}

/* Méthodes de traitement */
.methode-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.methode-card.featured-method {
    border: 3px solid #f39c12;
    transform: scale(1.02);
}

.methode-card.featured-method:hover {
    transform: scale(1.02) translateY(-5px);
}

.methode-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

.methode-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0f3460, #16213e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.methode-icon i {
    font-size: 2rem;
    color: #f39c12;
}

.methode-card h4 {
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.methode-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.methode-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.methode-details li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #555;
}

/* 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, #0f3460, #16213e) !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, #0f3460, #16213e);
    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;
    }

    .alerte-box {
        flex-direction: column;
        text-align: center;
    }

    .methode-card.featured-method {
        transform: scale(1);
    }

    .methode-card.featured-method:hover {
        transform: translateY(-5px);
    }
}

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