/* Styles spécifiques aux pages de services (à appliquer uniquement sur ces pages) */

/* Reset et styles de base pour les pages de services */
.service-page {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    padding-top: 80px; /* Compensation pour le header fixe */
}

/* Header spécifique aux pages de services */
.service-page header {
    background-color: #2c3e50;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-page .logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.service-page .logo span {
    color: #27ae60;
}

/* Hero section */
.service-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contenu du service */
.service-details {
    padding: 60px 0;
}

.service-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.service-content h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #27ae60;
}

.service-content h3 {
    color: #27ae60;
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.service-content ul {
    margin: 20px 0 30px;
    padding-left: 20px;
}

.service-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #27ae60;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Bouton CTA */
.btn {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #27ae60;
}

.btn:hover {
    background: transparent;
    color: #27ae60;
}

.service-cta {
    text-align: center;
    margin-top: 40px;
}

/* Footer spécifique aux pages de services */
.service-page footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.service-page .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.service-page .footer-col h3 {
    color: #27ae60;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.service-page .footer-col ul {
    list-style: none;
}

.service-page .footer-col ul li {
    margin-bottom: 10px;
}

.service-page .footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.service-page .footer-col ul li a:hover {
    color: #27ae60;
}

.service-page .footer-col p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-page .footer-col i {
    margin-right: 10px;
    color: #27ae60;
}

.service-page .copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        height: 40vh;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 30px 20px;
    }
}
