/* Page About - Styles optimisés */

/* Hero About Section */
.about-hero {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.02) 0%, rgba(255, 193, 7, 0.02) 100%);
}

.about-content-intro {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content-intro p {
    margin-bottom: 1.5rem;
}

.about-content-intro ul li {
    font-size: 1rem;
    line-height: 1.6;
}

/* Page About - Layout */
.about-page {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,59,48,0.02) 50%, rgba(255,255,255,1) 100%);
}

/* Services Section */
.card.hover-lift {
    transition: all 0.3s ease;
}

.card.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Timeline Alternative (removed, using cards instead) */
.about-timeline {
    display: none;
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .about-content-intro {
        font-size: 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* CTA About Section */
.bg-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    position: relative;
}

.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="rgba(255,255,255,0.05)"><circle cx="30" cy="30" r="30"/></g></g></svg>');
    opacity: 0.1;
}

.bg-primary > * {
    position: relative;
    z-index: 1;
}

/* FAQ Preview Cards */
.card.hover-lift transition {
    transition: all 0.3s ease;
}

.card.hover-lift:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* Garanties Cards */
.icon-float {
    animation: floatAnimation 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}