/* ==========================================
   COORDONNÉES - DESIGN SIMPLE & ÉPURÉ
   ✅ SANS BORDURES COLORÉES
========================================== */
:root {
    --bleu: #173F8A;
    --bleu-dark: #0F2D5E;
    --orange: #F39C12;
    --noir: #101828;
    --gris: #667085;
    --off: #F7F9FB;
    --border: #E4E7EC;
    --font-titres: 'Cabinet Grotesk', 'EB Garamond', sans-serif;
    --font-corps: 'EB Garamond', 'Georgia', serif;
}

.coo-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.coo-small { max-width: 800px; }

/* ==========================================
   OUVERTURE
========================================== */
.coo-hero {
    background: var(--off);
    text-align: center;
    padding: 110px 24px 90px;
    border-bottom: 1px solid var(--border);
}

.coo-label {
    display: inline-block;
    font-family: var(--font-titres);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 22px;
}

.coo-hero h1 {
    font-family: var(--font-titres);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--noir);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.coo-hero h1 span { color: var(--bleu); }

.coo-subtitle {
    font-family: var(--font-corps);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gris);
    max-width: 640px;
    margin: 0 auto;
}

/* ==========================================
   SECTIONS
========================================== */
.coo-section { padding: 80px 0; background: #FFFFFF; }
.coo-alt { background: var(--off); }

.coo-head { text-align: center; margin-bottom: 50px; }

.coo-head h2 {
    font-family: var(--font-titres);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 12px;
}

.coo-head h2 span { color: var(--bleu); }
.coo-head h2 i { color: var(--orange); margin-right: 8px; }

.coo-head p {
    font-family: var(--font-corps);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gris);
    max-width: 640px;
    margin: 0 auto;
}

/* ==========================================
   CARTES COORDONNÉES (bordure neutre fine)
========================================== */
.coo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.coo-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.35s ease;
}

.coo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(23, 63, 138, 0.12);
    border-color: transparent;
}

.coo-icon {
    width: 78px;
    height: 78px;
    background: var(--off);
    color: var(--bleu);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: all 0.4s ease;
    font-size: 1.8rem;
}

.coo-card:hover .coo-icon {
    background: var(--bleu);
    color: #FFFFFF;
    border-color: var(--bleu);
    transform: rotate(360deg);
}

.coo-card h3 {
    font-family: var(--font-titres);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 18px;
}

.coo-card p {
    font-family: var(--font-corps);
    font-size: 1rem;
    color: var(--gris);
    line-height: 1.85;
}

.coo-card p i {
    color: var(--orange);
    margin-right: 8px;
}

.coo-card a {
    color: var(--bleu);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.coo-card a:hover { color: var(--orange); }

/* ==========================================
   ✅ HORAIRES - CARTES NEUTRES (SANS BORD COLORÉ)
========================================== */
.coo-horaires-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.coo-horaire {
    background: #FFFFFF;
    border: 1px solid var(--border);   /* ✅ bordure grise fine, pas de couleur */
    border-radius: 12px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.coo-horaire:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(23, 63, 138, 0.1);
    border-color: transparent;
}

.coo-horaire-icon {
    width: 48px;
    height: 48px;
    background: var(--off);
    color: var(--bleu);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.coo-horaire-icon i { font-size: 1.1rem; }

.coo-horaire:hover .coo-horaire-icon {
    background: var(--bleu);
    color: #FFFFFF;
    border-color: var(--bleu);
}

.coo-horaire-jour {
    font-family: var(--font-titres);
    font-size: 1rem;
    font-weight: 700;
    color: var(--bleu);
    margin-bottom: 4px;
}

.coo-horaire-heure {
    font-family: var(--font-corps);
    font-size: 0.95rem;
    color: var(--gris);
}

.coo-horaire-heure i {
    color: var(--orange);
    margin-right: 6px;
}

/* ==========================================
   GOOGLE MAPS
========================================== */
.coo-map-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(23, 63, 138, 0.12);
    transition: all 0.4s ease;
}

.coo-map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(23, 63, 138, 0.2);
}

.coo-map {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.coo-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    pointer-events: none;
}

.coo-map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(23, 63, 138, 0.88), rgba(15, 45, 94, 0.88));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.coo-map-wrapper:hover .coo-map-overlay { opacity: 1; }

.coo-map-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #FFFFFF;
    text-align: center;
}

.coo-map-overlay-content i {
    font-size: 2rem;
    color: var(--orange);
    background: rgba(255, 255, 255, 0.2);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.coo-map-overlay-content span {
    font-family: var(--font-titres);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ==========================================
   CTA RÉSEAUX SOCIAUX
========================================== */
.coo-cta-section {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--off) 100%);
    border-top: 1px solid var(--border);
}

.coo-cta { text-align: center; }

.coo-cta h2 {
    font-family: var(--font-titres);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 12px;
}

.coo-cta h2 span { color: var(--orange); }

.coo-cta p {
    font-family: var(--font-corps);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gris);
    margin-bottom: 30px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.coo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 32px;
    background: var(--bleu);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-titres);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 26px rgba(23, 63, 138, 0.25);
}

.coo-btn:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(243, 156, 18, 0.4);
}

.coo-btn i:last-child { transition: transform 0.3s ease; }
.coo-btn:hover i:last-child { transform: translateX(5px); }

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 992px) {
    .coo-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .coo-horaires-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .coo-hero { padding: 80px 20px 65px; }
    .coo-section { padding: 60px 0; }
    .coo-map { height: 320px; }
    .coo-map-overlay-content i { width: 58px; height: 58px; font-size: 1.5rem; }
    .coo-map-overlay-content span { font-size: 1rem; }
    .coo-btn { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
    .coo-hero h1 { font-size: 1.9rem; }
    .coo-card { padding: 32px 22px; }
    .coo-horaire { flex-direction: column; text-align: center; }
}