/**
 * Ferry Recycling - Styles spécifiques pour la page Services
 */

/* Services Hero Section */
#services-hero {
    padding: 180px 0 80px;
    background: linear-gradient(to right, rgba(59, 148, 94, 0.8), rgba(26, 101, 158, 0.8)), url('../images/services-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

#services-hero h1 {
    color: white;
    margin-bottom: 30px;
}

#services-hero .lead {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

#services-hero .quote {
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 300;
    margin-top: 30px;
    color: #F2C14E;
}

/* Services Overview Section */
#services-overview {
    padding: 80px 0;
    background-color: white;
}

.services-process {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: #F9F9F9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1A659E;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    color: #1A659E;
}

/* Detailed Services Section */
#detailed-services {
    padding: 80px 0;
    background-color: #F9F9F9;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse .service-info {
    direction: ltr;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-info {
    padding: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(26, 101, 158, 0.1);
    color: #1A659E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1A659E;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: #3B945E;
    margin-right: 10px;
}

/* Additional Services Section */
#additional-services {
    padding: 80px 0;
    background-color: white;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.additional-service-card {
    background-color: #F9F9F9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #1A659E;
}

.additional-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.additional-service-card .icon {
    font-size: 2.5rem;
    color: #1A659E;
    margin-bottom: 20px;
}

.additional-service-card h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Call to Action Section */
#cta {
    padding: 80px 0;
    background: linear-gradient(to right, rgba(26, 101, 158, 0.9), rgba(59, 148, 94, 0.9)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

#cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail.reverse {
        direction: ltr;
    }
    
    .service-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    #services-hero h1 {
        font-size: 2.2rem;
    }
    
    #services-hero .lead {
        font-size: 1rem;
    }
    
    #services-hero .quote {
        font-size: 1.1rem;
    }
    
    .service-info h3 {
        font-size: 1.5rem;
    }
}
