/* Services Pages - Styles spécifiques */

.page-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    margin-top: 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--light-gray);
}

/* Service Content */
.service-content {
    padding: 4rem 0;
    background: var(--light-gray);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-main {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-main h2 {
    color: var(--primary-black);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    border-left: 4px solid var(--primary-red);
    padding-left: 1rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.advantage-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.15);
}

.advantage-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-black);
}

.advantage-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.step-icon i {
    font-size: 1.5rem;
}

.step h3 {
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

/* Applications List */
.applications-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.applications-list li {
    padding: 0.75rem 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.6;
}

.applications-list i {
    color: var(--primary-red);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Numbered List */
.numbered-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.numbered-list li {
    counter-increment: item;
    padding: 0.75rem 0 0.75rem 3rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 30px;
    height: 30px;
    background: var(--gradient-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Customization Grid */
.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.custom-option {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.custom-option h3 {
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-option h3 i {
    color: var(--primary-red);
}

.custom-option p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-box,
.info-box,
.related-services {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cta-box {
    background: var(--gradient-red);
    color: var(--white);
    text-align: center;
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-box .btn {
    background: var(--white);
    color: var(--primary-red);
}

.cta-box .btn:hover {
    background: var(--light-gray);
}

.info-box h3,
.related-services h3 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 0.5rem;
}

.info-box ul,
.info-box ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 0.75rem 0;
    color: #555;
    border-bottom: 1px solid var(--light-gray);
}

.info-box li:last-child {
    border-bottom: none;
}

.info-box strong {
    color: var(--primary-black);
}

.info-box .note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--primary-red);
    font-style: italic;
}

/* Related Services */
.related-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-black);
    transition: var(--transition);
    margin-bottom: 0.75rem;
}

.related-link:last-child {
    margin-bottom: 0;
}

.related-link i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.related-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(5px);
}

.related-link:hover i {
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 5rem 0 2.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .content-main {
        padding: 2rem;
    }

    .content-main h2 {
        font-size: 1.5rem;
    }

    .advantages-grid,
    .process-steps,
    .customization-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 4rem 0 2rem;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .content-main {
        padding: 1.5rem;
    }

    .content-main h2 {
        font-size: 1.3rem;
    }

    .advantage-card {
        padding: 1.5rem;
    }

    .cta-box,
    .info-box,
    .related-services {
        padding: 1.5rem;
    }

    .service-content {
        padding: 2rem 0;
    }
}
