/* ============================================
   STYLES SPÉCIFIQUES PAGES VILLES
   ============================================ */

/* Hero section spécifique villes */
.hero-city-section {
    padding-top: calc(var(--header-height) + var(--safe-top) + var(--space-12));
    padding-bottom: var(--space-16);
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-800) 100%);
    position: relative;
    overflow: hidden;
}

.hero-city-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

/* Section trajet info */
.trajet-info-section {
    background: white;
    padding: var(--space-16) 0;
}

.trajet-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .trajet-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.trajet-card {
    background: var(--bg-secondary);
    border: 2px solid var(--success-500);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-base);
}

.trajet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trajet-card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    margin: 0 auto var(--space-4);
}

.trajet-card h3 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.trajet-card p {
    color: var(--text-secondary);
    font-size: var(--text-base);
}

/* Section SEO Content */
.seo-content-section {
    background: white;
    padding: var(--space-16) 0;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
}

.seo-content h2 {
    color: var(--text-primary);
    font-size: var(--text-2xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-8);
}

.seo-content h3 {
    color: var(--text-primary);
    font-size: var(--text-xl);
    font-weight: 600;
    margin: var(--space-8) 0 var(--space-4);
}

.seo-content p {
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
}

.seo-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.seo-content ul {
    margin-left: var(--space-6);
    margin-bottom: var(--space-6);
}

.seo-content li {
    margin-bottom: var(--space-2);
    position: relative;
}

.seo-content li::marker {
    color: var(--color-primary);
}

/* Centrer le contenu */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Bouton CTA centré */
.cta-center {
    text-align: center;
    margin-top: var(--space-8);
}

.cta-center .btn-primary {
    display: inline-flex;
    max-width: 400px;
}
