/* ================================================
   PARIS.CSS — Page ville Paris
   /tr/fransa/paris/
   ================================================ */

/* ── Hero ────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #0d8fd8 0%, #1a9de8 100%);
    color: white;
    padding: 64px 20px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}

.hero-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px; padding: 6px 18px;
    font-size: .85rem; font-weight: 600; margin-bottom: 20px;
    letter-spacing: .02em;
}

.hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800; line-height: 1.2; margin-bottom: 14px;
}

.hero h1 .highlight { color: #FFD700; }

.hero h2 {
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    font-weight: 400; opacity: .9; margin-bottom: 32px;
}

/* Recherche */
.hero-search-wrapper { max-width: 620px; margin: 0 auto 36px; }

.hero-search-form {
    display: flex; align-items: center;
    background: white; border-radius: 60px;
    padding: 6px 6px 6px 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.hero-search-icon { font-size: 1.1rem; opacity: .5; margin-right: 8px; }

.hero-search-input {
    flex: 1; border: none; outline: none;
    font-size: 1rem; background: transparent; color: #1a202c;
}

.hero-search-btn {
    background: linear-gradient(135deg, #e0198a, #e0198a);
    color: white; border: none; padding: 12px 26px;
    border-radius: 50px; font-weight: 700; font-size: .95rem;
    cursor: pointer; transition: all .3s;
}

.hero-search-btn:hover { transform: scale(1.04); box-shadow: 0 5px 15px rgba(224,25,138,.4); }

/* Stats hero */
.hero-stats {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}

.hero-stat-card {
    background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 14px; padding: 14px 24px;
    text-align: center; min-width: 140px;
}

.hero-stat-number { font-size: 1.8rem; font-weight: 800; display: block; }
.hero-stat-label  { font-size: .82rem; opacity: .88; margin-top: 2px; }

/* ── Fil d'Ariane ─────────────────────────────────── */
.breadcrumb-bar {
    background: white; border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
}

.breadcrumb-bar .container {
    display: flex; align-items: center; gap: 6px;
    font-size: .82rem; color: #718096;
}

.breadcrumb-bar a { color: #718096; text-decoration: none; transition: color .2s; }
.breadcrumb-bar a:hover { color: #1a9de8; }
.breadcrumb-bar .sep { opacity: .5; }
.breadcrumb-bar .current { color: #1a202c; font-weight: 600; }

/* ── Sections communes ───────────────────────────── */
.section { padding: 52px 0; }
.section-alt { background: #f7fafc; }
.section-title    { font-size: clamp(1.3rem, 2.5vw, 1.85rem); font-weight: 800; color: #1a202c; margin-bottom: 8px; text-align: center; }
.section-subtitle { color: #718096; text-align: center; margin-bottom: 32px; font-size: .95rem; }

/* ── Grille catégories ───────────────────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.category-tile {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 14px; border-radius: 14px;
    border: 2px solid #e2e8f0; background: white;
    text-decoration: none; color: #1a202c;
    transition: all .2s ease;
}

.category-tile:hover {
    border-color: #1a9de8;
    box-shadow: 0 4px 16px rgba(26,157,232,.15);
    transform: translateY(-2px);
}

.category-tile .cat-icon  { font-size: 1.7rem; width: 38px; text-align: center; flex-shrink: 0; }
.category-tile .cat-info  { display: flex; flex-direction: column; }
.category-tile .cat-name  { font-weight: 700; font-size: .88rem; line-height: 1.3; }
.category-tile .cat-count { font-size: .75rem; color: #718096; margin-top: 2px; }
.category-tile.skeleton   { background: #e2e8f0; border: none; height: 68px; animation: pulse 1.5s infinite; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* ── Son eklenen firmalar ────────────────────────── */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.company-card {
    background: white; border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    padding: 18px; text-decoration: none; color: #1a202c;
    display: flex; align-items: center; gap: 14px;
    transition: all .2s ease;
}

.company-card:hover {
    border-color: #1a9de8;
    box-shadow: 0 4px 16px rgba(26,157,232,.12);
    transform: translateY(-2px);
}

.company-avatar {
    width: 50px; height: 50px; border-radius: 12px;
    background: linear-gradient(135deg, #1a9de8, #e0198a);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 1.1rem;
    flex-shrink: 0;
}

.company-info { flex: 1; min-width: 0; }
.company-name { font-weight: 700; font-size: .92rem; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.company-meta { font-size: .78rem; color: #718096; display: flex; align-items: center; gap: 6px; }
.company-cat  { background: #f0f9ff; color: #1a9de8; padding: 2px 8px; border-radius: 10px; font-weight: 600; }

/* ── Bloc SEO texte ──────────────────────────────── */
.seo-block {
    background: white; border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    padding: 28px 32px; max-width: 800px; margin: 0 auto;
}

.seo-block p {
    color: #4a5568; line-height: 1.8; font-size: .95rem;
}

/* ── CTA ─────────────────────────────────────────── */
.cta-final {
    background: linear-gradient(135deg, #0d1b3e 0%, #1a2f6e 60%, #e0198a 100%);
    color: white; padding: 70px 20px; text-align: center;
    position: relative; overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute; top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,.04); border-radius: 50%;
}

.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px; padding: 7px 18px;
    font-size: .85rem; font-weight: 600; margin-bottom: 20px;
}

.cta-final h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 12px; }
.cta-final p  { opacity: .9; margin-bottom: 20px; font-size: 1rem; }

.cta-features {
    display: flex; justify-content: center; gap: 20px;
    flex-wrap: wrap; margin-bottom: 28px; font-size: .9rem; opacity: .88;
}

.btn-urgent {
    display: inline-block;
    background: white; color: #e0198a;
    padding: 15px 38px; border-radius: 50px;
    font-size: 1.05rem; font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
    transition: transform .2s, box-shadow .2s;
}

.btn-urgent:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.3); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 640px) {
    .hero { padding: 44px 16px 36px; }
    .hero-stats { gap: 8px; }
    .hero-stat-card { min-width: 120px; padding: 12px 16px; }
    .hero-stat-number { font-size: 1.5rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .companies-grid  { grid-template-columns: 1fr; }
    .seo-block { padding: 20px; }
    .cta-features { flex-direction: column; gap: 8px; }
}

/* ── Villes proches ──────────────────────────────── */
.nearby-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 8px;
}

.city-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 22px;
    border: 1.5px solid #e2e8f0;
    background: white;
    text-decoration: none;
    color: #1a202c;
    font-size: .88rem;
    font-weight: 600;
    transition: all .2s ease;
}

.city-tag:hover {
    border-color: #1a9de8;
    color: #1a9de8;
    background: #f0f9ff;
}
