
.cotation-container {
    background: linear-gradient(135deg, var(--bs-gray-50) 0%, var(--bs-body-bg) 100%);
    min-height: 90vh;
    padding: 3rem 0;
}

.cotation-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--bs-body-bg);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--bs-border-color);
}

.cotation-icon {
    font-size: 4rem;
    color: #0047FF;
    margin-bottom: 2rem;
    animation: sparkle 2s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% { transform: scale(1) rotate(0deg); opacity: 1; }
    100% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
}

.cotation-title {
    color: var(--bs-body-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cotation-subtitle {
    color: #D10000;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.cotation-message {
    text-align: left;
    margin-top: 2rem;
}

.cotation-restructuration {
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.08) 0%, rgba(209, 0, 0, 0.08) 100%);
    border: 1px solid rgba(0, 71, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.restructuration-icon {
    font-size: 3rem;
    color: #D10000;
    margin-bottom: 1rem;
    animation: twinkle 1.5s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cotation-restructuration h3 {
    color: #0047FF;
    font-weight: 700;
    margin-bottom: 1rem;
}

.restructuration-info {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Mode sombre pour restructuration-info */
[data-bs-theme="dark"] .restructuration-info {
    background: rgba(71, 71, 71, 0.5);
    color: white;
}

.cotation-objectives {
    margin: 3rem 0;
}

.cotation-objectives h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.objective-card {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
}

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

.objective-icon {
    font-size: 2.5rem;
    color: #0047FF;
    margin-bottom: 1rem;
}

.objective-card h4 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.objective-card p {
    color: var(--bs-secondary-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cotation-improvements {
    background: var(--bs-gray-100);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.cotation-improvements h3 {
    color: #D10000;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.improvements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.improvement-section h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.improvement-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--bs-secondary-color);
}

.improvement-list i {
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #D10000;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--bs-secondary-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cotation-timeline {
    margin: 3rem 0;
}

.cotation-timeline h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bs-border-color);
}

.timeline-item {
    position: relative;
    padding: 1.5rem 0 1.5rem 4rem;
    margin-bottom: 1rem;
}

.timeline-marker {
    position: absolute;
    left: 12px;
    top: 2rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bs-gray-400);
    border: 3px solid var(--bs-body-bg);
}

.timeline-item.active .timeline-marker {
    background: #0047FF;
}

.timeline-content h4 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--bs-secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-status {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    display: inline-block;
}

.timeline-status.completed {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.timeline-status.in-progress {
    background: rgba(0, 71, 255, 0.1);
    color: #0047FF;
}

.timeline-status.upcoming {
    background: rgba(108, 117, 125, 0.1);
    color: var(--bs-secondary-color);
}

.cotation-contact {
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.05) 0%, rgba(209, 0, 0, 0.05) 100%);
    border: 1px solid rgba(0, 71, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.contact-header h3 {
    color: #D10000;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-action {
    margin-top: 1.5rem;
}

.contact-btn {
    border-radius: 25px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
        width: 100%;
        display: flex;
    }
    
    .contact-action {
        width: 100%;
    }
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.cotation-faq {
    margin: 3rem 0;
}

.cotation-faq h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--bs-secondary-color);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cotation-wrapper {
        padding: 2rem 1rem;
    }
    
    .cotation-title {
        font-size: 2rem;
    }
    
    .objectives-grid,
    .benefits-grid,
    .improvements-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
}