/* ====================================================================================================
   MINIMAL CSS3 MENU
==================================================================================================== */

/* ============================================
   VARIABLES / COULEURS
============================================ */
:root {
    --bg: #f5f5f7;
    --nav-bg: #fafafb;
    --card-bg: #ffffff;
    --text-main: #222222;
    --text-muted: #666666;
    --primary: #0074ff;
    --border: #dddddd;
    --border-dark: #6c757d;
    --bleu-roi: #0043c5;
    --bleu-roi-dark: #0037a3;
    --bleu-roi-light: #1a5ce0;
    --rouge-roi: #b11226;
    --rouge-roi-dark: #8f0f1e;
    --success: #28a745;
}

/* ============================================
   BASE CSS
============================================ */
.success {
    color: var(--success);
}
.bleu {
    color: var(--bleu-roi);
}

.bleu-roi-light {
    color: var(--bleu-roi-light);
}

.red {
    color: var(--rouge-roi);
}

.bg-bleu-dark {
    background-color: var(--bleu-roi-dark);
}

.border-dark {
    border: solid 1px var(--border-dark);
}

.btn-bleuroi {
    background-color: var(--bleu-roi);
    border-color: var(--bleu-roi);
    color: #fff;
}

.btn-bleuroi:hover {
    background-color: var(--bleu-roi-dark);
    border-color: var(--bleu-roi-dark);
    color: #fff;
}

.btn-bleuroi:focus,
.btn-bleuroi:active {
    background-color: var(--bleu-roi-dark);
    border-color: var(--bleu-roi-dark);
    box-shadow: 0 0 0 0.25rem rgba(0, 67, 197, 0.25);
}

.btn-bleuroi:disabled {
    background-color: var(--bleu-roi-light);
    border-color: var(--bleu-roi-light);
    opacity: 0.65;
}

.btn-outline-bleuroi {
    color: var(--bleu-roi);
    border-color: var(--bleu-roi);
}

.btn-outline-bleuroi:hover {
    background-color: var(--bleu-roi);
    border-color: var(--bleu-roi);
    color: #fff;
}

.btn-check:checked + .btn-outline-bleuroi,
.btn-check:hover + .btn-outline-bleuroi {
    background-color: var(--bleu-roi);
    border-color: var(--bleu-roi);
    color: #fff;
}

.btn-outline-bleuroi-light {
    color: var(--bleu-roi-light);
    border-color: var(--bleu-roi);
}

.btn-outline-bleuroi-light:hover {
    background-color: var(--bleu-roi-light);
    border-color: var(--bleu-roi);
    color: #fff;
}

.btn-check:checked + .btn-outline-bleuroi-light,
.btn-check:hover + .btn-outline-bleuroi-light {
    background-color: var(--bleu-roi-light);
    border-color: var(--bleu-roi);
    color: #fff;
}

/* ----- Helpers spacing conservés ----- */
.pt-60 {
    padding-top: 60px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mt-0 {
    margin-top: 0;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 2px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-50 {
    margin-bottom: 50px;
}

/*
   À supprimer si confirmé inutile : anciens helpers legacy remplacés par pt-/mt-/mb- etc.
.p-t-50 { padding-top: 50px; }
.p-t-20 { padding-top: 20px; }
.p-b-50 { padding-bottom: 50px; }
.p-r-100 { padding-right: 150px; }
.p-l-20 { padding-left: 20px; }
.p-l-30 { padding-left: 30px; }
.m-t-50 { margin-top: 50px; }
.m-l-0 { margin-left: 0; }
.m-t-10 { margin-top: 10px; }

*/
.pull-right { float: right; }
* {
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
}

main {
    flex: 1;
    padding: 20px 16px 50px;
}

h1 {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.04em;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a.text-link {
    color: var(--bleu-roi);
    font-style: italic;
    text-decoration: underline;
}

a.btn:hover {
    text-decoration: none;
}

.champ-obligatoire {
    font-style: italic;
    color: #fc4b6c;
    padding-bottom: 5px;
    font-size: 13px;
    margin-bottom: 0;
}

footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 16px 8px 8px;
    background: var(--bg);
    width: 100%;
    z-index: 10;
}

/* ============================================
   ACCUEIL
============================================ */

/* ----- Base CSS ----- */
.page-active {
    color: var(--bleu-roi);
}

.hero {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 20vh;
    text-align: center;
}

.logo-img {
    max-width: 100px;
}

.pa-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.pa-title span {
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.pa-blue {
    background-image: linear-gradient(90deg, #1a73ff, #0043c5);
}

.pa-grey {
    background-image: linear-gradient(90deg, #8a8a8a, #cfcfcf);
}

.tagline {
    margin-top: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.search-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px auto 0;
    padding: 10px 15px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.search-card #pa-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.search-input {
    flex: 1;
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    color: var(--text-main);
}

.search-input::placeholder {
    color: #aaa;
}

.pa-search-wrapper {
    position: relative;
    width: 100%;
}

.pa-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bleu-roi);
    pointer-events: none;
    font-size: 1rem;
}

.pa-search-wrapper .search-input {
    padding-left: 42px;
    border-radius: 999px;
}

.pa-clear-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
}

.pa-clear-icon:hover {
    color: #333;
}

.suggestions {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.suggestions a {
    margin: 0 3px;
    padding: 3px 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8rem;
}

.suggestions a:hover {
    text-decoration: none;
    background-color: var(--bleu-roi);
    border-color: var(--bleu-roi);
    color: #fff;
}

.pa-suggest-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    z-index: 10000;
    max-height: 320px;
    margin-top: 6px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pa-suggest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    cursor: pointer;
}

.pa-suggest-item:hover {
    background: #f5f5f7;
}

.pa-suggest-icon {
    width: 18px;
    text-align: center;
    opacity: 0.8;
}

.pa-suggest-divider {
    height: 1px;
    margin: 4px 0;
    background: #eee;
}

.pac-container {
    z-index: 10001 !important;
}

/* ----- Responsive ----- */
@media (min-width: 576px) {
    .logo-img {
        max-width: 110px;
    }

    .pa-title {
        font-size: 2.6rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .search-card {
        padding: 12px 15px;
    }
}

@media (min-width: 768px) {
    .logo-img {
        max-width: 120px;
    }

    .pa-title {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .search-card {
        padding: 13px 15px;
    }
}

@media (min-width: 992px) {
    .logo-img {
        max-width: 140px;
    }

    .pa-title {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .search-card {
        padding: 14px 15px;
    }
}

@media (min-width: 1200px) {
    .logo-img {
        max-width: 160px;
    }

    .pa-title {
        font-size: 4rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .search-card {
        padding: 15px 15px;
    }
}

/* ============================================
   AJOUT ÉTABLISSEMENT
============================================ */

/* ----- Base CSS ----- */
.container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.active-step {
    color: var(--bleu-roi);
}

.cue-card:has(input:checked) {
    border-color: var(--bleu-roi) !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

#detail-adresse input[readonly] {
    background-color: #f8f9fa;
    border-color: #e5e7eb;
    pointer-events: none;
    user-select: none;
    cursor: default;
}

.card-form-light {
    background-color: #f8f9fb;
    border-color: var(--bleu-roi-light) !important;
}

.card-form-light:hover {
    background-color: #f4f6fa;
}

/* ----- Responsive ----- */
/* Rien de spécifique pour l'instant */

/* ============================================
   RECHERCHE
============================================ */

/* ----- Base CSS ----- */
.pa-results-header {
    position: fixed;
    z-index: 10;
    width: 100%;
    padding-top: 40px;
    background: #fff;
}

.pa-results-header img {
    max-width: 57px;
}

.pa-results-header .search-card {
    max-width: 70%;
    margin: 0;
}

#search-filters {
    max-width: 93%;
}

.pa-filters {
    padding-left: 10px;
    font-size: 0.9rem;
}

.pa-filter {
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.pa-filter:hover {
    background: #e9ecef;
}

.pa-filter.active {
    border-color: var(--bleu-roi);
    background: var(--bleu-roi);
    color: #fff;
}

#btn-filters {
    padding: 0 10px;
    border: 1px solid var(--bleu-roi);
    border-radius: 999px;
    background: #fff;
    color: #333;
    text-decoration: none;
}

#btn-filters.active {
    border-color: var(--bleu-roi);
    background: var(--bleu-roi);
    color: #fff;
}

.pa-results {
    padding-top: 170px;
    padding-left: 15px;
}
.results-title button{
    display: block;
    margin-top: 5px;
}
.pa-results-meta {
    font-size: 0.95rem;
    color: #5f6368;
}

.pa-results-count strong,
.pa-results-sub strong {
    color: var(--bleu-roi);
}

.km {
    white-space: nowrap;
    font-size: 0.9rem;
    font-style: italic;
}

.single-result {
    position: relative;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    background-color: var(--nav-bg);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.single-result .fa-certificate{
    font-size: 17px;
}
.result-tooltip {
    position: relative;
    z-index: 3;
}
.result-tables .badge,
.result-tables .badge span,
.result-tables .badge img {
    cursor: default;
    user-select: none;
}

.single-result p {
    font-size: 0.875em;
}

.single-result h3 {
    transition: color 0.2s ease;
}

@media (hover: hover) {
    .single-result:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        border-color: #e5e5e5;
    }

    .single-result:hover .result-thumb {
        transform: scale(1.05);
    }

    .single-result:hover h3 {
        color: var(--bleu-roi-light);
    }
}

.badge-activity {
    padding: 2px 5px 0 5px;
    border: 1px solid #c9dbff;
    background-color: #e7f0ff;
    color: #0d3c91;
}

.billes-icone {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    object-fit: contain;
}

.result-tables .badge,
.result-activities .badge,
.result-services .badge {
    font-weight: 400;
}

.result-services .badge {
    opacity: 0.9;
}

.result-thumb-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.result-thumb {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.result-thumb-placeholder {
    display: none;
}
.single-result .stretched-link {
    z-index: 1;
}
.result-flag {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 99px;
    border: 1px solid white;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
    z-index: 2;
    pointer-events: none;
    transition: opacity 1s ease;
}
.single-result:hover .result-flag {
    opacity: 0;
}
.contribution-block {
    padding: 16px;
    border-radius: 12px;
    background: #f9f9f9;
}

.pagination-pa {
    gap: 6px;
}

.pagination-pa .page-link {
    min-width: 36px;
    padding: 6px 12px;
    border: none;
    border-radius: 999px;
    background: #f3f6ff;
    color: var(--bleu-roi);
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
}

.pagination-pa .page-link:hover {
    transform: translateY(-1px);
    background: var(--bleu-roi-light);
    color: #fff;
}

.pagination-pa .page-item.active .page-link {
    background: var(--bleu-roi);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 67, 197, 0.25);
}

.pagination-pa .page-item.active .page-link:hover {
    background: var(--bleu-roi-dark);
}

.pagination-pa .page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
}

/* ----- Responsive ----- */

/* ----- col-sm ----- */
@media (min-width: 576px) {
    .pa-results-header {
        padding-top: 40px;
    }

    .pa-results-header img {
        max-width: 75px;
    }

    .pa-results-header .search-card {
        max-width: 75%;
    }

    .pa-filters {
        padding-left: 110px;
        font-size: 1rem;
    }

    .pa-filter {
        padding: 0 10px;
    }

    .pa-results {
        padding-top: 190px;
        padding-left: 20px;
    }

    .single-result p {
        font-size: 0.8em;
    }

    .single-result h3 {
        font-size: 1.1em;
    }

    .single-result .km {
        font-size: 0.7em;
    }

    .result-thumb-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        aspect-ratio: 4 / 3;
        border: 1px solid #eee;
        border-radius: 12px;
        background: linear-gradient(135deg, #f5f5f5, #ececec);
        color: #b8b8b8;
        font-size: 28px;
    }

    .result-thumb-wrap,
    .result-thumb,
    .result-thumb-placeholder {
        max-width: 220px;
        float: left;
    }
}

/* ----- col-md ----- */
@media (min-width: 768px) {
    .pa-results-header {
        padding-top: 45px;
    }

    .pa-results-header img {
        max-width: 85px;
    }

    .pa-results-header .search-card {
        max-width: 60%;
    }

    .pa-filters {
        padding-left: 125px;
        font-size: 1rem;
    }

    .pa-filter {
        padding: 2px 12px;
    }

    .pa-results {
        padding-top: 210px;
    }

    .single-result h3 {
        font-size: 1.3em;
    }

    .single-result p {
        font-size: 0.9em;
    }


    .result-thumb-wrap,
    .result-thumb,
    .result-thumb-placeholder {
        max-width: 200px;
        float: right;
    }

    .result-thumb-wrap {
        margin-left: 0;
    }
}

/* ----- col-lg ----- */
@media (min-width: 992px) {
    .pa-results-header {
        padding-top: 45px;
    }

    .pa-results-header img {
        max-width: 90px;
    }

    .pa-results-header .search-card {
        max-width: 50%;
    }

    .pa-filters {
        padding-left: 130px;
        font-size: 1rem;
    }

    .pa-filter {
        padding: 2px 15px;
    }

    .pa-results {
        padding-top: 210px;
        padding-left: 30px;
    }

    .result-thumb-wrap,
    .result-thumb,
    .result-thumb-placeholder {
        max-width: 220px;
    }
}

/* ----- col-xl ----- */
@media (min-width: 1200px) {
    .pa-results-header {
        padding-top: 40px;
    }

    .pa-results-header img {
        max-width: 100px;
    }

    .pa-results-header .search-card {
        max-width: 50%;
    }

    .pa-filters {
        padding-left: 140px;
        font-size: 1rem;
    }

    .pa-filter {
        padding: 2px 15px;
    }

    .pa-results {
        padding-top: 220px;
        padding-left: 140px;
    }

    .result-thumb-wrap,
    .result-thumb,
    .result-thumb-placeholder {
        max-width: 190px;
    }
}

/* ----- col-xxl ----- */
@media (min-width: 1400px) {
    .pa-results-header {
        padding-top: 40px;
    }

    .pa-results-header .search-card {
        width: 50%;
        max-width: 700px;
    }

    .pa-filters {
        padding-left: 115px;
    }

    .pa-filter {
        padding: 3px 16px;
    }

    .result-thumb-wrap,
    .result-thumb,
    .result-thumb-placeholder {
        max-width: 210px;
    }
}

@media (min-width: 1700px) {
    .pa-results-header {
        padding-top: 40px;
    }

    .pa-results-header .search-card {
        max-width: 40%;
    }

    #search-filters {
        max-width: 44%;
    }

    .pa-filters {
        padding-left: 145px;
    }

    .pa-filter {
        padding: 3px 16px;
    }

    .pa-results {
        padding-top: 225px;
        padding-left: 145px;
    }

    .pa-empty p {
        max-width: 700px;
    }

    .result-thumb-wrap,
    .result-thumb,
    .result-thumb-placeholder {
        max-width: 230px;
    }

    .results-title button{
        float: right;
        margin-top: 0;
    }
}

/* ==========================================
        Modal partage établissement
========================================== */

.pa-share-modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.pa-share-modal-header {
    align-items: flex-start;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.pa-share-kicker {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bleu-roi);
}

.pa-share-title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #2d2d2d;
}

.pa-share-modal-body {
    padding: 20px 24px 24px;
}

.pa-share-intro {
    margin-bottom: 18px;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.pa-share-link-box {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.pa-share-link-box .form-control {
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: #2d2d2d;
}

.pa-share-link-box .web-btn {
    border-radius: 999px;
    padding: 10px 18px;
    white-space: nowrap;
}

.web-btn:focus {
    color:#fff;
}

.pa-share-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.pa-share-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    background: #fff;
    color: #2d2d2d;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pa-share-action:hover {
    border-color: rgba(0, 67, 197, 0.25);
    box-shadow: 0 8px 20px rgba(0, 67, 197, 0.08);
    color: var(--bleu-roi);
}

.pa-share-action i {
    font-size: 18px;
}

.pa-share-feedback {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(25, 135, 84, 0.10);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.20);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 575.98px) {
    .pa-share-link-box {
        flex-direction: column;
    }

    .pa-share-actions {
        grid-template-columns: 1fr;
    }

    .pa-share-modal-header,
    .pa-share-modal-body {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* ============================================
   404
============================================ */

.pa-404-hero {
    padding-top: 3vh;
    text-align: center;
}

.pa-404-hero .tagline {
    color: #adb5bd;
    font-style: italic;
}

.pa-404-section {
    padding: 0 15px 70px;
}

.pa-404-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 42px 28px;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.pa-404-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(0, 67, 197, 0.08);
    color: var(--bleu-roi);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.pa-404-title {
    margin-bottom: 14px;
    font-size: 2rem;
    font-weight: 700;
    color: #2d2d2d;
}

.pa-404-text {
    max-width: 580px;
    margin: 0 auto 28px;
    color: #666;
    line-height: 1.7;
}

.pa-404-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pa-404-helper {
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
    color: #666;
    font-size: 0.95rem;
}

.pa-404-helper a {
    color: var(--bleu-roi);
    font-weight: 600;
}

.pa-404-redirect {
    margin-top: 18px;
    margin-bottom: 0;
    color: #999;
    font-size: 0.85rem;
}

@media (max-width: 575.98px) {
    .pa-404-card {
        padding: 32px 20px;
    }

    .pa-404-title {
        font-size: 1.55rem;
    }

    .pa-404-actions .btn {
        width: 100%;
    }
}


.pa-legal-title {
    font-size: 2rem;
    font-weight: 600;
}

.pa-legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    font-size: 0.95rem;
    color: #444;
    border: 1px solid #eee;
    border-radius: 12px;
    background-color: var(--nav-bg);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pa-legal-content a{
    color: var(--bleu-roi);
}

.pa-legal-content h2 {
    margin-top: 2rem;
    font-size: 1.3rem;
}

.pa-legal-content ul {
    padding-left: 20px;
}

.pa-legal-content li {
    margin-bottom: 6px;
}

/* ===================================
   About page - Mobile first
====================================== */

.pa-about-page {
    background: #fff;
}

.pa-about-hero {
    padding: 45px 0 40px;
    background: linear-gradient(135deg, #f5f7fb 0%, #ffffff 100%);
}

.pa-about-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--bleu-roi);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pa-about-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.08;
    color: #1f2933;
    margin-bottom: 20px;
}

.pa-about-lead {
    font-size: 1rem;
    color: #5f6773;
    line-height: 1.7;
    max-width: 620px;
}

.pa-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.pa-about-actions .btn {
    width: 100%;
}

.pa-about-hero-img,
.pa-about-img-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.12);
    background: #e9edf5;
}

.pa-about-hero-img img,
.pa-about-img-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.pa-about-section {
    padding: 45px 0;
}

.pa-about-section-soft {
    background: #f6f8fb;
}

.pa-about-heading {
    max-width: 760px;
    margin: 0 auto;
}

.pa-about-heading h2,
.pa-about-subtitle {
    font-size: 1.55rem;
    font-weight: 700;
    color: #1f2933;
    margin-bottom: 16px;
}

.pa-about-heading p,
.pa-about-section p {
    color: #626b77;
    line-height: 1.7;
}

.pa-about-card {
    height: 100%;
    padding: 24px 20px;
    border: 1px solid #e6eaf0;
    border-radius: 20px;
    background: #fff;
    transition: .25s ease;
}

.pa-about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    border-color: rgba(0,67,197,.25);
}

.pa-about-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(0,67,197,.08);
    color: var(--bleu-roi);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.pa-about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2933;
}

.pa-about-card p {
    margin-bottom: 0;
    font-size: .95rem;
}

.pa-about-list {
    padding-left: 0;
    margin: 24px 0 0;
    list-style: none;
}

.pa-about-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #3f4650;
}

.pa-about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bleu-roi);
    font-weight: 700;
}

.pa-about-target {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid #e6eaf0;
    background: #fff;
}

.pa-about-target img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    background: #e9edf5;
    flex-shrink: 0;
}

.pa-about-target h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2933;
    margin-bottom: 8px;
}

.pa-about-target p {
    margin-bottom: 0;
    font-size: .95rem;
}

.pa-about-cta {
    padding: 25px 0 65px;
}

.pa-about-cta-card {
    padding: 34px 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--bleu-roi), var(--bleu-roi-dark));
    color: #fff;
}

.pa-about-cta-card h2 {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.pa-about-cta-card p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
}

.pa-about-cta-card .btn-outline-secondary {
    border-color: rgba(255,255,255,.65);
    color: #fff;
}

.pa-about-cta-card .btn-outline-secondary:hover {
    background: #fff;
    color: var(--bleu-roi);
}

@media (min-width: 576px) {
    .pa-about-title {
        font-size: 2.35rem;
    }

    .pa-about-heading h2,
    .pa-about-subtitle,
    .pa-about-cta-card h2 {
        font-size: 1.8rem;
    }

    .pa-about-kicker {
        font-size: .85rem;
    }

    .pa-about-hero-img img,
    .pa-about-img-card img {
        height: 280px;
    }

    .pa-about-card {
        padding: 26px 22px;
    }

    .pa-about-target {
        padding: 22px;
    }

    .pa-about-target img {
        height: 180px;
    }

    .pa-about-actions .btn {
        width: auto;
    }
}

@media (min-width: 768px) {
    .pa-about-hero {
        padding: 55px 0 45px;
    }

    .pa-about-section {
        padding: 55px 0;
    }

    .pa-about-title {
        font-size: 2.8rem;
    }

    .pa-about-lead {
        font-size: 1.05rem;
    }

    .pa-about-heading h2,
    .pa-about-subtitle,
    .pa-about-cta-card h2 {
        font-size: 2rem;
    }

    .pa-about-hero-img img,
    .pa-about-img-card img {
        height: 340px;
    }

    .pa-about-cta {
        padding: 30px 0 75px;
    }

    .pa-about-cta-card {
        padding: 45px 26px;
    }
}

@media (min-width: 992px) {
    .pa-about-hero {
        padding: 70px 0 60px;
    }

    .pa-about-section {
        padding: 65px 0;
    }

    .pa-about-title {
        font-size: 3.2rem;
    }

    .pa-about-lead {
        font-size: 1.08rem;
    }

    .pa-about-heading h2,
    .pa-about-subtitle,
    .pa-about-cta-card h2 {
        font-size: 2.2rem;
    }

    .pa-about-hero-img img,
    .pa-about-img-card img {
        height: 380px;
    }

    .pa-about-card {
        padding: 30px 24px;
    }

    .pa-about-target {
        flex-direction: row;
    }

    .pa-about-target img {
        width: 130px;
        height: 110px;
    }

    .pa-about-cta {
        padding: 40px 0 90px;
    }

    .pa-about-cta-card {
        padding: 55px 30px;
        border-radius: 28px;
    }
}

@media (min-width: 1200px) {
    .pa-about-hero {
        padding: 90px 0 70px;
    }

    .pa-about-section {
        padding: 80px 0;
    }

    .pa-about-title {
        font-size: 3.7rem;
    }

    .pa-about-lead {
        font-size: 1.15rem;
    }

    .pa-about-heading h2,
    .pa-about-subtitle {
        font-size: 2.4rem;
    }

    .pa-about-hero-img img,
    .pa-about-img-card img {
        height: 420px;
    }
}

@media (min-width: 1400px) {
    .pa-about-title {
        font-size: 4.2rem;
    }

    .pa-about-heading h2,
    .pa-about-subtitle {
        font-size: 2.6rem;
    }

    .pa-about-hero-img img,
    .pa-about-img-card img {
        height: 450px;
    }
}


@media (max-width: 380px) {
    .pa-about-title {
        font-size: 1.8rem;
    }

    .pa-about-heading h2,
    .pa-about-subtitle,
    .pa-about-cta-card h2 {
        font-size: 1.4rem;
    }

    .pa-about-hero-img img,
    .pa-about-img-card img {
        height: 205px;
    }
}
