/* ===================================
   ZONES DESSERVIES PAGE CSS
   =================================== */

/* Note: Base styles (navbar, footer, global) are in base.css */
/* STYLES SPECIFIQUES ZONES DESSERVIES */

/* Page Container */
.seo-content {
    padding: 4rem 0;
    background: var(--bg-primary);
}

/* Hero Section adjustment for fixed navbar */
.hero {
    padding-top: 160px;
}

/* Premium Page Header Style */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}


.content-article {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-primary);
    padding: 0 1rem;
}

/* Lead Introduction */
.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Typography */
.content-article h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    color: var(--text-primary);
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.content-article h2:first-of-type {
    margin-top: 2rem;
}

.content-article h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

/* Zones Grid */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.zone-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.zone-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.zone-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zone-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.zone-card li:last-child {
    border-bottom: none;
}

.zone-card li:before {
    content: "\1F4CD";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Services List */
.services-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.services-list li {
    padding: 1.2rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
}

.services-list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.services-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Call to Action */
.cta-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-section h2 {
    color: white;
    margin-top: 0;
    font-size: 2.2rem;
    border-bottom: none;
    padding-bottom: 0;
}

.cta-section h2::after {
    display: none;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Specific button styles for CTA section to stand out against gradient */
.cta-section a.btn {
    text-decoration: none !important;
    /* Force remove underline */
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-primary:hover,
.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    /* Orange text on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }

    .seo-content {
        padding: 2rem 0;
    }

    .content-article h2 {
        font-size: 1.6rem;
        margin-top: 3rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .zones-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

/* Dark Mode */
body.dark-mode .lead-paragraph {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .zone-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .zone-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

body.dark-mode .zone-card h3 {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

body.dark-mode .zone-card li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .services-list {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .services-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}