/* ============================================================
   Destination d'Exception Séminaire — Main Stylesheet
   POUR CHANGER LES COULEURS : modifier les variables --primary, --secondary, --accent ci-dessous
   ============================================================ */

:root {
    --primary: #4DA6C8;
    --primary-dark: #3a8aaa;
    --primary-light: #7bc0d8;
    --primary-rgb: 77, 166, 200;
    --secondary: #323233;
    --accent: #EC407A;
    --accent-dark: #d81b60;
    --green: #8CA67B;
    --green-dark: #7a9469;
    --beige: #F3ECE2;
    --beige-light: #EFE9E3;
    --orange: #ffa748;
    --orange-dark: #E0923F;
    --purple: #881b76;
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #e53935;
    --info: #2196F3;
    --text: #323233;
    --text-light: #666666;
    --text-muted: #999999;
    --bg: #ffffff;
    --bg-light: #F3ECE2;
    --bg-dark: #1a1a2e;
    --border: #EFE9E3;
    --border-light: #EFE9E3;
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-accent: 'Dancing Script', cursive;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --shadow-sm: 0 2px 5px rgba(129,125,116,.15);
    --shadow-md: 0 5px 15px rgba(129,125,116,.2);
    --shadow-lg: 0 5px 5px 3px rgba(129,125,116,.3);
    --container-max: 1350px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-primary); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: #000000; text-decoration: none; transition: all .2s ease-in; }
a:hover { color: var(--accent); transition: all .2s ease-in-out; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--secondary); }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
.text-script { font-family: var(--font-accent); font-weight: 400; }
.text-accent-yellow { color: #f0c040; }
.text-accent-pink { color: var(--accent); }

/* === Layout === */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 1rem; }
.section { padding: 3rem 0; }
.section-title { text-align: center; margin-bottom: 2rem; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--primary); margin: .75rem auto 0; border-radius: 2px; }
.section-title-styled { text-align: center; margin-bottom: 2.5rem; font-size: 2rem; }
.section-surtitle { display: block; text-align: center; font-size: .85rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: .5rem; }
.section-subtitle { text-align: center; color: var(--text-light); max-width: 600px; margin: -1rem auto 2rem; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* === Buttons === */
.btn { display: inline-block; font-size: 16px; padding: 14px 36px; font-weight: 700; border-radius: var(--radius-xl); text-decoration: none; cursor: pointer; transition: all .2s ease-in; border: 2px solid transparent; text-align: center; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--green); color: #000; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--secondary); color: #fff; transform: translateY(-1px); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: var(--accent); color: #fff; }
.btn-green { background: var(--green); color: #000; }
.btn-green:hover { background: var(--beige); color: #000; }
.btn-orange { background: var(--orange); color: #000; }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-devis { background: var(--accent); color: #fff; }
.btn-devis:hover { background: var(--secondary); color: #fff; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; }
.btn-lg { padding: .85rem 2rem; font-size: 1.1rem; }
.btn-add-to-cart { background: var(--accent); color: #fff; border-radius: var(--radius-xl); }
.btn-add-to-cart:hover { background: var(--accent-dark); color: #fff; }
.btn-add-to-cart.added { background: var(--success); }
.btn-outline-light { border-color: #fff; color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--secondary); }

/* === Cards === */
.card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-image { position: relative; overflow: hidden; }
.card-image img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .4s; }
.card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: 1.25rem; }
.card-footer { padding: .75rem 1.25rem; border-top: 1px solid var(--border-light); }
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) { .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; } }

/* === Badges === */
.badge { display: inline-flex; align-items: center; padding: .25rem .65rem; border-radius: var(--radius-sm); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.badge-primary { background: rgba(var(--primary-rgb), .12); color: var(--primary-dark); }
.badge-accent { background: #fce4ec; color: var(--accent-dark); }
.badge-success { background: #e8f5e9; color: #2e7d32; }
.badge-light { background: var(--bg-light); color: var(--text-light); }
.badge-meeting { background: var(--accent); color: #fff; }
.badge-eco { background: var(--green); color: #fff; }
.badge-teambuilding { background: var(--primary); color: #fff; }

/* === Stars === */
.star { color: #ddd; font-size: 1.1rem; }
.star.filled { color: #f4b400; }
.venue-stars { display: flex; gap: 2px; }

/* === Forms === */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; margin-bottom: .35rem; font-weight: 700; font-size: .9rem; color: var(--secondary); }
.form-control { width: 100%; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: 25px; font-size: .95rem; transition: border-color .2s, box-shadow .2s; background: #fff; }
.form-control:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .15); }
.form-control:hover { border-color: var(--purple); }
textarea.form-control { min-height: 120px; resize: vertical; border-radius: var(--radius-md); }
.form-check { display: flex; align-items: center; gap: .5rem; margin-bottom: .35rem; }
.form-check input[type="checkbox"],
.form-check input[type="radio"] { accent-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 576px) { .form-row { grid-template-columns: 1fr; } }

/* === Alerts === */
.alert { padding: .75rem 0; font-size: .9rem; }
.alert .container { display: flex; justify-content: space-between; align-items: center; }
.alert-success { background: #e8f5e9; color: #2e7d32; }
.alert-danger { background: #ffebee; color: #c62828; }
.alert-warning { background: #fff3e0; color: #e65100; }
.alert-close { font-size: 1.3rem; color: inherit; opacity: .6; }
.alert-close:hover { opacity: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.header-inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 75px; padding: 0 40px; }
.header-left { display: flex; align-items: center; gap: 1rem; }
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 42px; width: auto; }
/* Burger toggle */
.burger-toggle { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: none; padding: 0; transition: background .2s; }
.burger-toggle:hover { background: var(--bg-light); }
.burger-icon, .burger-icon::before, .burger-icon::after { display: block; width: 20px; height: 2px; background: var(--secondary); position: relative; transition: all .3s; }
.burger-icon::before { content: ''; position: absolute; top: -6px; width: 20px; }
.burger-icon::after { content: ''; position: absolute; top: 6px; width: 20px; }
/* Bouton centré absolument */
.header-inner > .btn-header-project { position: absolute; left: 50%; transform: translateX(-50%); }
.btn-header-project { position: relative; background: transparent; color: var(--secondary); border: 3.5px solid transparent; border-radius: var(--radius-xl); font-size: 14px; font-weight: 600; padding: 6px 30px; transition: all .2s; white-space: nowrap; background-clip: padding-box; }
.btn-header-project::before { content: ''; position: absolute; inset: -3.5px; border-radius: var(--radius-xl); background: linear-gradient(90deg, #0F4C81, #EC407A, #0F4C81); background-size: 200% 100%; animation: sidenav-gradient-slide 3s linear infinite; z-index: -1; }
.btn-header-project::after { content: ''; position: absolute; inset: 0; border-radius: calc(var(--radius-xl) - 3.5px); background: #fff; z-index: -1; }
.btn-header-project:hover { color: #fff; }
.btn-header-project:hover::before { background: var(--secondary); animation: none; }
.btn-header-project:hover::after { background: var(--secondary); }
.header-right { display: flex; align-items: center; gap: 1.25rem; }
.header-phone { display: flex; align-items: center; gap: .5rem; color: var(--secondary); font-weight: 700; font-size: .9rem; white-space: nowrap; height: 40px; line-height: 1; }
.header-phone svg { flex-shrink: 0; }
.header-phone:hover { color: var(--accent); }
.btn-selection { position: relative; display: flex; align-items: center; gap: .5rem; background: var(--secondary); color: #fff; border-radius: var(--radius-xl); font-size: 14px; font-weight: 700; padding: 0 22px; height: 40px; transition: all .2s; white-space: nowrap; }
.btn-selection svg { stroke: #fff; flex-shrink: 0; }
.btn-selection:hover { background: #444; color: #fff; }
.cart-badge { position: absolute; top: -4px; right: -6px; background: var(--accent); color: #fff; font-size: .65rem; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; border: 2px solid #fff; }

/* ===== Sidebar Navigation ===== */
.sidenav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity .3s; }
.sidenav-overlay.active { opacity: 1; pointer-events: auto; }
.sidenav { position: fixed; top: 0; left: 0; width: 380px; max-width: 85vw; height: 100vh; height: 100dvh; background: #fff; z-index: 2000; transform: translateX(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: 4px 0 24px rgba(0,0,0,.12); overflow-y: auto; }
.sidenav.open { transform: translateX(0); }
.sidenav-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: none; flex-shrink: 0; position: relative; }
.sidenav-header::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #0F4C81, #EC407A, #0F4C81); background-size: 200% 100%; animation: sidenav-gradient-slide 3s linear infinite; }
@keyframes sidenav-gradient-slide { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.sidenav-logo img { height: 40px; width: auto; }
.sidenav-close { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: none; transition: background .2s; color: var(--secondary); }
.sidenav-close:hover { background: var(--bg-light); }
.sidenav-menu { padding: 1.5rem 0; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.sidenav-link { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; font-size: .95rem; font-weight: 700; color: #0F4C81; text-transform: uppercase; letter-spacing: .5px; transition: all .2s; text-decoration: none; }
.sidenav-link svg { flex-shrink: 0; stroke: #212120; width: 30px; height: 30px; }
.sidenav-link:hover { background: rgba(15, 76, 129, .05); color: #0F4C81; }
.sidenav-link:hover svg { stroke: #212120; }
.sidenav-promo { padding: 0 1.5rem 1.25rem; flex-shrink: 0; }
.sidenav-promo-img { width: 100%; border-radius: var(--radius-md); }
.sidenav-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border-light); flex-shrink: 0; }
.sidenav-contact { display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 600; color: var(--secondary); margin-bottom: .6rem; text-decoration: none; }
.sidenav-contact:hover { color: var(--accent); }
.sidenav-contact svg { flex-shrink: 0; }
.sidenav-cta { display: block; margin-top: 1rem; text-align: center; padding: 12px 24px; font-size: .9rem; border-radius: var(--radius-xl); }

@media (max-width: 992px) {
    .header-inner { padding: 0 20px; }
    .header-phone span { display: none; }
    .header-inner > .btn-header-project { display: none; }
    .btn-selection span { display: none; }
    .btn-selection { padding: 10px; }
}
@media (max-width: 576px) {
    .header-inner { padding: 0 14px; }
    .header-left { gap: .5rem; }
    .header-right { gap: .75rem; }
    .logo { flex-shrink: 1; min-width: 0; }
    .logo-img { height: 32px; max-width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #2E2E2E; color: rgba(255,255,255,.75); padding: 3rem 0; margin-top: 0; }
.site-footer .container { max-width: 1500px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo-img { width: 200px; max-width: 100%; height: auto; }
.footer-brand-name { color: #fff; font-size: .95rem; text-transform: uppercase; font-weight: 700; line-height: 1.3; }
.footer-title { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-weight: 700; }
.footer-text { font-size: 12px; line-height: 1.3; color: rgba(255,255,255,.65); margin-bottom: .75rem; }
.footer-contact { font-size: 12px; line-height: 1.3; color: rgba(255,255,255,.65); }
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-links li { margin-bottom: .35rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.3; transition: color .2s; }
.footer-links a:hover { color: #fff; }

@media (max-width: 992px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs { background: var(--beige); padding: .75rem 0; border-bottom: 1px solid var(--border-light); }
.breadcrumbs-list { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; font-size: .85rem; }
.breadcrumbs-item a { color: var(--primary); }
.breadcrumbs-sep { color: var(--text-muted); }
.breadcrumbs-item span[aria-current] { color: var(--text-light); }

/* ============================================================
   HERO (Homepage) — Split layout image + diagonale courbée
   ============================================================ */
.hero { position: relative; width: 100%; min-height: 560px; }

/* Image côté droit */
.hero-image { position: absolute; top: 0; right: 0; width: 50%; height: 100%; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Zone blanche gauche */
.hero-white { position: absolute; top: 0; left: 0; width: 55%; height: 100%; background: #fff; z-index: 2; }

/* Contenu par-dessus */
.hero-content { position: relative; z-index: 3; padding: 4rem 40px 4rem 260px; max-width: 1000px; min-height: 560px; display: flex; flex-direction: column; justify-content: center; }

/* Badge */
.hero-badge { display: inline-block; background: var(--beige); color: var(--secondary); font-size: .85rem; font-weight: 600; padding: .45rem 1.1rem; border-radius: var(--radius-xl); margin-bottom: 1.5rem; align-self: flex-start; }

/* Titre */
.hero-title { font-size: 50px; font-weight: 700; line-height: 1.15; margin-bottom: 2.5rem; color: var(--secondary); font-family: var(--font-heading); }
.hero-highlight { color: #0F4C81; font-weight: 700; }
.hero-rotating-wrapper { display: inline-block; position: relative; overflow: hidden; vertical-align: bottom; height: 1.15em; }
.hero-rotating { display: inline-block; color: var(--accent); transition: opacity .4s, transform .4s; }
.hero-rotating.fade-out { opacity: 0; transform: translateY(-100%); }
.hero-rotating.fade-in { opacity: 0; transform: translateY(100%); }
.hero-rotating.visible { opacity: 1; transform: translateY(0); }

/* Barre de recherche */
/* max-width : la barre commence a 260px du bord, sans quoi elle depasse l'ecran vers 1366px */
.hero-searchbar { display: flex; align-items: stretch; background: #fff; border-radius: 16px; box-shadow: 0 4px 30px rgba(0,0,0,.1); width: 1100px; max-width: calc(100vw - 300px); height: 100px; position: relative; z-index: 10; overflow: visible; }
.hero-searchbar-field { flex: 1; padding: .85rem 1.1rem; display: flex; flex-direction: column; justify-content: center; gap: .3rem; }
.hero-searchbar-label { font-size: .65rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: .5px; }
.hero-searchbar-input { display: flex; align-items: center; gap: .5rem; }
.hero-searchbar-input svg { flex-shrink: 0; color: var(--primary); }
.hero-searchbar-input input { border: none; outline: none; font-size: .85rem; color: var(--text-light); background: transparent; width: 100%; padding: 0; }
.hero-searchbar-input input::placeholder { color: var(--text-muted); }
/* Custom select dropdown */
.hero-select-wrapper { position: relative; cursor: pointer; }
.hero-select-display { font-size: .85rem; color: var(--text-muted); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-select-display.has-value { color: var(--text-light); }
.hero-select-arrow { flex-shrink: 0; color: var(--text-muted); transition: transform .2s; }
.hero-select-wrapper.open .hero-select-arrow { transform: rotate(180deg); }
.hero-select-dropdown { display: none; position: absolute; top: calc(100% + 12px); left: -1rem; right: -1rem; background: #fff; border-radius: var(--radius-md); box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 200; overflow: hidden; }
.hero-select-wrapper.open .hero-select-dropdown { display: block; }
.hero-select-option { padding: .7rem 1rem; font-size: .85rem; color: var(--text-light); cursor: pointer; transition: background .15s, color .15s; display: flex; align-items: center; gap: .5rem; }
.hero-select-option:hover { background: rgba(77, 166, 200, .08); color: var(--primary); }
.hero-select-option.selected { background: var(--primary); color: #fff; font-weight: 600; }
.hero-select-option + .hero-select-option { border-top: 1px solid var(--border-light); }
/* City autocomplete dropdown */
.hero-city-wrapper { position: relative; }
.hero-city-dropdown { display: none; position: absolute; top: calc(100% + 12px); left: -1rem; right: -1rem; background: #fff; border-radius: var(--radius-md); box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 9999; max-height: 220px; overflow-y: auto; }
.hero-city-dropdown.open { display: block; }
.hero-city-option { padding: .6rem 1rem; font-size: .85rem; color: var(--text-light); cursor: pointer; transition: background .15s, color .15s; display: flex; align-items: center; gap: .5rem; }
.hero-city-option:hover { background: rgba(77, 166, 200, .08); color: var(--primary); }
.hero-city-option + .hero-city-option { border-top: 1px solid var(--border-light); }
.hero-searchbar-divider { width: 1px; background: #e8e8e8; margin: .6rem 0; flex-shrink: 0; }
.hero-searchbar-btn { display: flex; align-items: center; justify-content: center; gap: .5rem; background: #f0c040; color: var(--secondary); border: none; border-radius: 14px; font-size: .75rem; font-weight: 700; width: 150px; height: 42px; white-space: nowrap; letter-spacing: .5px; cursor: pointer; margin: auto 1.2rem auto -.5rem; transition: all .2s; flex-shrink: 0; }
.hero-searchbar-btn svg { flex-shrink: 0; }
.hero-searchbar-btn:hover { background: #e0ad30; transform: translateY(-1px); }

@media (max-width: 992px) {
    .hero { min-height: auto; }
    .hero-white { display: none; }
    .hero-image { position: relative; width: 100%; height: 300px; }
    .hero-content { padding: 2rem 20px; max-width: 100%; min-height: auto; background: #fff; }
    .hero-title { font-size: 2.2rem; }
    .hero-searchbar { width: 100%; max-width: none; height: auto; flex-direction: column; border-radius: 14px; }
    .hero-searchbar-divider { width: auto; height: 1px; margin: 0 .6rem; }
    .hero-searchbar-btn { margin: 0 .5rem .5rem .5rem; justify-content: center; border-radius: 12px; }
}

/* ============================================================
   LOGOS BAND
   ============================================================ */
.logos-band { background: linear-gradient(to right, #0F4C81, #EC407A); height: 125px; display: flex; align-items: center; }
.logos-band-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; width: 100%; padding: 0 400px; }
.client-logo { height: 40px; width: auto; filter: brightness(0) invert(1); }

/* ============================================================
   INTRO SECTION
   ============================================================ */
.section-intro { padding: 4rem 0; }
.intro-content { max-width: 1500px; margin: 0 auto; text-align: center; }
.intro-title { font-size: 25px; font-weight: 700; color: #000; line-height: normal; margin-bottom: 1.5rem; font-family: var(--font-heading); }
.intro-content p { color: #000; text-align: center; font-size: 15px; font-weight: 400; line-height: normal; margin-bottom: 1rem; }
.intro-cta { margin-top: 2rem; }
.btn-gradient { display: inline-block; background: linear-gradient(90deg, #0F4C81 0%, #EC407A 100%); color: #fff; border: none; border-radius: 50px; padding: .85rem 2.5rem; font-size: 1rem; font-weight: 600; cursor: pointer; transition: opacity .2s; text-decoration: none; }
.btn-gradient:hover { opacity: .9; color: #fff; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.section-stats { background: #FCF4E6; display: flex; align-items: center; justify-content: center; min-height: 160px; }
/* flex-wrap : les 4 chiffres passent a la ligne au lieu de deborder vers 1000-1200px */
.stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 4rem; padding: 2.5rem 3rem; max-width: 100%; }
.stat-item { display: flex; align-items: center; gap: 1rem; text-align: left; }
.stat-icon { color: var(--secondary); flex-shrink: 0; }
.stat-icon svg { width: 48px; height: 48px; }
.stat-text { display: flex; flex-direction: column; }
.stat-text strong { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--secondary); line-height: 1.3; white-space: nowrap; }
.stat-text span { font-size: 14px; color: var(--text-light); line-height: 1.3; white-space: nowrap; }

@media (max-width: 1200px) { .stats-grid { gap: 1.75rem 2.5rem; padding: 2rem 1.5rem; } }
@media (max-width: 576px) { .stats-grid { gap: 1.25rem; padding: 1.75rem 1rem; } .stat-item { width: 100%; } }

/* ============================================================
   SEMINAIRE IDEAL SECTION
   ============================================================ */
.section-seminaire-ideal { padding-top: 100px; padding-bottom: 100px; }
.section-seminaire-ideal .section-title-styled { margin-bottom: calc(2rem + 50px); text-align: center; }
.section-seminaire-ideal .text-gradient { background: linear-gradient(90deg, #0F4C81 0%, #EC407A 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* 4 colonnes fluides : les cartes se reduisent avec l'ecran (des largeurs fixes
   faisaient deborder la page horizontalement entre 993px et 1820px) */
.ideal-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; width: 1820px; max-width: calc(100% - 2rem); margin: 0 auto; }
.ideal-card { display: block; width: 100%; text-decoration: none; color: var(--secondary); }
.ideal-card-image { position: relative; width: 100%; aspect-ratio: 425 / 320; border-radius: 16px; overflow: hidden; }
.ideal-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ideal-card:hover .ideal-card-image img { transform: scale(1.05); }
.ideal-card-placeholder { width: 100%; height: 100%; background: var(--bg-alt); }
.ideal-card-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); color: var(--secondary); font-size: .75rem; font-weight: 600; padding: .3rem .75rem; border-radius: 8px; }
.ideal-card-info { padding: .75rem 0; }
.ideal-card-name { font-size: 1rem; font-weight: 700; margin-bottom: .15rem; }
.ideal-card-city { font-size: .85rem; color: var(--text-light); }

@media (max-width: 992px) { .ideal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; } }
@media (max-width: 576px) { .ideal-grid { grid-template-columns: minmax(0, 1fr); } }

/* ============================================================
   LIEUX SECTION
   ============================================================ */
.section-lieux { overflow: hidden; padding: 80px 0; }
.lieux-inner { display: flex; align-items: center; }
.lieux-text { flex-shrink: 0; padding-left: 100px; padding-right: 3rem; width: 900px; min-width: 900px; }
.lieux-text p { color: var(--text-light); line-height: 1.7; font-size: .9rem; margin-bottom: .75rem; }
.lieux-text .btn { margin-top: 1rem; }
.btn-outline-dark { display: inline-block; border: 2px solid #FFDA47; color: var(--secondary); background: #FFDA47; border-radius: 50px; padding: .5rem 1.5rem; font-size: .85rem; font-weight: 600; text-decoration: none; transition: all .2s; }
.btn-outline-dark:hover { background: #f0c830; border-color: #f0c830; color: var(--secondary); }

.lieux-images-wrap { display: flex; gap: 1.5rem; align-items: flex-end; flex-shrink: 0; margin-left: auto; }
.lieux-images-center { display: flex; flex-direction: column; gap: 1.5rem; flex-shrink: 0; width: 300px; }
.lieux-img-top { width: 300px; height: 300px; border-radius: 16px; object-fit: cover; }
.lieux-img-bottom { width: 300px; height: 365px; border-radius: 16px; object-fit: cover; }

.lieux-image-right { position: relative; flex-shrink: 0; }
.lieux-right-deco { position: absolute; top: -20px; right: -20px; width: 200px; height: 100px; background: #FCF4E6; border-radius: 12px; z-index: 0; }
.lieux-img-full { position: relative; z-index: 1; width: 540px; height: 512px; border-radius: 16px 0 0 16px; object-fit: cover; }

@media (max-width: 992px) {
    .lieux-inner { flex-direction: column; }
    .lieux-text { padding-left: 20px; padding-right: 20px; max-width: 100%; }
    .lieux-images-wrap { flex-direction: column; margin-left: 0; }
    .lieux-images-center { width: 100%; }
    .lieux-img-top, .lieux-img-bottom { width: 100%; height: auto; aspect-ratio: 300/365; }
    .lieux-img-full { width: 100%; height: auto; border-radius: 16px; aspect-ratio: 840/512; }
}

/* ============================================================
   ACTIVITES SECTION (miroir de Lieux)
   ============================================================ */
.section-activites { overflow: hidden; padding: 80px 0; }
.activites-inner { display: flex; align-items: center; }
.activites-image-wrap { position: relative; flex-shrink: 0; }
.activites-img { position: relative; z-index: 1; width: 900px; height: 512px; border-radius: 0 25px 25px 0; object-fit: cover; }
.activites-text { flex-shrink: 0; padding-left: 3rem; padding-right: 100px; width: 900px; min-width: 900px; margin-left: auto; }
.activites-text p { color: var(--text-light); line-height: 1.7; font-size: .9rem; margin-bottom: .75rem; }
.activites-text .btn { margin-top: 1rem; }

@media (max-width: 992px) {
    .activites-inner { flex-direction: column; }
    .activites-text { padding-left: 20px; padding-right: 20px; max-width: 100%; min-width: 0; width: 100%; }
    .activites-img { width: 100%; height: auto; border-radius: 16px; aspect-ratio: 840/512; }
}

/* ============================================================
   SPLIT LAYOUT (Hébergements, Team Building)
   ============================================================ */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-layout-reverse { direction: rtl; }
.split-layout-reverse > * { direction: ltr; }
.split-surtitle { display: block; font-size: .8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: .75rem; }
.split-title { font-size: 1.8rem; margin-bottom: 1.25rem; line-height: 1.25; }
.split-text p { color: var(--text-light); line-height: 1.8; font-size: .9rem; }
.split-text .btn { margin-top: .5rem; }

/* Split images layouts */
.split-images { position: relative; }
.split-img-main { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/3; }
.split-img-secondary { position: absolute; bottom: -20px; right: -20px; width: 55%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.split-img-full { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/3; }

/* Grid images for hébergements */
.split-images-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: .75rem; }
.split-img-top { grid-column: 1 / -1; border-radius: var(--radius-lg); object-fit: cover; width: 100%; aspect-ratio: 2/1; }
.split-img-bottom-left { border-radius: var(--radius-lg); object-fit: cover; width: 100%; aspect-ratio: 1/1; }
.split-img-bottom-right { border-radius: var(--radius-lg); object-fit: cover; width: 100%; aspect-ratio: 1/1; }

@media (max-width: 768px) {
    .split-layout { grid-template-columns: 1fr; gap: 2rem; }
    .split-layout-reverse { direction: ltr; }
    .split-img-secondary { position: static; width: 100%; margin-top: .75rem; border: none; }
}

/* ============================================================
   FULL-WIDTH LANDSCAPE
   ============================================================ */
.section-landscape { width: 100%; overflow: hidden; max-height: 400px; }
.landscape-img { width: 100%; height: 400px; object-fit: cover; }

/* ============================================================
   CTA SECTION DARK
   ============================================================ */
.cta-section-dark { background: #2E2E2E; color: #fff; text-align: center; padding: 4rem 0; }
.cta-dark-content h2 { color: #fff; font-size: 2.4rem; margin-bottom: 1rem; font-family: var(--font-heading); font-weight: 800; }
.cta-dark-content p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2rem; font-style: normal; }
.btn-cta-dark { background: linear-gradient(90deg, #0F4C81 0%, #EC407A 100%); color: #fff; border: none; font-size: .9rem; padding: 10px 36px; border-radius: 50px; font-weight: 600; }
.btn-cta-dark:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ============================================================
   ARTICLES SECTION (homepage)
   ============================================================ */
.section-articles { padding: 4rem 0; }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.section-newsletter { padding: 4rem 0; background: var(--beige); text-align: center; }
.newsletter-content { max-width: 650px; margin: 0 auto; }
.newsletter-title { font-size: 1.6rem; margin-bottom: .75rem; line-height: 1.3; }
.newsletter-subtitle { color: var(--text-light); font-style: italic; margin-bottom: 2rem; font-size: .95rem; }
.newsletter-form { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.newsletter-input-group { width: 100%; max-width: 400px; }
.newsletter-input { width: 100%; padding: .85rem 1.25rem; border: 1px solid var(--border); border-radius: 25px; font-size: .95rem; background: #fff; transition: border-color .2s; }
.newsletter-input:focus { outline: none; border-color: var(--accent); }
.newsletter-btn { padding: .75rem 2.5rem; }

/* ============================================================
   REASSURANCE (legacy, kept for other pages)
   ============================================================ */
.reassurance { background: transparent; }
.reassurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; text-align: center; max-width: 1024px; margin: 0 auto; }
.reassurance-item { padding: 30px 15px 20px; background: var(--beige); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; align-items: center; }
.reassurance-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; min-height: 80px; display: flex; align-items: center; justify-content: center; }
.reassurance-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--secondary); }
.reassurance-text { font-size: .9rem; color: var(--text-light); }
@media (max-width: 768px) { .reassurance-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA Section (legacy, kept for other pages)
   ============================================================ */
.cta-section { background: var(--green); color: var(--secondary); text-align: center; padding: 3.5rem 0; }
.cta-section h2 { color: var(--secondary); font-size: 2rem; margin-bottom: .75rem; }
.cta-section p { opacity: .9; margin-bottom: 1.5rem; font-size: 1.1rem; }
.cta-section .btn { background: var(--primary); color: #fff; font-size: 1.1rem; }
.cta-section .btn:hover { background: var(--beige); color: #000; transform: translateY(-2px); }

/* ============================================================
   VENUE LISTING PAGE
   ============================================================ */

/* --- Filter Bar --- */
.venue-filters-bar { background: #fff; border-bottom: 1px solid var(--border-light); padding: 1rem 50px; position: sticky; top: 0; z-index: 50; }
.venue-filters-form { display: flex; align-items: center; justify-content: space-between; max-width: 1820px; margin: 0 auto; gap: 1.5rem; }
.venue-filters-buttons { display: flex; gap: .6rem; }
.venue-filter-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .35rem; padding: .75rem 1.2rem; border: none; border-radius: 12px; background: transparent; font-size: .72rem; font-weight: 700; color: #1a1a1a; cursor: pointer; transition: all .2s; white-space: nowrap; min-width: 90px; position: relative; }
.venue-filter-btn svg { color: #034A5E; }
.venue-filter-btn:hover { background: #f3f4f6; }
.venue-filter-btn.active { background: #f3f4f6; }
.venue-filter-btn.has-filters { background: #f3f4f6; }
.venue-filter-btn svg { flex-shrink: 0; width: 24px; height: 24px; }
.venue-filter-badge { position: absolute; top: 2px; right: 2px; background: var(--accent); color: #fff; font-size: .6rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1; }
.venue-filters-search { position: relative; display: flex; align-items: center; background: transparent; border: none; border-bottom: 1px solid #d1d5db; border-radius: 0; overflow: visible; min-width: 380px; }
.venue-search-input { border: none; background: transparent; padding: .6rem 0; font-size: 1rem; width: 100%; outline: none; border-radius: 0; color: var(--text); }
.venue-search-input::placeholder { color: #9ca3af; font-weight: 400; }
.venue-search-btn { border: none; background: transparent; padding: .6rem 0 .6rem .75rem; cursor: pointer; color: #374151; display: flex; align-items: center; }
.venue-search-btn:hover { color: var(--accent); }
.venue-autocomplete { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.15); z-index: 100; max-height: 320px; overflow-y: auto; display: none; }
.venue-autocomplete.open { display: block; }
.venue-autocomplete-item { display: flex; align-items: center; gap: .75rem; padding: .65rem 1.25rem; cursor: pointer; transition: background .15s; text-decoration: none; color: var(--text); }
.venue-autocomplete-item:hover, .venue-autocomplete-item.active { background: #f3f4f6; }
.venue-autocomplete-item-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.venue-autocomplete-item-text { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.venue-autocomplete-item-name { font-weight: 600; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.venue-autocomplete-item-city { font-size: .78rem; color: #9ca3af; display: block; line-height: 1.3; }
.venue-autocomplete-empty { padding: 1rem 1.25rem; text-align: center; color: #9ca3af; font-size: .85rem; }

/* --- Filter Dropdown Panel --- */
.venue-filter-dropdown { position: relative; }
.venue-filter-panel { display: none; position: absolute; top: calc(100% + .5rem); left: 0; background: #fff; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.15); padding: 1.5rem 2rem; z-index: 100; min-width: 460px; }
.venue-filter-panel.open { display: block; }
.venue-filter-panel-cols { display: flex; gap: 2.5rem; }
.venue-filter-panel-col { flex: 1; min-width: 0; }
.venue-filter-panel-title { font-size: .9rem; font-weight: 700; color: var(--secondary); margin-bottom: .75rem; }
.venue-filter-check { display: flex; align-items: center; gap: .5rem; padding: .35rem 0; font-size: .85rem; color: var(--secondary); cursor: pointer; white-space: nowrap; }
.venue-filter-check input[type="checkbox"] { width: 16px; height: 16px; border: 2px solid #ccc; border-radius: 3px; appearance: none; -webkit-appearance: none; cursor: pointer; flex-shrink: 0; position: relative; background: #fff; }
.venue-filter-check input[type="checkbox"]:checked { background: var(--secondary); border-color: var(--secondary); }
.venue-filter-check input[type="checkbox"]:checked::after { content: '✓'; position: absolute; top: -1px; left: 2px; font-size: 11px; color: #fff; font-weight: 700; }
.venue-filter-check-spacer { margin-top: 1.75rem; }
.venue-filter-field-label { display: block; font-size: .82rem; font-weight: 600; color: var(--secondary); margin-bottom: .4rem; }
.venue-filter-field-input { width: 100%; padding: .5rem .75rem; border: 2px solid var(--border-light); border-radius: 8px; font-size: .9rem; outline: none; transition: border-color .2s; }
.venue-filter-field-input:focus { border-color: var(--primary); }
.venue-filter-panel-footer { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.venue-filter-apply-btn { min-width: 120px; }
.venue-filter-clear-btn { background: none; border: none; color: var(--accent); font-size: .8rem; font-weight: 500; cursor: pointer; padding: .4rem 0; display: none; }
.venue-filter-clear-btn:hover { text-decoration: underline; }
.venue-filter-clear-btn.visible { display: inline-block; }

/* --- Listing Layout (cards + map) --- */
.venue-listing { padding: 0; }
.venue-listing-inner { display: flex; max-height: 650px; margin-top: 1.5rem; }
.venue-listing-cards { flex: 1; padding: 1.5rem 2rem; overflow-y: auto; max-height: 650px; margin-right: 1rem; }
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.venue-listing-map { width: 45%; flex-shrink: 0; position: sticky; top: 0; height: 650px; border-radius: 25px 0 0 25px; overflow: hidden; }
.venue-listing-map .venue-map { width: 100%; height: 100%; }
#venues-map { min-height: 100%; width: 100%; z-index: 1; position: relative; }
.venue-map-search-btn { position: absolute; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 10; background: #fff; border: 1px solid var(--border-light); border-radius: 50px; padding: .5rem 1.2rem; font-size: .8rem; font-weight: 600; cursor: pointer; box-shadow: var(--shadow-sm); transition: box-shadow .2s; }
.venue-map-search-btn:hover { box-shadow: var(--shadow-md); }

/* --- Pagination --- */
.pagination-wrapper { padding: .5rem 0; display: flex; justify-content: center; }

/* --- No Results --- */
.search-no-results { text-align: center; padding: 4rem 2rem; color: var(--text-light); }
.search-no-results svg { margin-bottom: 1rem; opacity: .4; }
.search-no-results h3 { font-size: 1.3rem; margin-bottom: .5rem; color: var(--secondary); }
.search-no-results a { color: var(--accent); font-weight: 600; }

/* ============================================================
   VENUE CARD
   ============================================================ */
.venue-card { background: #fff; border-radius: 25px; overflow: hidden; transition: transform .3s, background .3s; display: flex; flex-direction: column; padding: 5px; }
.venue-card:hover, .venue-card-active { transform: translateY(-4px); background: rgba(236,64,122,.05); }
.venue-card-image { position: relative; overflow: hidden; border-radius: 25px; }
.venue-card-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s; display: block; border-radius: 25px; }
.venue-card:hover .venue-card-image img, .venue-card-active .venue-card-image img { transform: scale(1.05); }
/* Card carousel */
.card-carousel { position: relative; }
.card-carousel-slide { display: none; }
.card-carousel-slide.active { display: block; }
.card-carousel-btn { position: absolute; top: 50%; z-index: 3; transform: translateY(-50%); width: 30px; height: 30px; border: none; border-radius: 50%; background: rgba(255,255,255,.85); color: #333; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(0,0,0,.15); opacity: 0; transition: opacity .2s, background .2s; }
.venue-card:hover .card-carousel-btn { opacity: 1; }
.card-carousel-btn:hover { background: #fff; }
.card-carousel-prev { left: .5rem; }
.card-carousel-next { right: .5rem; }
.card-carousel-dots { position: absolute; bottom: .5rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 5px; }
.card-carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); transition: background .2s; }
.card-carousel-dot.active { background: #fff; }
.venue-card-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-light); }
.venue-card-badge { position: absolute; top: .75rem; left: .75rem; z-index: 2; }
.venue-card-cart-btn { position: absolute; top: .75rem; right: .75rem; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform .2s, background .2s; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.venue-card-cart-btn:hover { transform: scale(1.1); background: #d81b60; }
.venue-card-cart-btn svg { stroke: #fff; }
.venue-card-body-link { text-decoration: none; color: inherit; flex: 1; display: flex; flex-direction: column; }
.venue-card-body { padding: .6rem 1rem; flex: 1; display: flex; flex-direction: column; }
.venue-card-header { display: flex; align-items: center; gap: .4rem; margin-bottom: .15rem; }
.venue-card-title { font-size: 13px; font-weight: 700; color: var(--secondary); margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.venue-card-stars { display: flex; gap: 1px; flex-shrink: 0; }
.venue-card-stars .star { font-size: .8rem; color: #ccc; }
.venue-card-stars .star.filled { color: #FFDA47; }
.venue-card-location { font-size: .7rem; color: var(--text-light); margin-bottom: .1rem; display: flex; align-items: center; gap: .3rem; }
.venue-card-location svg { flex-shrink: 0; }
.venue-card-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; padding-top: .3rem; }
.venue-card-meta-item { display: flex; align-items: center; gap: .25rem; font-size: .65rem; color: var(--text-light); white-space: nowrap; }
.venue-card-meta-item svg { flex-shrink: 0; opacity: .6; }

/* ============================================================
   ACTIVITY FILTERS BAR
   ============================================================ */
.activity-filters-bar { background: #fff; border-bottom: 1px solid var(--border-light); padding: 1rem 50px; position: sticky; top: 0; z-index: 50; }
.activity-filters-form { display: flex; align-items: center; justify-content: space-between; max-width: 1820px; margin: 0 auto; gap: 1.5rem; }
.activity-filter-grid { display: grid; grid-template-columns: repeat(5, auto); gap: .2rem 2rem; }

/* ============================================================
   ACTIVITY LISTING
   ============================================================ */
.activity-listing { padding: 1.5rem 2rem; }
.activity-listing-inner { max-width: 1820px; margin: 0 auto; }
.activity-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem; }

/* ============================================================
   ACTIVITY CARD
   ============================================================ */
.activity-card { background: #fff; border-radius: 25px; overflow: hidden; transition: transform .3s, background .3s; display: flex; flex-direction: column; padding: 5px; }
.activity-card:hover { transform: translateY(-4px); background: rgba(236,64,122,.05); }
.activity-card-image { position: relative; overflow: hidden; border-radius: 25px; }
.activity-card-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s; display: block; border-radius: 25px; }
.activity-card:hover .activity-card-image img { transform: scale(1.05); }
.activity-card:hover .card-carousel-btn { opacity: 1; }
.activity-card-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-light); border-radius: 25px; }
.activity-card-tag { position: absolute; bottom: .6rem; right: .6rem; z-index: 2; background: rgba(255,255,255,.92); color: var(--secondary); font-size: .65rem; font-weight: 600; padding: .25rem .6rem; border-radius: 6px; backdrop-filter: blur(4px); }
.activity-card-cart-btn { position: absolute; top: .75rem; right: .75rem; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform .2s, background .2s; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.activity-card-cart-btn:hover { background: var(--accent-dark); transform: scale(1.1); }
.activity-card-body-link { text-decoration: none; color: inherit; }
.activity-card-body { padding: .6rem 1rem; }
.activity-card-title { font-size: 13px; font-weight: 700; color: var(--secondary); margin: 0 0 .15rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.activity-card-duration { display: flex; align-items: center; gap: .3rem; font-size: .7rem; color: var(--text-light); margin: 0; }

/* ============================================================
   VENUE DETAIL
   ============================================================ */
/* === Venue Show Page === */
.venue-show { padding: 1.5rem 0 3rem; }

/* Header */
.venue-show-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; margin-bottom: 1.5rem; }
.venue-show-header-left { flex: 1; }
.venue-show-back { display: inline-flex; align-items: center; gap: .3rem; font-size: .8rem; color: var(--accent); text-decoration: none; margin-bottom: .5rem; }
.venue-show-back:hover { text-decoration: underline; }
.venue-show-title { font-size: 1.6rem; font-weight: 800; text-transform: uppercase; color: var(--secondary); line-height: 1.2; margin-bottom: .4rem; }
.venue-show-location { display: flex; align-items: center; gap: .3rem; font-size: .85rem; color: var(--accent); font-weight: 500; }
.venue-show-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .3rem; }
.venue-show-tag { display: inline-block; background: rgba(236,64,122,.08); color: var(--accent); font-size: .75rem; font-weight: 600; padding: .25rem .7rem; border-radius: 20px; }
.activity-show-contact { display: flex; align-items: center; }
.activity-show-phone { display: inline-flex; align-items: center; gap: .5rem; font-size: 1rem; font-weight: 600; color: var(--accent); text-decoration: none; padding: .6rem 1.2rem; border-radius: 8px; border: 1.5px solid var(--accent); transition: all .2s; }
.activity-show-phone:hover { background: var(--accent); color: #fff; }
.activity-show-phone:hover svg { stroke: #fff; }
.venue-show-header-right { display: flex; gap: .75rem; flex-shrink: 0; align-items: stretch; padding-top: 1.5rem; }
.venue-show-cta-cart { background: var(--accent); color: #fff; border: none; padding: .65rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: .85rem; display: flex; align-items: center; gap: .5rem; cursor: pointer; transition: background .2s; }
.venue-show-cta-cart:hover { background: var(--accent-dark); }
.venue-show-cta-cart svg path { fill: #fff; }
.venue-show-cta-devis { background: #FFDA47; color: #333; border: none; padding: .65rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: .85rem; text-decoration: none; transition: background .2s; display: flex; align-items: center; }
.venue-show-cta-devis:hover { background: #f0cb38; color: #333; }

/* Gallery: main + thumbs */
.venue-show-gallery { display: grid; grid-template-columns: 3fr 2fr; gap: .5rem; margin-bottom: 2rem; border-radius: var(--radius-lg); overflow: hidden; }
.venue-show-gallery-main { position: relative; background: #000; border-radius: var(--radius-lg) 0 0 var(--radius-lg); overflow: hidden; }
.venue-carousel-track { position: relative; width: 100%; height: 360px; }
.venue-carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; }
.venue-carousel-slide.active { opacity: 1; z-index: 1; }
.venue-carousel-img { width: 100%; height: 100%; object-fit: cover; }
.venue-carousel-btn { position: absolute; top: 50%; z-index: 2; transform: translateY(-50%); width: 40px; height: 40px; border: none; border-radius: 50%; background: rgba(255,255,255,.85); color: #333; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.15); transition: background .2s; }
.venue-carousel-btn:hover { background: #fff; }
.venue-carousel-prev { left: .75rem; }
.venue-carousel-next { right: .75rem; }
.venue-carousel-dots { position: absolute; bottom: .75rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: .4rem; }
.venue-carousel-dot { width: 9px; height: 9px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0; transition: background .2s; }
.venue-carousel-dot.active { background: #fff; }
.venue-carousel-counter { position: absolute; top: .75rem; right: .75rem; z-index: 2; background: rgba(0,0,0,.5); color: #fff; font-size: .75rem; padding: .2rem .6rem; border-radius: 20px; }
.venue-show-gallery-thumbs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: .5rem; }
.venue-show-thumb { overflow: hidden; cursor: pointer; border-radius: 4px; }
.venue-show-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.venue-show-thumb:hover img { transform: scale(1.05); }

/* Sections */
.venue-show-section { margin-bottom: 2.5rem; }
.venue-show-section:last-child { margin-bottom: 1rem; }
.venue-show-section-title { font-size: 1.3rem; font-weight: 700; color: var(--secondary); margin-bottom: 1rem; }
.venue-show-subtitle { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin: 1.5rem 0 .75rem; }
.venue-text { font-size: .9rem; line-height: 1.8; color: var(--text); }
.venue-text-muted { font-size: .9rem; color: var(--text-light); font-style: italic; }

/* Stats bar */
.venue-show-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.5rem; padding: .75rem 0; }
.venue-show-stat { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--secondary); }
.venue-show-stat strong { font-weight: 700; }

/* Description layout: main + reassurance sidebar */
.venue-show-desc-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; }
.venue-show-desc-main { min-width: 0; }

/* Reassurance sidebar */
.venue-show-reassurance { background: #f8f9fa; border-radius: var(--radius-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; align-self: start; position: sticky; top: 80px; }
.venue-reassurance-item { display: flex; align-items: center; gap: .75rem; font-size: .85rem; color: var(--text); font-weight: 500; }
.venue-reassurance-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(236,64,122,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Reassurance banner */
.venue-show-banner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.5rem; padding: 1.25rem; background: linear-gradient(135deg, rgba(236,64,122,.04), rgba(77,166,200,.04)); border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
.venue-show-banner-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; padding: .75rem; }
.venue-show-banner-icon { width: 52px; height: 52px; background: rgba(236,64,122,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.venue-show-banner-item span { font-size: .8rem; font-weight: 500; color: var(--text); line-height: 1.3; }

/* Meeting rooms table */
.venue-show-rooms-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.venue-show-rooms-table thead th { background: #fff; color: var(--text-light); padding: .6rem .4rem; text-align: center; font-weight: 600; border-bottom: 2px solid var(--border-light); white-space: nowrap; }
.venue-show-rooms-table thead th:first-child { text-align: left; }
.venue-show-rooms-table thead th svg { display: block; margin: 0 auto; color: var(--accent); fill: var(--accent); width: 22px; height: 22px; }
.venue-show-rooms-table tbody td { padding: .55rem .4rem; text-align: center; border-bottom: 1px solid #f0f0f0; font-size: .82rem; }
.venue-show-rooms-table tbody td.room-name { text-align: left; font-weight: 600; white-space: nowrap; }
.venue-show-rooms-table tbody tr:hover { background: #fafafa; }
.table-responsive { overflow-x: auto; }

/* Checklist (Loisirs, Equipements) */
.venue-show-checklist { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.venue-show-check-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text); padding: .3rem 0; }

/* Quote */
.venue-show-quote { border-left: 3px solid var(--accent); padding: 1rem 1.5rem; background: #fdf2f4; border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; font-size: .9rem; line-height: 1.7; }

/* Rooms summary */
.venue-rooms-summary { display: flex; gap: 1.5rem; margin-top: .75rem; font-size: .9rem; }

/* Video */
.venue-video { border-radius: var(--radius-lg); overflow: hidden; }

/* Map & Directions */
.venue-directions-bar { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.venue-directions-input { flex: 1; min-width: 220px; position: relative; display: flex; align-items: center; background: #fff; border: 2px solid var(--border-light); border-radius: 50px; padding: 0 1rem; transition: border-color .2s; }
.venue-directions-input:focus-within { border-color: var(--accent); }
.venue-directions-input svg { flex-shrink: 0; color: #999; margin-right: .5rem; }
.venue-directions-input input { flex: 1; border: none; outline: none; padding: .7rem 0; font-size: .95rem; font-family: inherit; background: transparent; }
.venue-directions-input input.error { animation: shake .4s; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-6px)} 75%{transform:translateX(6px)} }

.venue-directions-modes { display: flex; gap: .35rem; }
.venue-directions-modes button { width: 40px; height: 40px; border: 2px solid var(--border-light); border-radius: 50%; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--accent); transition: all .2s; }
.venue-directions-modes button:hover { border-color: var(--accent); }
.venue-directions-modes button.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.btn-directions { background: var(--accent); color: #fff; border: none; border-radius: 50px; padding: .7rem 1.5rem; font-size: .9rem; font-weight: 600; font-family: inherit; cursor: pointer; white-space: nowrap; transition: background .2s, transform .1s; }
.btn-directions:hover { background: #d81b60; }
.btn-directions:active { transform: scale(.97); }
.btn-directions:disabled { opacity: .6; cursor: not-allowed; }

.venue-directions-wrapper { display: flex; gap: 1rem; border-radius: var(--radius-lg); overflow: hidden; }
#venue-gmap { flex: 1; min-height: 500px; border-radius: var(--radius-lg); }

.venue-directions-panel { width: 0; overflow: hidden; transition: width .3s ease; }
.venue-directions-panel.visible { width: 360px; overflow-y: auto; max-height: 500px; }

#directions-results { padding: 0; }

.directions-error { display: flex; align-items: center; gap: .75rem; padding: 1rem; background: #fff5f5; border-radius: var(--radius-md); border: 1px solid #ffcdd2; }
.directions-error p { margin: 0; font-size: .9rem; color: #c62828; }

.route-option { padding: 1rem; border: 2px solid var(--border-light); border-radius: var(--radius-md); margin-bottom: .5rem; cursor: pointer; background: #fff; transition: all .2s; }
.route-option:hover { border-color: #f48fb1; }
.route-option.active { border-color: var(--accent); background: linear-gradient(135deg, #fce4ec 0%, #fff 60%); cursor: default; }

.route-option-header { display: flex; align-items: center; gap: .75rem; }
.route-option-mode { width: 36px; height: 36px; border-radius: 50%; background: #fce4ec; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.route-option.active .route-option-mode { background: var(--accent); color: #fff; }

.route-option-info { flex: 1; min-width: 0; }
.route-option-main { display: flex; align-items: baseline; gap: .5rem; }
.route-option-duration { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); }
.route-option-distance { font-size: .85rem; color: #888; }
.route-option-via { font-size: .8rem; color: #999; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.route-option-badge { font-size: .7rem; font-weight: 600; background: var(--accent); color: #fff; padding: .2rem .6rem; border-radius: 50px; white-space: nowrap; flex-shrink: 0; }

.route-steps { margin-top: .75rem; padding-top: .75rem; border-top: 1px solid #eee; max-height: 200px; overflow-y: auto; }
.route-step { display: flex; align-items: flex-start; gap: .5rem; padding: .3rem 0; font-size: .8rem; color: #555; line-height: 1.4; }
.route-step svg { flex-shrink: 0; margin-top: 2px; }
.route-step-start { font-weight: 600; color: #388e3c; }
.route-step-end { font-weight: 600; color: var(--accent); }

/* Google Places Autocomplete Dropdown */
.pac-container { border: none !important; border-radius: 16px !important; box-shadow: 0 8px 30px rgba(0,0,0,.12) !important; margin-top: 8px !important; padding: .5rem 0 !important; font-family: inherit !important; background: #fff !important; overflow: hidden !important; }
.pac-container::after { display: none !important; }
.pac-item { padding: .65rem 1rem !important; border: none !important; cursor: pointer !important; display: flex !important; align-items: center !important; gap: .5rem !important; transition: background .15s !important; font-size: .9rem !important; line-height: 1.4 !important; }
.pac-item:first-child { border-radius: 12px 12px 0 0 !important; }
.pac-item:last-child { border-radius: 0 0 12px 12px !important; }
.pac-item:hover { background: #fce4ec !important; }
.pac-item-selected, .pac-item-selected:hover { background: #fce4ec !important; }
.pac-icon { display: none !important; }
.pac-item::before { content: '' !important; display: block !important; width: 32px !important; height: 32px !important; min-width: 32px !important; border-radius: 50% !important; background: #fce4ec url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23EC407A' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / 16px no-repeat !important; }
.pac-item:hover::before { background-color: var(--accent) !important; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") !important; }
.pac-item-query { font-weight: 600 !important; color: var(--text-dark) !important; font-size: .9rem !important; }
.pac-item-query + span, .pac-item > span:last-child { color: #999 !important; font-size: .8rem !important; margin-left: 0 !important; }
.pac-matched { color: var(--accent) !important; font-weight: 700 !important; }

/* Venue Suggestions */
.venue-suggestions { margin-top: 0; padding-bottom: 2rem; }
.venue-suggestions .container { max-width: 1350px; margin: 0 auto; padding: 0 1.5rem; }
.venue-suggestions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }

/* CTA Banner */
.venue-cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1b 100%);
    padding: 3.5rem 1.5rem;
    text-align: center;
    margin-top: 0;
}
.venue-cta-banner-inner {
    margin: 0 auto;
}
.venue-cta-banner-title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 .75rem;
    line-height: 1.3;
    white-space: nowrap;
}
.venue-cta-banner-text {
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    margin: 0 0 1.5rem;
    line-height: 1.6;
    white-space: nowrap;
}
.venue-cta-banner-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: .75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.venue-cta-banner-btn:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1200px) {
    .activity-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
    .activity-grid { grid-template-columns: repeat(3, 1fr); }
    .activity-filters-bar { padding: 1rem 1.5rem; }
    .venue-directions-wrapper { flex-direction: column; }
    .venue-directions-panel.visible { width: 100%; max-height: 300px; }
    #venue-gmap { min-height: 350px; }
    .venue-show-header { flex-direction: column; gap: 1rem; }
    .venue-show-header-right { padding-top: 0; }
    .venue-show-gallery { grid-template-columns: 1fr; }
    .venue-show-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .venue-show-gallery-main { border-radius: var(--radius-lg); }
    .venue-show-desc-layout { grid-template-columns: 1fr; }
    .venue-show-reassurance { position: static; }
    .venue-suggestions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .activity-grid { grid-template-columns: repeat(2, 1fr); }
    .activity-filters-bar { padding: .75rem 1rem; }
    .activity-filters-form { flex-direction: column; gap: .75rem; }
    .venue-carousel-track { height: 280px; }
    .venue-carousel-dots { display: none; }
    .venue-show-banner { grid-template-columns: 1fr; }
    .venue-show-checklist { grid-template-columns: repeat(2, 1fr); }
    .venue-show-header-right { flex-direction: column; width: 100%; }
    .venue-show-cta-cart, .venue-show-cta-devis { width: 100%; justify-content: center; text-align: center; }
    .venue-directions-bar { gap: .5rem; }
    .venue-directions-input { min-width: 100%; }
    .btn-directions { width: 100%; text-align: center; }
}
@media (max-width: 576px) {
    .activity-grid { grid-template-columns: 1fr; }
    .venue-show-checklist { grid-template-columns: 1fr; }
    .venue-show-gallery-thumbs { display: none; }
    .venue-suggestions-grid { grid-template-columns: 1fr; }
    .venue-cta-banner { padding: 2.5rem 1rem; }
    .venue-cta-banner-title { font-size: 1.25rem; }
}

/* Map Rich Popup (Google Maps InfoWindow) */
.gm-style .gm-style-iw-a,
.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-d,
.gm-style .gm-style-iw { padding: 0 !important; margin: 0 !important; }
.gm-style .gm-style-iw { border-radius: 12px !important; overflow: hidden !important; min-width: 220px !important; max-width: 260px !important; }
.gm-style .gm-style-iw-d { overflow: hidden !important; }
.gm-style .gm-style-iw-d::-webkit-scrollbar { display: none; }
.gm-style .gm-style-iw-tc { display: none; }
.gm-style .gm-style-iw > div { margin: 0 !important; padding: 0 !important; }
.gm-style .gm-style-iw-chr { position: absolute !important; top: 0 !important; right: 0 !important; z-index: 10 !important; height: 0 !important; overflow: visible !important; padding: 0 !important; margin: 0 !important; }
.gm-style-iw button.gm-ui-hover-effect { position: absolute !important; top: 6px !important; right: 6px !important; z-index: 10 !important; width: 28px !important; height: 28px !important; background: rgba(0,0,0,.5) !important; border-radius: 50% !important; opacity: 1 !important; margin: 0 !important; }
.gm-style-iw button.gm-ui-hover-effect > span { background-color: #fff !important; margin: 0 auto !important; }
.map-popup { font-family: inherit; }
/* Map popup carousel */
.map-carousel { position: relative; width: 100%; height: 130px; overflow: hidden; }
.map-carousel-slide { display: none; width: 100%; height: 100%; }
.map-carousel-slide.active { display: block; }
.map-carousel-slide a { display: block; width: 100%; height: 100%; }
.map-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.map-carousel-btn { position: absolute; top: 50%; z-index: 3; transform: translateY(-50%); width: 26px; height: 26px; border: none; border-radius: 50%; background: rgba(255,255,255,.85); color: #333; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: background .2s; }
.map-carousel-btn:hover { background: #fff; }
.map-carousel-prev { left: .35rem; }
.map-carousel-next { right: .35rem; }
.map-carousel-counter { position: absolute; bottom: .35rem; right: .35rem; z-index: 3; background: rgba(0,0,0,.5); color: #fff; font-size: .65rem; padding: .1rem .5rem; border-radius: 10px; }
.map-popup-body { padding: .75rem; }
.map-popup-title { font-weight: 700; font-size: .85rem; color: var(--secondary); text-decoration: none; display: block; margin-bottom: .2rem; }
.map-popup-title:hover { color: var(--accent); }
.map-popup-stars { font-size: .7rem; color: #f5a623; margin-bottom: .2rem; }
.map-popup-city { font-size: .75rem; color: var(--text-light); margin-bottom: .3rem; }
.map-popup-meta { font-size: .7rem; color: var(--text-light); margin-bottom: .5rem; }
.map-popup-cart { display: flex; align-items: center; gap: .35rem; width: 100%; padding: .4rem .6rem; background: var(--accent); color: #fff; border: none; border-radius: 6px; font-size: .7rem; font-weight: 600; cursor: pointer; justify-content: center; transition: background .2s; }
.map-popup-cart:hover { background: #d81b60; }
.map-popup-cart svg { stroke: #fff; flex-shrink: 0; }
.map-popup-close { position: absolute; top: .5rem; right: .5rem; z-index: 5; width: 28px; height: 28px; border: none; border-radius: 50%; background: rgba(0,0,0,.5); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.map-popup-close:hover { background: rgba(0,0,0,.7); }
.map-popup-close svg { stroke: #fff; }

/* --- Venue Listing Responsive --- */
@media (max-width: 992px) {
    .venue-filters-form { flex-wrap: wrap; }
    .venue-filters-buttons { flex-wrap: wrap; }
    .venue-filters-search { min-width: 100%; }
    .venue-listing-inner { flex-direction: column; }
    .venue-listing-cards { max-height: none; overflow-y: visible; }
    .venue-listing-map { width: 100%; height: 350px; position: static; }
    .venue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .venue-filters-bar { padding: .75rem 1rem; }
    .venue-filter-btn { padding: .5rem .8rem; font-size: .65rem; min-width: 70px; }
    .venue-filter-btn svg { width: 20px; height: 20px; }
    .venue-listing-cards { padding: 1rem; }
    .venue-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-page { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; padding: 2rem 0; }
.filters-sidebar { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 1.5rem; position: sticky; top: 90px; max-height: calc(100vh - 100px); overflow-y: auto; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group h4 { font-size: .95rem; margin-bottom: .75rem; color: var(--secondary); }
.results-count { font-size: .95rem; color: var(--text-light); }
.search-results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }

@media (max-width: 992px) {
    .search-page { grid-template-columns: 1fr; }
    .filters-sidebar { position: static; max-height: none; }
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */
/* overflow:hidden indispensable : le panneau est décalé de 380px par translateX(100%),
   ce qui élargissait le document et décalait toute la page sur mobile. */
.cart-sidebar { position: fixed; inset: 0; z-index: 2000; pointer-events: none; overflow: hidden; }
.cart-sidebar.open { pointer-events: auto; }
.cart-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); opacity: 0; transition: opacity .3s; }
.cart-sidebar.open .cart-overlay { opacity: 1; }
/* Fermé, le panneau reste en place (aucun translateX) : sinon il déborde de 380px
   à droite, élargit le document et décale toute la page sur mobile. */
.cart-panel { position: absolute; top: 0; right: 0; bottom: 0; width: 380px; max-width: 100%; background: #fff; box-shadow: -4px 0 20px rgba(0,0,0,.15); visibility: hidden; opacity: 0; transition: opacity .3s ease, visibility .3s ease, transform .3s ease; display: flex; flex-direction: column; }
.cart-sidebar.open .cart-panel { visibility: visible; opacity: 1; }
.cart-sidebar.open .cart-panel { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light); }
.cart-header h2 { font-size: 1.2rem; }
.cart-close { font-size: 1.8rem; color: var(--text-muted); line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; color: var(--text-muted); padding: 2rem 0; }
.cart-item { display: flex; align-items: center; gap: .75rem; padding: .75rem 0; border-bottom: 1px solid var(--border-light); }
.cart-item-img { flex-shrink: 0; width: 70px; height: 50px; border-radius: 8px; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-info { display: flex; flex-direction: column; gap: .2rem; flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; font-size: .85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-city { font-size: .65rem; color: var(--text-light); display: flex; align-items: center; gap: .2rem; }
.cart-item-city svg { color: var(--accent); flex-shrink: 0; }
.cart-item-meta { font-size: .7rem; color: var(--text-light); }
.cart-item-remove { flex-shrink: 0; font-size: 1.3rem; color: var(--text-muted); padding: .25rem .5rem; }
.cart-item-remove:hover { color: var(--danger); }
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border-light); }

/* ============================================================
   PAGINATION
   ============================================================ */
/* KnpPaginator: <div class="pagination"><span class="first"><a>…</a></span><span class="current">5</span>…</div> */
.pagination { display: flex; justify-content: center; align-items: center; gap: .35rem; margin: 2rem 0; list-style: none; }
.pagination > span { display: flex; }
.pagination > span > a,
.pagination > span.current { display: flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 .5rem; border-radius: 25px; font-size: .9rem; font-weight: 600; color: var(--text); border: 1px solid var(--border); background: #fff; text-decoration: none; transition: all .2s; }
.pagination > span > a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination > span.current { background: #034A5E; color: #fff; border-color: #034A5E; }

/* ============================================================
   QUOTE PAGE
   ============================================================ */
.quote-page { padding: 2rem 0; }
.quote-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.quote-form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 2rem; }
@media (max-width: 768px) { .quote-layout { grid-template-columns: 1fr; } }

/* Quote Wizard */
.quote-wizard { padding: 3.5rem 0 4rem; overflow: hidden; }
.quote-wizard > .container { max-width: none; padding: 0; padding-left: 85px; }

.quote-wizard-content { display: grid; grid-template-columns: 750px 1fr; gap: 0; align-items: center; }
.quote-wizard-image { margin-left: 85px; }
.quote-wizard-left { display: flex; flex-direction: column; gap: 2.25rem; padding: 1rem 0; }

.quote-wizard-header { text-align: left; }
.quote-wizard-title { font-size: 1.65rem; font-weight: 800; font-style: italic; color: var(--secondary); line-height: 1.35; }
.quote-wizard-subtitle { font-size: .9rem; color: var(--text-light); margin-top: .5rem; font-style: italic; }
.quote-wizard-subtitle a { color: var(--accent); text-decoration: none; font-weight: 600; }
.quote-wizard-subtitle a:hover { text-decoration: underline; }

.quote-wizard-steps { display: flex; flex-direction: column; gap: 1.25rem; background: rgba(236,64,122,.05); border-radius: var(--radius-lg); padding: 1.75rem; }
.quote-wizard-step { display: flex; align-items: center; gap: 1.15rem; }
.quote-wizard-step-number { width: 50px; height: 50px; min-width: 50px; border-radius: 50%; background: #fff; color: var(--accent); font-weight: 800; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; }
.quote-wizard-step-text h3 { font-size: .95rem; font-weight: 700; color: var(--secondary); margin-bottom: .2rem; }
.quote-wizard-step-text p { font-size: .82rem; color: var(--text-light); line-height: 1.55; }

.quote-wizard-image { position: relative; align-self: stretch; display: flex; }
.quote-wizard-image img { width: 100%; border-radius: var(--radius-lg) 0 0 var(--radius-lg); object-fit: cover; height: 100%; min-height: 380px; }

.quote-wizard-email-bar { display: flex; gap: .65rem; }
.quote-wizard-email-input { flex: 1; padding: .8rem 1.2rem; border: 1.5px solid var(--border-light); border-radius: 10px; font-size: .88rem; font-family: inherit; color: var(--secondary); background: #fff; transition: border-color .2s, box-shadow .2s; }
.quote-wizard-email-input::placeholder { color: #aab; }
.quote-wizard-email-input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(77,166,200,.12); background: #fff; }
.quote-wizard-btn { background: var(--accent); color: #fff; border: none; padding: .85rem 2.5rem; border-radius: 10px; font-weight: 700; font-size: .95rem; cursor: pointer; white-space: nowrap; transition: background .2s, transform .15s; display: inline-flex; align-items: center; gap: .45rem; font-family: inherit; }
.quote-wizard-btn:hover { background: #d63568; transform: translateY(-1px); }

@media (max-width: 1400px) {
    .quote-wizard > .container { padding-left: 2rem; }
    .quote-wizard-content { grid-template-columns: 1fr 1fr; }
    .quote-wizard-image { margin-left: 2rem; }
}
@media (max-width: 992px) {
    .quote-wizard > .container { padding-right: 1rem; padding-left: 1rem; }
    .quote-wizard-content { grid-template-columns: 1fr; gap: 2rem; }
    .quote-wizard-image { order: -1; margin-left: 0; }
    .quote-wizard-image img { height: auto; aspect-ratio: 16/9; min-height: unset; border-radius: var(--radius-lg); }
    .quote-wizard-title { font-size: 1.4rem; }
}
@media (max-width: 576px) {
    .quote-wizard { padding: 2rem 0 3rem; }
    .quote-wizard-title { font-size: 1.2rem; }
    .quote-wizard-email-bar { flex-direction: column; }
    .quote-wizard-btn { justify-content: center; }
}

/* Wizard Stepper */
.wizard-stepper { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.wizard-stepper-step { display: flex; align-items: center; gap: .4rem; }
.wizard-stepper-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-light); transition: background .2s; }
.wizard-stepper-step.active .wizard-stepper-dot { background: var(--primary); }
.wizard-stepper-step.completed .wizard-stepper-dot { background: var(--primary); }
.wizard-stepper-step span { font-size: .7rem; font-weight: 700; letter-spacing: .04em; color: var(--text-muted); text-transform: uppercase; }
.wizard-stepper-step.active span { color: var(--secondary); text-decoration: underline; text-underline-offset: 3px; }
.wizard-stepper-line { flex: 0 0 40px; height: 1px; background: var(--border-light); }

/* Wizard Selection */
.wizard-selection-section { display: flex; flex-direction: column; gap: .75rem; }
.wizard-selection-title { font-size: .95rem; font-weight: 600; font-style: italic; color: var(--text-light); }
.wizard-selection-items { display: flex; flex-direction: column; gap: .6rem; }

.wizard-selection-item { display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--border-light); border-radius: 12px; padding: .65rem .85rem; transition: box-shadow .2s; }
.wizard-selection-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.wizard-selection-item-image { width: 72px; height: 52px; min-width: 72px; border-radius: 8px; overflow: hidden; background: var(--bg-light); }
.wizard-selection-item-image img { width: 100%; height: 100%; object-fit: cover; }
.wizard-selection-item-info { flex: 1; min-width: 0; }
.wizard-selection-item-info h3 { font-size: .85rem; font-weight: 700; color: var(--secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wizard-stars { color: #f5a623; font-size: .75rem; margin-left: .25rem; }
.wizard-selection-item-city { font-size: .75rem; color: var(--secondary); display: flex; align-items: center; gap: .25rem; margin-top: .1rem; margin-bottom: -.1rem; }
.wizard-selection-item-city svg { stroke: var(--accent); }
.wizard-selection-item-meta { display: flex; gap: .75rem; margin-top: 0; }
.wizard-selection-item-meta span { display: flex; align-items: center; gap: .2rem; font-size: .72rem; color: var(--text-muted); }

.wizard-selection-item-remove { background: none; border: none; cursor: pointer; padding: .35rem; border-radius: 50%; color: var(--accent); transition: background .2s; flex-shrink: 0; }
.wizard-selection-item-remove:hover { background: rgba(236,64,122,.08); }

/* Wizard Navigation */
.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: .5rem; }
.wizard-nav-btn { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; font-family: inherit; text-decoration: none; padding: .7rem 1.5rem; border-radius: 10px; cursor: pointer; transition: background .2s, transform .15s; }
.wizard-nav-prev { background: none; border: 1.5px solid var(--border-light); color: var(--text-light); }
.wizard-nav-prev:hover { border-color: var(--secondary); color: var(--secondary); }
.wizard-nav-next { background: var(--primary); color: #fff; border: none; }
.wizard-nav-next:hover { background: #3d8fad; transform: translateY(-1px); color: #fff; }

@media (max-width: 992px) {
    .wizard-stepper { flex-wrap: wrap; }
    .wizard-selection-item-meta { flex-wrap: wrap; }
}
@media (max-width: 576px) {
    .wizard-stepper-line { flex: 0 0 20px; }
    .wizard-stepper-step span { font-size: .6rem; }
    .wizard-nav-btn { padding: .6rem 1rem; font-size: .8rem; }
}

/* Wizard Event Form */
.wizard-event-form { display: flex; flex-direction: column; gap: 1.25rem; }
.wizard-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.wizard-form-group { display: flex; flex-direction: column; gap: .35rem; }
.wizard-form-full { grid-column: 1 / -1; }
.wizard-form-label { font-size: .75rem; font-weight: 700; color: var(--secondary); }
.wizard-form-label-accent { display: flex; align-items: center; gap: .35rem; font-size: .85rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .02em; }

.wizard-form-input { width: 100%; padding: .6rem .85rem; border: 1.5px solid var(--border-light); border-radius: 10px; font-size: .82rem; font-family: inherit; color: var(--secondary); background: #fff; transition: border-color .2s; }
.wizard-form-input::placeholder { color: #b0b0b0; }
.wizard-form-input:focus { border-color: var(--primary); outline: none; }

.wizard-form-input-icon { position: relative; }
.wizard-form-input-icon > svg { position: absolute; left: .75rem; top: 50%; transform: translateY(-50%); stroke: var(--primary); pointer-events: none; }
.wizard-form-input-icon .wizard-form-input { padding-left: 2.25rem; }

.wizard-form-input-suffix { position: relative; flex: 1; }
.wizard-form-input-suffix .wizard-form-input { padding-right: 2rem; }
.wizard-input-suffix { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); font-size: .82rem; font-weight: 600; color: var(--primary); pointer-events: none; }

.wizard-budget-row { display: flex; align-items: center; gap: .5rem; }
.wizard-budget-ou { font-size: .78rem; font-weight: 600; color: var(--text-muted); }

.wizard-toggle { display: flex; border: 1.5px solid var(--primary); border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.wizard-toggle-btn { padding: .55rem .85rem; font-size: .75rem; font-weight: 700; font-family: inherit; border: none; cursor: pointer; background: #fff; color: var(--primary); transition: background .2s, color .2s; }
.wizard-toggle-btn.active { background: var(--primary); color: #fff; }

.wizard-form-textarea { width: 100%; padding: .7rem .85rem; border: 1.5px solid var(--border-light); border-radius: 10px; font-size: .82rem; font-family: inherit; color: var(--secondary); background: #fff; resize: vertical; transition: border-color .2s; }
.wizard-form-textarea::placeholder { color: #b0b0b0; }
.wizard-form-textarea:focus { border-color: var(--primary); outline: none; }

.wizard-file-upload { display: flex; align-items: center; gap: .75rem; }
.wizard-file-hidden { display: none; }
.wizard-file-btn { display: inline-block; padding: .55rem 1.1rem; border: 1.5px solid var(--border-light); border-radius: 10px; font-size: .75rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: border-color .2s; text-transform: uppercase; letter-spacing: .03em; }
.wizard-file-btn:hover { border-color: var(--primary); color: var(--primary); }
.wizard-file-name { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .35rem; }
.wizard-file-name .wizard-file-remove { background: none; border: none; cursor: pointer; color: var(--accent); padding: .15rem; border-radius: 50%; display: inline-flex; }
.wizard-file-name .wizard-file-remove:hover { background: rgba(236,64,122,.08); }

/* Wizard Section Title & Subtitle */
.wizard-section-title { display: flex; align-items: center; gap: .5rem; }
.wizard-section-title h2 { font-size: 1.05rem; font-weight: 800; color: var(--secondary); text-transform: uppercase; letter-spacing: .02em; }
.wizard-section-subtitle { font-size: .82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .03em; margin-top: .25rem; }

/* Wizard Event Type Chips */
.wizard-event-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: .25rem; }
.wizard-chip { display: inline-flex; align-items: center; justify-content: center; gap: .35rem; padding: .5rem .9rem; border: 1.5px solid var(--border-light); border-radius: 25px; font-size: .78rem; font-weight: 600; color: var(--text-muted); background: #fff; cursor: pointer; transition: all .2s; user-select: none; }
.wizard-chip input[type="checkbox"] { display: none; }
.wizard-chip svg { stroke: var(--text-muted); transition: stroke .2s; }
.wizard-chip:hover { border-color: var(--accent); color: var(--accent); }
.wizard-chip:hover svg { stroke: var(--accent); }
.wizard-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.wizard-chip.active svg { stroke: #fff; }

/* Wizard Datetime Custom Pickers */
.wizard-datetime { display: flex; gap: .5rem; }
.wizard-datetime .wizard-form-input-icon { flex: 1; }
.wizard-datepicker, .wizard-timepicker { cursor: pointer; }

/* Dropdown container */
.wizard-picker-dropdown { position: fixed; z-index: 9999; background: #fff; border: 1.5px solid var(--border-light); border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.1); padding: .75rem; min-width: 260px; display: none; }
.wizard-picker-dropdown.open { display: block; }

/* Calendar header */
.wizard-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.wizard-cal-title { font-size: .82rem; font-weight: 700; color: var(--secondary); }
.wizard-cal-nav { background: var(--bg-light); border: none; cursor: pointer; width: 28px; height: 28px; border-radius: 50%; color: var(--secondary); transition: background .15s, color .15s; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wizard-cal-nav:hover { background: var(--primary); color: #fff; }
.wizard-cal-nav svg { display: block; }

/* Calendar weekday names */
.wizard-cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: .25rem; }
.wizard-cal-weekdays span { font-size: .65rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; padding: .2rem 0; }

/* Calendar days grid */
.wizard-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.wizard-cal-day { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; margin: 0 auto; border-radius: 50%; font-size: .78rem; color: var(--secondary); cursor: pointer; border: none; background: none; font-family: inherit; transition: all .15s; }
.wizard-cal-day:hover { background: rgba(77,166,200,.1); }
.wizard-cal-day.today { font-weight: 700; border: 1.5px solid var(--primary); }
.wizard-cal-day.selected { background: var(--accent); color: #fff; font-weight: 700; }
.wizard-cal-day.other-month { color: var(--border-light); cursor: default; }
.wizard-cal-day.disabled, .wizard-cal-day[disabled] { color: var(--border-light); cursor: not-allowed; pointer-events: none; }

/* Time picker grid */
.wizard-time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .35rem; max-height: 200px; overflow-y: auto; }
.wizard-time-option { padding: .45rem .35rem; text-align: center; border-radius: 8px; font-size: .78rem; font-weight: 600; color: var(--secondary); cursor: pointer; border: none; background: none; font-family: inherit; transition: all .15s; }
.wizard-time-option:hover { background: rgba(77,166,200,.1); }
.wizard-time-option.selected { background: var(--accent); color: #fff; }
.wizard-time-option.disabled, .wizard-time-option[disabled] { color: var(--border-light); cursor: not-allowed; pointer-events: none; }

/* Recap page */
.wizard-recap-section { background: rgba(236, 64, 122, .05); border-radius: var(--radius-md); padding: 1.25rem; margin-bottom: 1rem; }
.wizard-recap-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .85rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border-light); }
.wizard-recap-title { display: flex; align-items: center; gap: .4rem; font-size: .75rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: .3px; }
.wizard-recap-edit { font-size: .72rem; font-weight: 600; color: var(--accent); text-decoration: none; transition: color .15s; }
.wizard-recap-edit:hover { color: var(--accent-dark); text-decoration: underline; }
.wizard-recap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; }
.wizard-recap-item { display: flex; flex-direction: column; gap: .15rem; }
.wizard-recap-item-full { grid-column: 1 / -1; }
.wizard-recap-label { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .2px; }
.wizard-recap-value { font-size: .85rem; font-weight: 600; color: var(--secondary); }
.wizard-recap-chips { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .15rem; }
.wizard-recap-chip { font-size: .72rem; font-weight: 600; padding: .25rem .7rem; border-radius: 20px; background: var(--primary); color: #fff; }
.wizard-recap-items { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.wizard-recap-item-card { display: flex; align-items: center; gap: .6rem; background: #fff; border-radius: var(--radius-sm); padding: .5rem; }
.wizard-recap-item-card img { width: 52px; height: 52px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.wizard-recap-item-name { font-size: .8rem; font-weight: 700; color: var(--secondary); display: block; }
.wizard-recap-item-city { font-size: .7rem; color: var(--text-muted); }
.wizard-recap-item-info { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.wizard-recap-consent { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: 1.25rem; font-size: .78rem; color: var(--text-light); cursor: pointer; }
.wizard-recap-consent input[type="checkbox"] { margin-top: .15rem; accent-color: var(--accent); flex-shrink: 0; }
.wizard-submit-btn { background: var(--accent) !important; gap: .5rem; }
.wizard-submit-btn:hover { background: var(--accent-dark) !important; }

@media (max-width: 768px) {
    .wizard-form-row { grid-template-columns: 1fr; }
    .wizard-budget-row { flex-wrap: wrap; }
    .wizard-event-chips { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
    .wizard-recap-grid { grid-template-columns: 1fr; }
    .wizard-recap-items { grid-template-columns: 1fr; }
}

/* ============================================================
   AUTOCOMPLETE
   ============================================================ */
.autocomplete-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-radius: 0 0 var(--radius-md) var(--radius-md); box-shadow: var(--shadow-lg); z-index: 100; display: none; max-height: 300px; overflow-y: auto; }
.autocomplete-dropdown.open { display: block; }
.autocomplete-item { display: block; padding: .65rem 1rem; cursor: pointer; transition: background .15s; font-size: .9rem; border-bottom: 1px solid var(--border-light); color: var(--text); }
.autocomplete-item:hover { background: var(--bg-light); }
.autocomplete-item strong { color: var(--secondary); }
.autocomplete-item span { color: var(--text-muted); font-size: .8rem; margin-left: .5rem; }
.no-results { color: var(--text-muted); cursor: default; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { padding: 2rem 0; }
.legal-page h1 { margin-bottom: 1.5rem; }
.legal-page h2 { font-size: 1.3rem; margin: 2rem 0 .75rem; }
.legal-page p, .legal-page li { line-height: 1.8; }
.legal-page ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }

/* ============================================================
   ERROR PAGES
   ============================================================ */
.error-page { text-align: center; padding: 5rem 0; }
.error-code { font-size: 6rem; font-weight: 900; color: var(--primary); font-family: var(--font-heading); }
.error-page h1 { margin-bottom: 1rem; }
.error-page p { color: var(--text-light); margin-bottom: 2rem; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
@media (min-width: 768px) { .d-md-block { display: block; } .d-md-none { display: none; } }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #f4f4f4; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 10px; border: 2px solid #f4f4f4; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ============================================================
   ADDITIONAL COLOR UTILITIES
   ============================================================ */
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.text-purple { color: var(--purple); }
.bg-beige { background-color: var(--beige); }
.bg-green { background-color: var(--green); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { padding: 3rem 0; }
.blog-header { text-align: center; margin-bottom: 2rem; }
.blog-title { font-size: 2rem; font-weight: 700; color: var(--secondary); margin-bottom: .5rem; }
.blog-subtitle { color: var(--text-light); font-size: 1rem; }
.blog-categories { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.blog-cat-link { padding: .4rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 600; text-decoration: none; color: var(--text-light); background: var(--bg-light); border: 1px solid var(--border-light); transition: all .2s; }
.blog-cat-link:hover, .blog-cat-link.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.article-card { background: #fff; border: 1.5px solid #EFE9E3; border-radius: 16px; overflow: hidden; transition: border-color .2s; }
.article-card:hover { border-color: #4DA6C8; }
.article-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.article-card-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.article-card-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-light); }
.article-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.article-card-category { font-size: .7rem; font-weight: 700; text-transform: uppercase; color: var(--accent); margin-bottom: .4rem; }
.article-card-title { font-size: 1rem; font-weight: 700; color: var(--secondary); margin-bottom: .5rem; line-height: 1.3; }
.article-card-excerpt { font-size: .85rem; color: var(--text-light); line-height: 1.5; margin-bottom: .75rem; flex: 1; }
.article-card-meta { display: flex; gap: 1rem; font-size: .75rem; color: #9ca3af; margin-top: auto; padding-top: .5rem; border-top: 1px solid var(--border-light); }

/* Article Show */
.article-show { padding: 2rem 0 4rem; }
.article-show-hero { border-radius: 16px; overflow: hidden; margin-bottom: 2rem; max-height: 450px; }
.article-show-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-show-content { max-width: 800px; margin: 0 auto; }
.article-show-header { margin-bottom: 2rem; }
.article-show-category { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; color: var(--accent); text-decoration: none; margin-bottom: .5rem; }
.article-show-title { font-size: 2rem; font-weight: 800; color: var(--secondary); line-height: 1.2; margin-bottom: .75rem; }
.article-show-meta { display: flex; gap: 1rem; font-size: .85rem; color: var(--text-light); }
.article-show-body { font-size: 1rem; line-height: 1.8; color: #374151; }
.article-show-body h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 1rem; color: var(--secondary); }
.article-show-body h3 { font-size: 1.15rem; font-weight: 600; margin: 1.5rem 0 .75rem; color: var(--secondary); }
.article-show-body p { margin-bottom: 1rem; }
.article-show-body img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
.article-show-body ul, .article-show-body ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.article-show-body li { margin-bottom: .4rem; }
.article-show-body blockquote { border-left: 4px solid var(--accent); padding: 1rem 1.5rem; background: #fce4ec20; margin: 1.5rem 0; font-style: italic; border-radius: 0 8px 8px 0; }
.article-show-related { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border-light); }
.article-show-related h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--secondary); }

/* Page Show */
.page-show { padding: 3rem 0; }
.page-show-content { max-width: 800px; margin: 0 auto; }
.page-show-title { font-size: 2rem; font-weight: 800; color: var(--secondary); margin-bottom: 2rem; }
.page-show-body { font-size: 1rem; line-height: 1.8; color: #374151; }
.page-show-body h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 1rem; color: var(--secondary); }
.page-show-body h3 { font-size: 1.15rem; font-weight: 600; margin: 1.5rem 0 .75rem; }
.page-show-body p { margin-bottom: 1rem; }
.page-show-body ul, .page-show-body ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.page-show-body li { margin-bottom: .4rem; }

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .article-show-title { font-size: 1.5rem; }
}

/* ============================================
   Contact Page
   ============================================ */
.contact-page { padding: 0 0 64px; }
/* 1400px de contenu + 24px de gouttière (box-sizing global en border-box) */
.contact-page .container { max-width: 1448px; padding: 0 24px; }
.contact-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 20px 0; font-size: 13px; line-height: 1.6; color: var(--text-muted); }
.contact-breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.contact-breadcrumbs a:hover { color: var(--primary-dark); text-decoration: underline; }
.contact-breadcrumbs svg { color: #d4cfc7; flex-shrink: 0; }
.contact-breadcrumbs [aria-current] { color: var(--text); font-weight: 600; }
.contact-intro { padding: 14px 0 40px; max-width: 720px; }
.contact-intro h1 { margin: 0; font: 700 42px/1.15 var(--font-heading); color: var(--text); text-wrap: pretty; }
.contact-intro p { margin: 1rem 0 0; font-size: 17px; line-height: 1.6; color: var(--text-light); }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 40px; align-items: start; }

.contact-form { display: flex; flex-direction: column; gap: 22px; }
.contact-form-title { display: flex; align-items: center; gap: 9px; color: var(--accent); }
.contact-form-title svg { stroke: currentColor; stroke-width: 2; stroke-linejoin: round; fill: none; }
.contact-form-title h2 { margin: 0; font: 800 17px/1.2 var(--font-heading); text-transform: uppercase; letter-spacing: .02em; color: var(--text); }

.contact-fieldset { display: block; border: 0; margin: 0; padding: 0; min-width: 0; }
.contact-field-label { display: block; padding: 0; margin-bottom: 10px; font: 700 12px var(--font-primary); color: var(--text); }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

.contact-input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font: 400 14px var(--font-primary); color: var(--text); background: #fff; box-sizing: border-box; outline: none; transition: border-color .2s; }
.contact-input::placeholder { color: #b0b0b0; }
.contact-input:focus { border-color: var(--primary); }
.contact-textarea { padding: 13px 15px; line-height: 1.65; resize: vertical; }

.contact-subjects { display: flex; flex-wrap: wrap; gap: 9px; }
.contact-subject { position: relative; cursor: pointer; }
.contact-subject input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.contact-subject span { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 25px; border: 1.5px solid var(--border); background: #fff; font: 600 13px var(--font-primary); color: var(--text-muted); transition: all .2s; }
.contact-subject:hover span { border-color: var(--accent); color: var(--accent); }
.contact-subject input:checked + span { background: var(--accent); border-color: var(--accent); color: #fff; }
.contact-subject input:focus-visible + span { outline: 2px solid var(--primary); outline-offset: 2px; }

.contact-consent { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; font-size: 13px; line-height: 1.5; color: var(--text-light); }
.contact-consent input { appearance: none; -webkit-appearance: none; flex: 0 0 19px; width: 19px; height: 19px; margin: 2px 0 0; border: 1.5px solid var(--border); border-radius: 5px; background: #fff center / 11px no-repeat; cursor: pointer; transition: background-color .2s, border-color .2s; }
.contact-consent input:checked { background-color: var(--primary); border-color: var(--primary); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.contact-consent input:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding-top: 4px; }
.contact-submit { display: inline-flex; align-items: center; gap: 9px; background: var(--accent); color: #fff; border: none; padding: 14px 32px; border-radius: 10px; font: 700 15px var(--font-primary); cursor: pointer; transition: background .2s, transform .15s; }
.contact-submit:hover { background: var(--accent-dark); transform: translateY(-1px); }
.contact-delay { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-muted); }
.contact-delay svg { color: var(--primary); }

.contact-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 24px; }
.contact-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--beige); }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Liens légaux de la page Contact */
.contact-legal-links { list-style: none; margin: .75rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.contact-legal-links a { color: var(--text-light); font-size: .9rem; text-decoration: none; }
.contact-legal-links a:hover { color: var(--accent); text-decoration: underline; }

.contact-card { border-radius: var(--radius-lg); padding: 24px; }
.contact-card--info { background: #E8F4F9; padding: 26px 24px; }
.contact-card--info h2 { margin: 0 0 20px; font: 700 16px/1.2 var(--font-heading); text-transform: uppercase; letter-spacing: .02em; color: var(--text); }
.contact-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-info-list li { display: flex; gap: 14px; }
.contact-info-list li > div { min-width: 0; }
.contact-info-icon { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.contact-info-list strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.contact-info-list p { margin: 3px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--text-light); overflow-wrap: anywhere; }
.contact-info-list a { color: var(--primary); }
.contact-info-list a:hover { color: var(--primary-dark); text-decoration: underline; }

.contact-card--quote { border: 1.5px solid var(--border); }
.contact-card--quote strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.contact-card--quote p { margin: 8px 0 16px; font-size: 13.5px; line-height: 1.6; color: var(--text-light); }
.contact-quote-link { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--primary); border-radius: 10px; padding: 11px 20px; font-size: 13px; font-weight: 700; color: var(--primary); text-decoration: none; transition: background .2s, color .2s; }
.contact-quote-link:hover { background: var(--primary); color: #fff; text-decoration: none; }

@media (max-width: 992px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-aside { position: static; }
}
@media (max-width: 576px) {
    .contact-intro h1 { font-size: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-submit { width: 100%; justify-content: center; }
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal {
    opacity: 0;
    transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
    will-change: opacity, transform;
}
.reveal.reveal-up { transform: translateY(40px); }
.reveal.reveal-down { transform: translateY(-30px); }
.reveal.reveal-left { transform: translateX(-60px); }
.reveal.reveal-right { transform: translateX(60px); }
.reveal.reveal-scale { transform: scale(.92); }

.reveal.revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; opacity: 1; transform: none; }
}
