/* PharmaConnect public site — structure Health, couleurs & fond d’origine */
@import url('https://fonts.bunny.net/css?family=fraunces:500,600,700|manrope:400,500,600,700&display=swap');

:root {
    --lp-primary: #0f5f50;
    --lp-primary-dark: #042f29;
    --lp-primary-mid: #0c7863;
    --lp-accent: #FF8200;
    --lp-accent-dark: #e56f00;
    --lp-text: #343a46;
    --lp-muted: #667690;
    --lp-light: #ecfdf8;
    --lp-white: #ffffff;
    --lp-border: #d5dae3;
    --lp-ink-50: #f6f7f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--lp-text);
    background: var(--lp-white);
    overflow-x: hidden;
}
ul { list-style: none; margin: 0; padding: 0; }
a, a:hover { text-decoration: none; }
p { font-weight: 400; }
h1, h2, h3, h4, .section_title, .home_title, .logo a, .page_title, .faq_title {
    font-family: 'Fraunces', Georgia, serif;
}

.super_container { width: 100%; overflow: hidden; }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.row > [class*="col"] { padding: 0 15px; }
.col { flex: 1 0 0%; width: 100%; }
.col-lg-3, .col-lg-4, .col-lg-6, .col-xl-4 { width: 100%; }
@media (min-width: 992px) {
    .col-lg-3 { width: 25%; flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { width: 33.333%; flex: 0 0 33.333%; max-width: 33.333%; }
    .col-lg-6 { width: 50%; flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 1200px) {
    .col-xl-4 { width: 33.333%; flex: 0 0 33.333%; max-width: 33.333%; }
}

.d-flex { display: flex !important; }
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.text-center { text-align: center !important; }
.ml-auto { margin-left: auto !important; }
.mr-auto { margin-right: auto !important; }
.trans_500 { transition: all 500ms ease; }

.button {
    display: inline-block;
    border-radius: 8px;
    vertical-align: middle;
}
.button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 46px;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
    background: var(--lp-accent);
    border-radius: 8px;
    overflow: hidden;
}
.button a span {
    display: block;
    white-space: nowrap;
    transition: transform 400ms ease, opacity 400ms ease;
}
/* 1er span = taille réelle du bouton ; 2e = effet hover */
.button a span:first-child {
    position: relative;
}
.button a span:last-child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 120%);
    opacity: 0;
    pointer-events: none;
}
.button a:hover span:first-child {
    transform: translateY(-120%);
    opacity: 0;
}
.button a:hover span:last-child {
    transform: translate(-50%, -50%);
    opacity: 1;
}
.button a:hover { background: var(--lp-accent-dark); }
.services_button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
}
.services_button a {
    min-width: 220px;
}

/* Menu mobile */
.menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(4, 47, 41, 0.97);
    z-index: 200;
    visibility: hidden;
    opacity: 0;
}
.menu.active { visibility: visible; opacity: 1; }
.menu_content { width: 100%; height: 100%; padding: 80px 20px 40px; }
.menu_close_container {
    position: absolute; top: 28px; right: 28px;
    width: 24px; height: 24px; cursor: pointer;
}
.menu_close { position: relative; width: 100%; height: 100%; }
.menu_close::before, .menu_close::after {
    content: '';
    position: absolute; top: 11px; left: 0;
    width: 100%; height: 2px; background: #fff;
}
.menu_close::before { transform: rotate(45deg); }
.menu_close::after { transform: rotate(-45deg); }
.menu_item { margin-bottom: 12px; }
.menu_item a {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 28px; font-weight: 600;
    color: #fff;
}
.menu_item a:hover { color: var(--lp-accent); }
.menu_social { position: absolute; bottom: 30px; left: 0; width: 100%; text-align: center; }
.menu_social ul { display: flex; justify-content: center; gap: 18px; }
.menu_social a { color: rgba(255,255,255,0.7); font-size: 16px; }
.menu_social a:hover { color: var(--lp-accent); }

/* Home / Hero — fond précédent */
.home {
    width: 100%;
    height: 100vh;
    min-height: 620px;
    position: relative;
}
.background_image {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.background_image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(4, 47, 41, 0.88) 0%, rgba(15, 95, 80, 0.72) 42%, rgba(4, 47, 41, 0.35) 100%);
}
.home_container {
    position: absolute;
    left: 0; bottom: 160px;
    width: 100%;
    z-index: 2;
}
.home_content { max-width: 640px; }
.home_title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}
.home_text {
    margin-top: 18px;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
}
.home_button { margin-top: 32px; }

/* Page hero (inner pages) */
.page_hero {
    position: relative;
    width: 100%;
    min-height: 280px;
    padding: 140px 0 70px;
    overflow: hidden;
}
.page_hero .background_image { position: absolute; inset: 0; }
.page_hero_content { position: relative; z-index: 2; }
.page_title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}
.page_subtitle {
    margin-top: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    max-width: 520px;
}

/* Header */
.header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 100;
}
.header.scrolled .header_nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: var(--lp-white);
    box-shadow: 0 4px 20px rgba(4, 47, 41, 0.1);
}
.header.scrolled .main_nav ul li a { color: var(--lp-primary); }
.header.scrolled .main_nav ul li.active a,
.header.scrolled .main_nav ul li a:hover { color: var(--lp-accent); }
.header.scrolled .logo a { color: var(--lp-primary); }
.header.scrolled .hamburger { color: var(--lp-primary); }

.header_top { width: 100%; background: transparent; }
.header_top_content { height: 93px; }
.logo a {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.logo a span { color: var(--lp-accent); }
.header_top_extra { display: none; }
.header_top_nav ul li { margin-right: 28px; }
.header_top_nav ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}
.header_top_nav ul li a:hover { color: var(--lp-accent); }
.header_top_phone { font-size: 14px; color: #fff; margin-left: 20px; }
.header_top_phone i { color: var(--lp-accent); margin-right: 8px; }
.hamburger {
    display: block;
    margin-left: auto;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

.header_nav { width: 100%; }
.header_nav_content { height: 0; overflow: hidden; }
.main_nav { display: none; }
.main_nav ul li { margin-right: 36px; }
.main_nav ul li a {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.main_nav ul li.active a,
.main_nav ul li a:hover { color: var(--lp-accent); }
.search_content { display: none; }
.header_user_chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 220px;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--lp-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    transition: background 0.2s ease;
}
.header_user_chip i { font-size: 16px; opacity: 0.95; }
.header_user_chip span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.header_user_chip:hover { background: var(--lp-accent-dark); color: #fff; }
.header.scrolled .header_user_chip {
    background: var(--lp-accent);
    color: #fff;
}

@media (min-width: 992px) {
    .header_top_extra { display: flex !important; }
    .hamburger { display: none; }
    .header_nav_content { height: 67px; overflow: visible; }
    .header_nav_container { background: rgba(4, 47, 41, 0.45); }
    .header.scrolled .header_nav_container { background: var(--lp-white); }
    .main_nav { display: block; }
    .search_content { display: flex !important; }
    .home_container { bottom: 200px; }
}
@media (max-width: 991px) {
    .home_title { font-size: 34px; }
    .home_container { bottom: 100px; }
    .page_title { font-size: 32px; }
}

/* CTA */
.cta {
    width: 100%;
    padding: 92px 0;
    position: relative;
    margin-top: 0;
}
.parallax_background {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.parallax_background::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(4, 47, 41, 0.9) 0%, rgba(15, 95, 80, 0.8) 100%);
}
.cta_container { position: relative; z-index: 2; gap: 30px; }
.cta_title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    max-width: 640px;
}
.cta_subtitle { margin-top: 12px; color: rgba(255,255,255,0.75); max-width: 520px; }
.cta_button { flex-shrink: 0; }
@media (min-width: 1200px) {
    .flex-xl-row { flex-direction: row !important; }
    .align-items-xl-start { align-items: flex-start !important; }
    .justify-content-xl-start { justify-content: flex-start !important; }
    .text-xl-left { text-align: left !important; }
    .ml-xl-auto { margin-left: auto !important; }
}

/* Pharmacies de garde */
.duty {
    width: 100%;
    background: linear-gradient(180deg, #f3f8f6 0%, var(--lp-white) 100%);
    padding: 80px 0 70px;
}
.duty_teaser {
    padding-top: 90px;
    padding-bottom: 90px;
}
.duty_teaser_actions {
    margin-top: 28px;
}
.duty_teaser_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--lp-accent, #FF8200);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.duty_teaser_btn:hover {
    background: #e57400;
    color: #fff;
    transform: translateY(-1px);
}
.duty_lead {
    margin: 18px auto 0;
    max-width: 520px;
    color: var(--lp-muted);
    font-size: 15px;
    line-height: 1.6;
}
.duty_period {
    margin: 0 0 12px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--lp-primary-dark);
}
.duty_filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 36px;
}
.duty_filter_field {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 220px;
    min-width: 0;
}
.duty_filter_search { flex: 2 1 260px; }
.duty_filter_zone { flex: 1 1 180px; max-width: 280px; }
.duty_filter_search i {
    position: absolute;
    left: 14px;
    color: var(--lp-muted);
    font-size: 14px;
    pointer-events: none;
}
.duty_filter_field input,
.duty_filter_field select {
    width: 100%;
    height: 46px;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    background: #fff;
    color: var(--lp-text);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.duty_filter_field input {
    padding: 0 14px 0 40px;
}
.duty_filter_field select {
    padding: 0 36px 0 14px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23667690' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}
.duty_filter_field input:focus,
.duty_filter_field select:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(15, 95, 80, 0.12);
}
.duty_filter_clear {
    height: 46px;
    padding: 0 16px;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    background: #fff;
    color: var(--lp-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.duty_filter_clear:hover {
    color: var(--lp-primary-dark);
    border-color: var(--lp-primary);
}
.duty_filter_meta {
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--lp-muted);
}
.duty_zone_tag {
    display: inline-block;
    margin-right: 8px;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(15, 95, 80, 0.1);
    color: var(--lp-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.sr_only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.duty_list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    border-top: 1px solid rgba(15, 95, 80, 0.12);
}
.duty_filterable .duty_empty { margin-top: 24px; }
@media (max-width: 575px) {
    .duty_filter_zone { max-width: none; }
}
.duty_row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(15, 95, 80, 0.12);
}
.duty_row[hidden] {
    display: none !important;
}
.duty_row_main { min-width: 0; flex: 1 1 220px; }
.duty_row_name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-primary-dark);
    line-height: 1.25;
}
.duty_row_place {
    margin-top: 4px;
    font-size: 13px;
    color: var(--lp-muted);
}
.duty_row_distance {
    margin-left: 6px;
    color: var(--lp-primary);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.duty_row_address {
    margin-top: 4px;
    font-size: 13px;
    color: var(--lp-text);
}
.duty_geo_status {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--lp-muted);
}
.duty_geo_status .fa {
    margin-right: 6px;
    color: var(--lp-primary);
}
.duty_geo_retry {
    margin-left: 6px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--lp-primary);
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}
.duty_row_actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex: 0 0 auto;
}
.duty_call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--lp-accent, #FF8200);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.duty_call:hover {
    background: #e57400;
    color: #fff;
    transform: translateY(-1px);
}
.duty_phone_label {
    font-size: 12px;
    color: var(--lp-muted);
    font-variant-numeric: tabular-nums;
}
.duty_no_phone {
    font-size: 13px;
    color: var(--lp-muted);
}
.duty_empty {
    margin: 48px auto 0;
    max-width: 420px;
    text-align: center;
    color: var(--lp-muted);
    font-size: 15px;
    padding: 28px 16px;
    border: 1px dashed rgba(15, 95, 80, 0.25);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
}
.duty_more {
    margin-top: 28px;
    text-align: center;
}
.duty_more a {
    color: var(--lp-primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 95, 80, 0.35);
}
.duty_more a:hover { border-bottom-color: var(--lp-primary); }
.duty_page_body { padding: 40px 0 90px; }
@media (max-width: 575px) {
    .duty { padding: 60px 0 50px; }
    .duty_row_actions { align-items: flex-start; width: 100%; }
    .duty_row_name { font-size: 18px; }
}

/* Services */
.services { width: 100%; background: var(--lp-white); padding: 95px 0 90px; }
.section_title {
    font-size: 36px;
    font-weight: 700;
    color: var(--lp-primary-dark);
}
.section_subtitle {
    font-size: 13px;
    color: var(--lp-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.icon_boxes_row { margin-top: 70px; }
.icon_box { margin-bottom: 55px; }
.icon_box_title_container { margin-bottom: 16px; }
.icon_box_icon {
    width: 48px; height: 48px;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-light);
    border-radius: 50%;
    color: var(--lp-primary);
    font-size: 20px;
    flex-shrink: 0;
}
.icon_box_title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-primary-dark);
}
.icon_box_text { color: var(--lp-muted); font-size: 14px; padding-right: 20px; }

/* How it works */
.departments { width: 100%; background: var(--lp-ink-50); padding: 95px 0; }
.dept_row { margin-top: 70px; }
.dept_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .dept_grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
    .dept_grid { grid-template-columns: repeat(4, 1fr); }
}
.dept_item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(4, 47, 41, 0.06);
    overflow: hidden;
}
.dept_image img { width: 100%; height: 180px; object-fit: cover; display: block; }
.dept_content { padding: 22px 20px 26px; }
.dept_title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--lp-primary-dark);
}
.dept_link { margin-top: 8px; }
.dept_link a {
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-accent);
    text-transform: uppercase;
}
.dept_link a:hover { color: var(--lp-accent-dark); }

/* About page */
.about_detail {
    width: 100%;
    background: var(--lp-white);
    padding: 80px 0 95px;
}
.about_lead {
    font-size: 17px;
    color: var(--lp-text);
    max-width: 760px;
    margin: 20px auto 0;
    text-align: center;
    line-height: 1.8;
}
.about_blocks { margin-top: 50px; max-width: 860px; margin-left: auto; margin-right: auto; }
.about_block {
    background: var(--lp-ink-50);
    padding: 32px 28px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--lp-accent);
}
.about_block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-primary-dark);
    margin-bottom: 12px;
}
.about_block p, .about_block li {
    color: var(--lp-muted);
    font-size: 14px;
    line-height: 1.75;
}
.about_block ul { padding-left: 18px; list-style: disc; }
.about_block li { margin-bottom: 6px; }
.about_block strong { color: var(--lp-text); }

/* FAQ */
.stuff { width: 100%; background: var(--lp-white); padding: 95px 0; }
.faq { max-width: 800px; margin: 0 auto; }
.faq_title {
    font-size: 30px;
    font-weight: 700;
    color: var(--lp-primary-dark);
    text-align: center;
}
.faq_subtitle {
    font-size: 13px;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
    margin-bottom: 36px;
    text-align: center;
}
.accordion_container { margin-bottom: 12px; }
.accordion {
    width: 100%;
    min-height: 56px;
    padding: 14px 22px;
    background: var(--lp-light);
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-primary-dark);
    border-radius: 8px;
}
.accordion.active {
    background: var(--lp-primary);
    color: #fff;
    border-radius: 8px 8px 0 0;
}
.accordion_panel {
    display: none;
    padding: 18px 22px;
    background: var(--lp-ink-50);
    border-radius: 0 0 8px 8px;
}
.accordion_panel.open { display: block; }
.accordion_panel p { color: var(--lp-muted); font-size: 14px; }

/* Contact page */
.contact_page { width: 100%; background: var(--lp-white); padding: 70px 0 95px; }
.contact_cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}
@media (min-width: 768px) {
    .contact_cards { grid-template-columns: repeat(3, 1fr); }
}
.contact_card {
    text-align: center;
    padding: 36px 24px;
    background: var(--lp-light);
    border-radius: 12px;
}
.contact_card i {
    font-size: 28px;
    color: var(--lp-accent);
    margin-bottom: 14px;
}
.contact_card h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--lp-primary-dark);
    margin-bottom: 8px;
}
.contact_card a, .contact_card p {
    color: var(--lp-muted);
    font-size: 14px;
}
.contact_card a:hover { color: var(--lp-accent); }

.contact_form_wrap {
    margin-top: 50px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    background: var(--lp-ink-50);
    padding: 36px 28px;
    border-radius: 12px;
}
.contact_form_wrap h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px;
    color: var(--lp-primary-dark);
    margin-bottom: 20px;
    text-align: center;
}
.contact_form_row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
@media (min-width: 640px) {
    .contact_form_row { grid-template-columns: 1fr 1fr; }
}
.contact_form_input {
    width: 100%;
    height: 46px;
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    padding: 0 16px;
    background: #fff;
    font-size: 14px;
    outline: none;
    color: var(--lp-text);
}
.contact_form_input:focus { border-color: var(--lp-primary); }
.contact_form_textarea {
    height: 140px;
    padding: 14px 16px;
    resize: vertical;
    margin-bottom: 12px;
}
.contact_form_button {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 8px;
    background: var(--lp-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
}
.contact_form_button:hover { background: var(--lp-accent-dark); }

/* Footer — redisposé */
.footer {
    width: 100%;
    position: relative;
    padding-top: 72px;
    background: var(--lp-primary-dark);
}
.footer .parallax_background { display: none; }
.footer_content { position: relative; z-index: 2; padding-bottom: 48px; }
.footer .logo a { color: #fff; font-size: 24px; }
.footer_about_text {
    margin-top: 16px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
    max-width: 260px;
}
.footer_col { margin-bottom: 36px; }
.footer_col_title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.footer_menu li { margin-bottom: 10px; }
.footer_menu a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.footer_menu a:hover { color: var(--lp-accent); }
.footer_contact_list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.footer_contact_list i {
    color: var(--lp-accent);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}
.footer_contact_list a {
    color: rgba(255,255,255,0.7);
}
.footer_contact_list a:hover { color: var(--lp-accent); }
.footer_hours_list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer_cta_links { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.footer_cta_links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer_cta_links .btn-primary-f {
    background: var(--lp-accent);
    color: #fff;
}
.footer_cta_links .btn-primary-f:hover { background: var(--lp-accent-dark); }
.footer_cta_links .btn-ghost-f {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.footer_cta_links .btn-ghost-f:hover {
    border-color: var(--lp-accent);
    color: var(--lp-accent);
}

.footer_bar {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer_bar_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.footer_bar_copy {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.footer_bar_copy a { color: var(--lp-accent); }
.footer_bar_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.footer_bar_nav a {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}
.footer_bar_nav a:hover { color: var(--lp-accent); }
@media (min-width: 992px) {
    .flex-lg-row { flex-direction: row !important; }
    .align-items-lg-center { align-items: center !important; }
    .ml-lg-auto { margin-left: auto !important; }
}
@media (min-width: 576px) {
    .flex-sm-row { flex-direction: row !important; }
}

/* Map contribution prompt + wizard */
.map_flash_error {
    position: relative;
    z-index: 40;
    margin: 0;
    padding: 12px 16px;
    text-align: center;
    background: #fef2f2;
    color: #9f1239;
    font-size: 14px;
    border-bottom: 1px solid #fecdd3;
}
.map_prompt {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.map_prompt_backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 47, 41, 0.45);
}
.map_prompt_dialog {
    position: relative;
    width: min(100%, 420px);
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 22px;
    box-shadow: 0 24px 60px rgba(4, 47, 41, 0.28);
    border: 1px solid rgba(15, 95, 80, 0.12);
}
.map_prompt_title {
    margin: 0 0 10px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--lp-primary-dark);
    line-height: 1.3;
}
.map_prompt_text {
    margin: 0 0 18px;
    font-size: 14px;
    color: var(--lp-muted);
    line-height: 1.5;
}
.map_prompt_error {
    margin: 0 0 12px;
    font-size: 13px;
    color: #9f1239;
}
.map_prompt_actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.map_prompt_btn,
.map_contrib_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.map_prompt_btn:disabled,
.map_contrib_btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.map_prompt_btn_primary,
.map_contrib_btn_primary {
    background: var(--lp-accent, #FF8200);
    color: #fff;
    box-shadow: 0 6px 16px rgba(255, 130, 0, 0.35);
}
.map_prompt_btn_primary:hover:not(:disabled),
.map_contrib_btn_primary:hover:not(:disabled) {
    background: #e57400;
    color: #fff;
    transform: translateY(-1px);
}
.map_prompt_btn_ghost,
.map_contrib_btn_ghost {
    background: transparent;
    color: var(--lp-muted);
    border: 1px solid rgba(15, 95, 80, 0.2);
}
.map_prompt_btn_ghost:hover:not(:disabled),
.map_contrib_btn_ghost:hover:not(:disabled) {
    background: rgba(15, 95, 80, 0.06);
    color: var(--lp-primary-dark);
}
.map_contrib_body { padding: 40px 0 90px; }
.map_contrib_card {
    background: #fff;
    border: 1px solid rgba(15, 95, 80, 0.12);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(4, 47, 41, 0.06);
    max-width: 820px;
    margin: 0 auto;
}
.map_contrib_alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fef2f2;
    color: #9f1239;
    font-size: 13px;
}
.map_contrib_alert ul { margin: 0; padding-left: 18px; }
.map_contrib_coords {
    margin: 0 0 18px;
    font-size: 13px;
    color: var(--lp-muted);
}
.map_contrib_steps {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.map_contrib_steps span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: rgba(15, 95, 80, 0.08);
    color: var(--lp-muted);
}
.map_contrib_steps span.active {
    background: var(--lp-primary);
    color: #fff;
}
.map_contrib_title {
    margin: 0 0 8px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--lp-primary-dark);
}
.map_contrib_hint {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--lp-muted);
}
.map_contrib_radios {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}
.map_contrib_radios_stack { flex-direction: column; }
.map_contrib_radio {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 95, 80, 0.18);
    cursor: pointer;
    font-size: 14px;
    color: var(--lp-text);
    background: #fff;
}
.map_contrib_radio.selected {
    border-color: var(--lp-primary);
    background: rgba(15, 95, 80, 0.06);
    font-weight: 600;
}
.map_contrib_radio input { accent-color: var(--lp-primary); }
.map_contrib_field_wrap { margin-bottom: 14px; }
.map_contrib_field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--lp-muted);
}
.map_contrib_field input {
    border: 1px solid rgba(15, 95, 80, 0.2);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    color: var(--lp-text);
    outline: none;
}
.map_contrib_field input:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(15, 95, 80, 0.12);
}
.map_contrib_suggest {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    border: 1px solid rgba(15, 95, 80, 0.15);
    border-radius: 12px;
    overflow: hidden;
    max-height: 240px;
    overflow-y: auto;
}
.map_contrib_suggest button {
    width: 100%;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(15, 95, 80, 0.08);
    background: #fff;
    padding: 12px 14px;
    cursor: pointer;
}
.map_contrib_suggest li:last-child button { border-bottom: 0; }
.map_contrib_suggest button:hover { background: rgba(15, 95, 80, 0.05); }
.map_contrib_suggest strong {
    display: block;
    font-size: 14px;
    color: var(--lp-primary-dark);
}
.map_contrib_suggest span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--lp-muted);
}
.map_contrib_selected {
    margin: 0 0 16px;
    font-size: 13px;
    color: var(--lp-text);
}
.map_contrib_clear {
    margin-left: 8px;
    border: 0;
    background: none;
    color: var(--lp-primary);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
}
.map_contrib_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 8px;
}

/* Chatbot */
[x-cloak] { display: none !important; }
.lp-bot-wrap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.lp-bot-panel {
    width: min(100vw - 2rem, 22rem);
    height: 28rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(4, 47, 41, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--lp-border);
}
.lp-bot-head {
    background: var(--lp-primary);
    color: #fff;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lp-bot-head p { margin: 0; font-size: 14px; font-weight: 700; font-family: 'Fraunces', Georgia, serif; }
.lp-bot-head span { font-size: 11px; opacity: 0.75; }
.lp-bot-close {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 4px 8px;
}
.lp-bot-msgs {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    background: var(--lp-ink-50);
}
.lp-bot-msg { display: flex; flex-direction: column; margin-bottom: 10px; }
.lp-bot-msg.user { align-items: flex-end; }
.lp-bot-msg.bot { align-items: flex-start; }
.lp-bot-bubble {
    max-width: 90%;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
    white-space: pre-wrap;
}
.lp-bot-msg.bot .lp-bot-bubble { background: #fff; color: var(--lp-text); border: 1px solid #eee; }
.lp-bot-msg.user .lp-bot-bubble { background: var(--lp-primary); color: #fff; }
.lp-bot-foot { border-top: 1px solid #eee; padding: 10px 12px; background: #fff; }
.lp-bot-quick { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.lp-bot-quick button {
    border: 1px solid var(--lp-border);
    background: var(--lp-light);
    color: var(--lp-primary-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
    cursor: pointer;
}
.lp-bot-quick button:hover { background: var(--lp-primary); color: #fff; }
.lp-bot-form { display: flex; gap: 8px; }
.lp-bot-form input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
}
.lp-bot-form input:focus { border-color: var(--lp-primary); }
.lp-bot-form button {
    background: var(--lp-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 14px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
}
.lp-bot-toggle {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--lp-accent);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 130, 0, 0.35);
}
.lp-bot-toggle:hover { background: var(--lp-accent-dark); }
