/* Force tous les titres à utiliser The Seasons */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-seasons) !important;
}


/* Hero Section */
.hero-urgence {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-urgence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
    animation: urgence-stripes 20s linear infinite;
}

@keyframes urgence-stripes {
    0% { transform: translateX(0); }
    100% { transform: translateX(28.28px); }
}

.hero-urgence .hero-content {
    position: relative;
    z-index: 2;
}

.urgence-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.urgence-badge i {
    font-size: 1.2rem;
    color: #FCD34D;
}

.hero-urgence .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-urgence .title-accent {
    color: #FCD34D;
    font-weight: 300;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-urgence .title-main {
    font-size: 3.5rem;
    text-transform: uppercase;
    color: white;
}

.hero-urgence .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.btn-urgence {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: white;
    color: #DC2626;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-urgence:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #FCD34D;
    color: #000;
}

/* Situations Section */
.situations-section {
    padding: 100px 0;
    background: #f9fafb;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.title-accent {
    color: #DC2626;
}

.title-main {
    color: #000;
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.situation-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #DC2626;
}

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

.situation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
}

.situation-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.situation-card p {
    color: #6B7280;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #DC2626, #FCD34D);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    width: 45%;
    position: relative;
}

.process-step:nth-child(odd) .step-content {
    margin-right: auto;
}

.process-step:nth-child(even) .step-content {
    margin-left: auto;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #DC2626;
}

.step-content p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-icon {
    font-size: 2.5rem;
    color: #DC2626;
    opacity: 0.2;
    position: absolute;
    bottom: 15px;
    right: 20px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #f9fafb;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 40px;
    text-align: center;
}

.pricing-header i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FCD34D;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-details {
    padding: 40px;
}

.pricing-note {
    color: #6B7280;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #DC2626;
    font-size: 1.1rem;
}

.pricing-cta {
    text-align: center;
}

.pricing-from {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 20px;
}

.pricing-from strong {
    font-size: 2.5rem;
    color: #DC2626;
    display: block;
    margin-top: 10px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f9fafb;
    padding: 35px;
    border-radius: 15px;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: #DC2626;
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #374151;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #000;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #6B7280;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1F2937 100%);
    text-align: center;
    color: white;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: #FCD34D;
    animation: pulse 2s ease-in-out infinite;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: white;
    color: #DC2626;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    background: #FCD34D;
    color: #000;
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.cta-availability {
    font-size: 1.1rem;
    color: #FCD34D;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.cta-availability i {
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-urgence .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-urgence .title-main {
        font-size: 2.5rem;
    }
    
    .situations-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 100px;
    }
    
    .step-number {
        left: 40px;
        transform: translateX(-50%);
    }
    
    .step-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-large {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

