/* ============================================================
   UNIGO Studies — custom.css
   Source unique de vérité pour tout le CSS custom.
   Injecté via wp_footer (priorité 99999) dans functions.php.
   NE PAS ajouter de CSS ailleurs.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

/* ─────────────────────────────────────────────────────────────
   VARIABLES GLOBALES
───────────────────────────────────────────────────────────── */

:root {
    --unigo-navy:         #0A2540;
    --unigo-cotton:       #F9F8F6;
    --unigo-terracotta:   #E87A5D;
    --unigo-cyan:         #00A8CC;
    --unigo-text:         #1C2A39;
    --unigo-muted:        #5E6B78;
    --unigo-line:         #DFE5EA;
    --unigo-white:        #FFFFFF;
    --unigo-shadow:       0 16px 40px rgba(10, 37, 64, 0.08);
    --unigo-shadow-soft:  0 10px 24px rgba(10, 37, 64, 0.06);
    --unigo-shell:        1180px;
    --unigo-shell-narrow: 1080px;
}

/* ─────────────────────────────────────────────────────────────
   1. RESET VISUEL CIBLÉ MULTIO
───────────────────────────────────────────────────────────── */

html,
body,
#wrapper,
.site-wrapper,
.main-wrapper,
.content-wrapper,
.page-wrapper,
[id*="wrapper"],
[class*="wrapper"] {
    background-color: var(--unigo-cotton) !important;
}

/* ─────────────────────────────────────────────────────────────
   2. TYPOGRAPHIE GLOBALE
───────────────────────────────────────────────────────────── */

body,
.entry-content,
.wpb_wrapper {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    color: var(--unigo-navy);
    line-height: 1.75;
}

h1, h2, h3, h4, h5, h6,
.vc_custom_heading,
.wpb_wrapper h1,
.wpb_wrapper h2,
.wpb_wrapper h3 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600;
    color: var(--unigo-navy) !important;
}

h1 { font-size: 42px !important; }
h2 { font-size: 32px !important; }
h3 { font-size: 24px !important; }
h4 { font-size: 20px !important; }

p {
    color: var(--unigo-navy) !important;
    opacity: 0.85;
    max-width: 900px;
}

/* ─────────────────────────────────────────────────────────────
   3. STRUCTURE DES SECTIONS (WPBAKERY)
───────────────────────────────────────────────────────────── */

.vc_row {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.entry-content > .vc_row:first-child {
    padding-top: 40px !important;
}

.vc_column_container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* ─────────────────────────────────────────────────────────────
   4. LIENS & CTA (RÈGLE 10%)
───────────────────────────────────────────────────────────── */

a {
    color: var(--unigo-terracotta) !important;
    text-decoration: none !important;
    font-weight: 500;
}

a:hover {
    color: var(--unigo-cyan) !important;
}

.vc_btn3,
.vc_btn3.vc_btn3-color-juicy-pink,
.wpb_button,
a.btn,
button,
input[type="submit"],
button[type="submit"] {
    background-color: var(--unigo-terracotta) !important;
    border-color: var(--unigo-terracotta) !important;
    color: var(--unigo-white) !important;
    border-radius: 999px !important;
    padding: 14px 28px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
}

.vc_btn3:hover,
button:hover {
    background-color: #d66f55 !important;
}

/* ─────────────────────────────────────────────────────────────
   5. LISTES GLOBALES
───────────────────────────────────────────────────────────── */

ul {
    list-style: none !important;
    padding-left: 0 !important;
}

ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--unigo-terracotta);
    font-size: 22px;
    line-height: 1;
}

/* ─────────────────────────────────────────────────────────────
   6. HOME — COMPOSANTS SPÉCIFIQUES front-page.php
───────────────────────────────────────────────────────────── */

.unigo-front-page,
.unigo-front-page * {
    box-sizing: border-box;
}

.unigo-front-page {
    background: var(--unigo-cotton);
    color: var(--unigo-text);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.unigo-front-page h1,
.unigo-front-page h2,
.unigo-front-page h3,
.unigo-front-page h4 {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    color: var(--unigo-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.unigo-front-page p,
.unigo-front-page li,
.unigo-front-page a,
.unigo-front-page button,
.unigo-front-page span {
    font-family: 'Inter', sans-serif;
}

.unigo-shell {
    width: min(100% - 48px, var(--unigo-shell));
    margin-inline: auto;
}

.unigo-shell--narrow {
    width: min(100% - 48px, var(--unigo-shell-narrow));
    margin-inline: auto;
}

.unigo-section {
    position: relative;
    padding: 72px 0;
}

.unigo-center {
    text-align: center;
}

.unigo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--unigo-terracotta);
    color: var(--unigo-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    box-shadow: 0 12px 28px rgba(232, 122, 93, 0.24);
}

.unigo-btn:hover {
    color: var(--unigo-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(232, 122, 93, 0.30);
}

.unigo-btn--small {
    min-height: 42px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
}

/* ─── Hero ─── */



.unigo-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background: var(--unigo-navy);
}

.unigo-hero__media {
    position: absolute;
    inset: 0;
}

.unigo-hero .unigo-shell {
    position: relative;
    z-index: 2;
}

.unigo-hero__content {
    max-width: 560px;
    padding: 10px 0 90px;
     transform: translateY(-10px);
}

.unigo-front-page .unigo-hero .unigo-hero__content h1,
.unigo-front-page .unigo-hero .unigo-hero__content h1 * {
    color: var(--unigo-white) !important;
    font-size: 50px !important;
    line-height: 1.02 !important;
    font-weight: 800 !important;
    margin-bottom: 18px;
}

.unigo-hero__content p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
    opacity: 1 !important;
}

.unigo-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* ─── Pourquoi UNIGO ─── */

.unigo-why {
    background: var(--unigo-cotton);
    padding-top: 68px;
    padding-bottom: 68px;
}

.unigo-why h2,
.unigo-destinations h2,
.unigo-about h2,
.unigo-testimonials h2,
.unigo-faq h2 {
    font-size: clamp(30px, 4vw, 42px) !important;
    font-weight: 700;
    margin-bottom: 28px;
}

.unigo-richtext p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.82;
    color: var(--unigo-text) !important;
    opacity: 1 !important;
}

.unigo-feature-list {
    margin: 28px 0 18px;
    padding: 0;
    list-style: none !important;
    display: grid;
    gap: 16px;
}

.unigo-feature-list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--unigo-text);
    margin-bottom: 0;
}

.unigo-feature-list li::before {
    content: "◎";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--unigo-terracotta);
    font-size: 16px;
    font-weight: 700;
}

.unigo-feature-list strong {
    color: var(--unigo-navy);
}

.unigo-why .unigo-center {
    margin-top: 34px;
}

/* ─── Destinations ─── */

.unigo-destinations {
    background: var(--unigo-navy);
    padding-top: 74px;
    padding-bottom: 74px;
}

.unigo-destinations h2 {
    color: var(--unigo-white) !important;
    text-align: center;
    margin-bottom: 34px;
}

.unigo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.unigo-card {
    background: var(--unigo-cotton);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--unigo-shadow);
    display: flex;
    flex-direction: column;
}

.unigo-card__image {
    height: 230px;
    border-radius: 0;
    overflow: hidden;
}

.unigo-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.unigo-card__body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.unigo-card h3 {
    font-size: 27px !important;
    font-weight: 700;
}

.unigo-card p {
    margin: 0;
    color: var(--unigo-text) !important;
    font-size: 14px;
    line-height: 1.75;
    opacity: 1 !important;
}

.unigo-card .unigo-btn {
    margin-top: auto;
    width: fit-content;
}

.unigo-flag {
    display: inline-block;
    width: 28px;
    height: auto;
    vertical-align: middle;
    margin-left: 8px;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ─── Services ─── */

.unigo-services {
    background: var(--unigo-cotton);
    padding-top: 64px;
    padding-bottom: 48px;
}

.unigo-services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    background: var(--unigo-white);
    border-radius: 2px;
    box-shadow: var(--unigo-shadow);
    overflow: hidden;
}

.unigo-service {
    padding: 44px 24px 38px;
    border-right: 1px solid var(--unigo-line);
    min-height: 230px;
}

.unigo-service:last-child {
    border-right: none;
}

.unigo-service h3 {
    font-size: 22px !important;
    font-weight: 700;
    margin-bottom: 16px;
}

.unigo-service p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--unigo-text) !important;
    opacity: 1 !important;
}
/* Icônes services */
.unigo-service h3::before {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.unigo-service:nth-child(1) h3::before {
    background-image: url('https://s.w.org/images/core/emoji/17.0.2/svg/1f393.svg');
}
.unigo-service:nth-child(2) h3::before {
    background-image: url('https://s.w.org/images/core/emoji/17.0.2/svg/1f5c2.svg');
}
.unigo-service:nth-child(3) h3::before {
    background-image: url('https://s.w.org/images/core/emoji/17.0.2/svg/1f5e3.svg');
}
.unigo-service:nth-child(4) h3::before {
    background-image: url('https://s.w.org/images/core/emoji/17.0.2/svg/2708.svg');
}
.unigo-service:nth-child(5) h3::before {
    background-image: url('https://s.w.org/images/core/emoji/17.0.2/svg/1f4de.svg');
}

/* ─── À propos ─── */

.unigo-about {
    background: var(--unigo-cotton);
    padding-top: 44px;
    padding-bottom: 44px;
}

.unigo-about__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.unigo-about__content p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.82;
    color: var(--unigo-text) !important;
    opacity: 1 !important;
}

.unigo-about__content .unigo-btn {
    margin-top: 10px;
}

.unigo-about__media {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Portrait — PNG autonome avec forme et logo intégrés dans l'image */
.unigo-about__circle {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
}

.unigo-about__circle::before,
.unigo-about__circle::after {
    display: none !important;
}

.unigo-about__portrait {
    width: 420px !important;
    height: auto !important;
    object-fit: unset !important;
    border-radius: 0 !important;
}

/* ─── Témoignages ─── */

.unigo-testimonials {
    background: var(--unigo-cotton);
    padding-top: 24px;
    padding-bottom: 52px;
}

.unigo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 22px;
}

.unigo-testimonial {
    background: var(--unigo-white);
    border: 1px solid rgba(10, 37, 64, 0.08);
    padding: 26px 22px;
    min-height: 188px;
    box-shadow: var(--unigo-shadow-soft);
}

.unigo-testimonial p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.82;
    color: var(--unigo-text) !important;
    opacity: 1 !important;
}

.unigo-testimonial span {
    display: inline-block;
    color: var(--unigo-muted);
    font-size: 13px;
    font-weight: 600;
}

/* ─── FAQ ─── */

.unigo-faq {
    background: var(--unigo-cotton);
    padding-top: 28px;
    padding-bottom: 92px;
}

.unigo-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
    align-items: start;
}

.unigo-faq-col {
    display: grid;
    gap: 16px;
}

.unigo-faq-item {
    background: var(--unigo-white) !important;
    border: 1px solid rgba(10, 37, 64, 0.10);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.04);
}

.unigo-faq-trigger {
    width: 100%;
    border: none;
    background: #ffffff !important;
    color: #0A2540 !important;
    text-align: left;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.unigo-faq-trigger:hover {
    background: rgba(10, 37, 64, 0.04) !important;
    color: #0A2540 !important;
}

.unigo-faq-trigger span:first-child {
    color: #0A2540 !important;
}

.unigo-faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--unigo-navy);
    position: relative;
    flex: 0 0 30px;
}

.unigo-faq-icon::before,
.unigo-faq-icon::after {
    content: "";
    position: absolute;
    background: var(--unigo-white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .22s ease, opacity .22s ease;
}

.unigo-faq-icon::before {
    width: 12px;
    height: 2px;
}

.unigo-faq-icon::after {
    width: 2px;
    height: 12px;
}

.unigo-faq-trigger[aria-expanded="true"] .unigo-faq-icon::after {
    opacity: 0;
}

.unigo-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease, padding .28s ease;
    padding: 0 20px;
}

.unigo-faq-item.is-open .unigo-faq-panel {
    padding: 0 20px 18px;
    max-height: 220px;
}

.unigo-faq-panel p {
    margin: 0;
    color: var(--unigo-muted) !important;
    font-size: 14px;
    line-height: 1.75;
    opacity: 1 !important;
}

/* ─── Reset Multio sur Home ─── */

.unigo-front-page .site-main,
.unigo-front-page .entry-content {
    margin: 0;
    padding: 0;
}
.unigo-hero__cta {    margin-top: 28px;}

/* ─────────────────────────────────────────────────────────────
   7. CORRECTIONS MULTIO
───────────────────────────────────────────────────────────── */

/* Navigation — restaure couleur blanche Multio */
header a,
.main-navigation a,
#navigation a,
.nav-menu a,
.menu-item a,
nav.navigation a,
#masthead a,
.site-header a,
.top-bar a,
header#masthead a {
    color: #ffffff !important;
}

/* Boutons UNIGO — force texte blanc */
a.unigo-btn,
a.unigo-btn:hover,
a.unigo-btn:visited,
.unigo-btn,
.unigo-btn:hover {
    color: #ffffff !important;
}

/* Supprime bullets orange sur menu Multio */
header li::before,
nav li::before,
.nav-menu li::before,
.menu-item::before,
#navigation li::before,
.main-navigation li::before,
.sub-menu li::before {
    display: none !important;
    content: none !important;
}
/* Supprime l'espace vide après le dernier bloc home */
.unigo-front-page .site-main,
.unigo-front-page .entry-content,
.unigo-front-page .post-content,
.unigo-front-page .wpb_wrapper,
.unigo-front-page .vc_row:last-child {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
/* Header — logo principal uniquement */
header.site-header .logo-container img {
    height: auto !important;
    width: 110px !important;
}
``
/* ─────────────────────────────────────────────────────────────
   8. PAGES INTERNES — page.php
   (migré depuis style.css)
───────────────────────────────────────────────────────────── */

.unigo-page-wrapper {
    background: var(--unigo-cotton);
}

.unigo-page-hero {
    background: linear-gradient(135deg, var(--unigo-navy) 0%, rgba(10, 37, 64, 0.92) 100%);
    padding: 70px 20px 10px;
    text-align: center;
}


.unigo-page-hero h1 {
    color: #ffffff !important;
    max-width: 960px;
    margin: 0 auto;
    font-weight: 700;
    transform: translateY(-20px);
}

.unigo-page-content {
    padding: 0 0 100px;
}

.unigo-page-content h2 {
    margin-top: 96px;
    margin-bottom: 20px;
}

.unigo-page-content h3 {
    margin-top: 48px;
    margin-bottom: 12px;
}

.unigo-page-content ul {
    padding-left: 0;
    margin-top: 24px;
    max-width: 820px;
}

.unigo-page-content li {
    list-style: none;
    padding-left: 28px;
    position: relative;
    margin-bottom: 14px;
    font-size: 16px;
}

.unigo-page-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--unigo-terracotta);
    font-weight: bold;
}

@media (max-width: 768px) {
    .unigo-page-hero { padding: 80px 20px 60px; }
    .unigo-page-content { padding: 60px 0; }
}


.unigo-page-content .vc_row:first-child {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.unigo-page-content {
    margin-top: -24px !important;
}

/* ─────────────────────────────────────────────────────────────
   9. RESPONSIVE
───────────────────────────────────────────────────────────── */

@media (max-width: 1200px) {
    .unigo-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .unigo-service:nth-child(3) {
        border-right: none;
    }

    .unigo-service:nth-child(1),
    .unigo-service:nth-child(2),
    .unigo-service:nth-child(3) {
        border-bottom: 1px solid var(--unigo-line);
    }
}

@media (max-width: 991px) {
    .unigo-section { padding: 56px 0; }
    .unigo-hero { min-height: 560px; }
    .unigo-hero__content { padding: 110px 0 70px; }

    .unigo-cards-grid,
    .unigo-testimonials-grid,
    .unigo-faq-grid,
    .unigo-about__grid {
        grid-template-columns: 1fr;
    }

    .unigo-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .unigo-service {
        border-right: 1px solid var(--unigo-line);
        border-bottom: 1px solid var(--unigo-line);
    }

    .unigo-service:nth-child(2n) { border-right: none; }
    .unigo-service:last-child { border-bottom: none; }
    .unigo-about__media { order: -1; }
    .unigo-about__portrait { width: 320px !important; }
}

@media (max-width: 767px) {
    .unigo-shell,
    .unigo-shell--narrow {
        width: min(100% - 28px, var(--unigo-shell));
    }

    .unigo-hero { min-height: 520px; }
    .unigo-hero__content h1 { font-size: 38px !important; }

    .unigo-why h2,
    .unigo-destinations h2,
    .unigo-about h2,
    .unigo-testimonials h2,
    .unigo-faq h2 {
        font-size: 28px !important;
    }

    .unigo-services-grid { grid-template-columns: 1fr; }

    .unigo-service,
    .unigo-service:nth-child(2n) { border-right: none; }

    .unigo-service {
        min-height: auto;
        padding: 28px 22px;
    }

    .unigo-card__image { height: 200px; }
    .unigo-btn { width: 100%; }
    .unigo-card .unigo-btn { width: 100%; }
    .unigo-about__portrait { width: 260px !important; }
}
/* 10. FOOTER UNIGO */
.unigo-footer {
    background: var(--unigo-navy);
    color: rgba(255,255,255,0.75);
    font-family: 'Inter', sans-serif;
}
.unigo-footer__shell {
    width: min(100% - 48px, var(--unigo-shell));
    margin-inline: auto;
}
.unigo-footer__main {
    padding: 64px 0 48px;
}
.unigo-footer__main .unigo-footer__shell {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr 1fr 1fr;
    gap: 48px;
}
.unigo-footer__heading {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 20px !important;
}
.unigo-footer__logo-img {
        width: 120px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}
.unigo-footer__tagline {
    font-size: 13px !important;
    line-height: 1.75 !important;
    color: rgba(255,255,255,0.6) !important;
    margin: 0 0 22px !important;
    max-width: 280px;
    opacity: 1 !important;
}
.unigo-footer__social {
    display: flex;
    gap: 10px;
}
.unigo-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7) !important;
    transition: background .2s ease, color .2s ease;
}
.unigo-footer__social a:hover {
    background: var(--unigo-cyan) !important;
    color: #ffffff !important;
}
.unigo-footer__list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.unigo-footer__list li {
    padding-left: 0 !important;
    margin-bottom: 10px !important;
    font-size: 13px;
    line-height: 1.6;
}
.unigo-footer__list li::before {
    display: none !important;
    content: none !important;
}
.unigo-footer__list a {
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none !important;
    font-weight: 400;
    transition: color .2s ease;
}
.unigo-footer__list a:hover {
    color: var(--unigo-cyan) !important;
}
/* Contact avec icônes */
.unigo-footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.65);
}
.unigo-footer__list--contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--unigo-cyan);
}
.unigo-footer__list--contact a {
    color: rgba(255,255,255,0.65) !important;
}
.unigo-footer__list--contact a:hover {
    color: var(--unigo-cyan) !important;
}
/* Destinations avec drapeaux */
.unigo-footer__list--destinations li {
    display: flex;
    align-items: center;
}
.unigo-footer__list--destinations a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.unigo-footer__list--destinations img {
    border-radius: 2px;
    opacity: 0.9;
    flex-shrink: 0;
}
/* Barre du bas */
.unigo-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
}
.unigo-footer__bottom p {
    font-size: 12px !important;
    color: rgba(255,255,255,0.35) !important;
    margin: 0 !important;
    opacity: 1 !important;
    text-align: center;
    max-width: none;
}
/* Responsive footer */
@media (max-width: 991px) {
    .unigo-footer__main .unigo-footer__shell {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .unigo-footer__col--brand {
        grid-column: 1 / -1;
    }
    .unigo-footer__tagline {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .unigo-footer__main .unigo-footer__shell {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .unigo-footer__main {
        padding: 48px 0 36px;
    }
}
/* 11. PAGE NOS SERVICES */
 
/* Masquer le spacer après le header */
.unigo-services-page-wrapper > div[style*="height: 100px"],
.unigo-services-page-wrapper + div[style*="height: 100px"],
body.page div[style*="height: 100px"]:first-of-type {
    display: none !important;
}
 
.unigo-services-page {
    background: var(--unigo-cotton);
    margin: 0 !important;
    padding: 0 !important;
}
 
/* Hero personnalisé - H1 à GAUCHE, hauteur réduite, couleur Navy Brand Book */
.unigo-services-hero-custom {
    background: var(--unigo-navy) !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 40px 0 40px !important;
}
.unigo-services-hero-custom .container {
    text-align: left !important;
    padding: 0 24px !important;
    margin: 0 auto !important;
}
.unigo-services-hero-custom h1 {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--unigo-white) !important;
    font-size: clamp(28px, 4vw, 36px) !important;
}
 
/* Contenu sans container pour photo pleine largeur - AUCUN ESPACE */
.unigo-services-content {
    padding: 0 !important;
    margin: 0 !important;
}
.unigo-services-content > .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.unigo-services-content > * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
 
/* Photo seule (sans fond, collée au hero) */
.unigo-services-photo {
    background: transparent;
    padding: 0;
    margin: 0;
}
.unigo-services-photo img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}
 
/* Paragraphe intro (fond Cotton) */
.unigo-services-intro-text {
    background: var(--unigo-cotton);
    padding: 48px 0;
}
.unigo-services-intro-text p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: var(--unigo-text) !important;
    margin: 0 !important;
    opacity: 1 !important;
    max-width: 820px;
    margin: 0 auto !important;
}
 
/* Section intro Navy "Ce que nous faisons" */
.unigo-services-intro {
    background: var(--unigo-navy);
    padding: 64px 0;
    text-align: center;
}
.unigo-services-intro__label {
    color: var(--unigo-cyan) !important;
    font-size: 13px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 16px !important;
    opacity: 1 !important;
}
.unigo-services-intro h2 {
    color: var(--unigo-white) !important;
    font-size: clamp(28px, 4vw, 36px) !important;
    font-weight: 700;
    margin: 0 0 18px !important;
}
.unigo-services-intro__desc {
    color: rgba(255,255,255,0.85) !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin: 0 auto 32px !important;
    max-width: 720px;
    opacity: 1 !important;
}
 
/* Blocs services */
.unigo-service-block {
    padding: 80px 0;
    background: var(--unigo-cotton);
}
.unigo-service-block:nth-child(even) {
    background: var(--unigo-white);
}
.unigo-service-block__icon {
    width: 64px;
    height: 64px;
    margin: 0 0 24px;
}
.unigo-service-block__icon img {
    width: 100%;
    height: 100%;
    display: block;
}
.unigo-service-block h2 {
    font-size: clamp(24px, 3vw, 32px) !important;
    font-weight: 700;
    color: var(--unigo-navy) !important;
    margin: 0 0 16px !important;
}
.unigo-service-block h3 {
    font-size: 20px !important;
    font-weight: 600;
    color: var(--unigo-navy) !important;
    margin: 32px 0 16px !important;
}
.unigo-service-block > .unigo-shell > p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--unigo-text) !important;
    margin: 0 0 24px;
    max-width: 820px;
    opacity: 1 !important;
}
 
/* Checklist */
.unigo-checklist {
    list-style: none !important;
    padding: 0 !important;
    margin: 24px 0 !important;
    display: grid;
    gap: 12px;
}
.unigo-checklist li {
    position: relative;
    padding-left: 32px !important;
    font-size: 15px;
    line-height: 1.7;
    color: var(--unigo-text);
    margin-bottom: 0 !important;
}
.unigo-checklist li::before {
    content: "✅" !important;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: inherit !important;
}
 
/* Grille langues */
.unigo-lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 28px;
}
.unigo-lang-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: var(--unigo-white);
    border: 1px solid var(--unigo-line);
    border-radius: 8px;
}
.unigo-lang-item img {
    flex-shrink: 0;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.unigo-lang-item__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.unigo-lang-item strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--unigo-navy);
}
.unigo-lang-item span {
    font-size: 13px;
    color: var(--unigo-muted);
}
 
/* Highlight box */
.unigo-highlight-box {
    background: linear-gradient(135deg, var(--unigo-cyan) 0%, #0093b3 100%);
    padding: 28px 32px;
    border-radius: 12px;
    margin-top: 32px;
}
.unigo-highlight-box h3 {
    color: var(--unigo-white) !important;
    font-size: 22px !important;
    margin: 0 0 12px !important;
}
.unigo-highlight-box p {
    color: rgba(255,255,255,0.95) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin: 0 0 20px !important;
    opacity: 1 !important;
}
.unigo-highlight-box .unigo-btn {
    background: var(--unigo-white);
    color: var(--unigo-cyan) !important;
}
.unigo-highlight-box .unigo-btn:hover {
    background: var(--unigo-cotton);
    color: var(--unigo-cyan) !important;
}
 
/* Support list */
.unigo-support-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 24px 0 !important;
    display: grid;
    gap: 16px;
}
.unigo-support-list li {
    padding-left: 0 !important;
    font-size: 15px;
    line-height: 1.7;
    color: var(--unigo-text);
    margin-bottom: 0 !important;
}
.unigo-support-list li::before {
    display: none !important;
}
.unigo-support-list strong {
    color: var(--unigo-navy);
}
 
/* CTA final */
.unigo-services-cta {
    background: var(--unigo-navy);
    padding: 80px 0;
    text-align: center;
}
.unigo-services-cta h2 {
    color: var(--unigo-white) !important;
    font-size: clamp(28px, 4vw, 38px) !important;
    font-weight: 700;
    margin: 0 0 18px !important;
}
.unigo-services-cta > .unigo-shell > p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    margin: 0 auto 32px !important;
    max-width: 640px;
    opacity: 1 !important;
}
.unigo-services-cta__phone {
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px !important;
    margin: 24px 0 0 !important;
    opacity: 1 !important;
}
 
/* Section finale */
.unigo-services-why {
    background: var(--unigo-cotton);
    padding: 80px 0;
}
.unigo-services-why h2 {
    font-size: clamp(24px, 3vw, 32px) !important;
    font-weight: 700;
    color: var(--unigo-navy) !important;
    margin: 0 0 24px !important;
}
.unigo-services-why p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--unigo-text) !important;
    margin: 0;
    opacity: 1 !important;
}
 
/* Responsive */
@media (max-width: 767px) {
    .unigo-services-intro-text {
        padding: 40px 0;
    }
    .unigo-services-intro,
    .unigo-service-block,
    .unigo-services-cta,
    .unigo-services-why {
        padding: 56px 0;
    }
    .unigo-lang-grid {
        grid-template-columns: 1fr;
    }
}
/* Changer le logo header */
header.site-header .logo-container img {
    content: url('https://unigostudies.com/wp-content/uploads/2026/04/logo-blanc-2.png') !important;
    width: 140px !important;
    height: auto !important;
}
/* Page Nos Services - Corrections FORCÉES */
main.unigo-page-wrapper .unigo-page-hero {
    background: #0A2540 !important;
}

main.unigo-page-wrapper .unigo-page-hero h1 {
    text-align: left !important;
    margin: 0 !important;
}

main.unigo-page-wrapper .unigo-page-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
/* H1 pleine largeur sur page Nos Services */
main.unigo-page-wrapper .unigo-page-hero .container {
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

main.unigo-page-wrapper .unigo-page-hero h1 {
    max-width: 100% !important;
    width: 100% !important;
}
main.unigo-page-wrapper > section.unigo-page-content > .container > *:first-child {
    margin-top: -24px !important;
    position: relative;
}
/* Nos Services — override des fonds inline */
.nos-services-page {
    background-color: var(--unigo-cotton) !important;
}

.nos-services-page div[style*="background: #f8f9fa"] {
    background: #FFFFFF !important;
    background-image: none !important;
}

.nos-services-page div[style*="background: #f0f9f0"] {
    background: #FFFFFF !important;
    background-image: none !important;
    border-left-color: var(--unigo-cyan) !important;
}

.nos-services-page div[style*="linear-gradient(135deg, #1a1a2e"],
.nos-services-page div[style*="linear-gradient(135deg, #e94560"] {
    background: var(--unigo-navy) !important;
    background-image: none !important;
}
.nos-services-page div[style*="background: #f8f9fa; padding: 30px 20px; margin-bottom: 30px;"] {
    width: calc(100% - 80px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    border-radius: 18px !important;
}
/* Limiter largeur blocs services et centrer — FORCE TOTALE */
.unigo-service-block .unigo-shell {
    width: 900px !important;
    max-width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Limiter largeur contenu blocs services via variable CSS */
.unigo-service-block {
    --unigo-shell: 900px;
}
/* Limiter la section service elle-même */
.unigo-service-block {
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* ─────────────────────────────────────────────────────────
   12. PAGES DESTINATIONS
─────────────────────────────────────────────────────────── */

/* Hero Destinations */
.unigo-destination-hero {
    position: relative;
    min-height: 600px !important; /* Hero agrandi pour impact visuel */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--unigo-navy) !important; /* Fallback si pas d'image */
    margin-top: -100px !important; /* Annule le spacer du header pour coller l'image */
    margin-bottom: 60px !important; /* Espace entre hero et contenu */
}

.unigo-destination-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.unigo-destination-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.45) 0%, rgba(10, 37, 64, 0.35) 100%);
    z-index: 2;
}

.unigo-destination-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 80px 40px 40px 40px !important; /* Hero plus haut pour H1 centré-bas */
    max-width: 1180px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* Breadcrumb - EN BAS du hero (ordre visuel inversé) */
.unigo-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    gap: 10px;
    margin-top: 32px !important; /* Espace H1/CTA → breadcrumb */
    margin-bottom: 0 !important;
    font-size: 13px !important; /* Réduit pour match Figma */
    flex-wrap: wrap;
    order: 3 !important; /* Affiché en dernier */
    width: 100%;
}

.unigo-breadcrumb a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: color .2s ease;
}

.unigo-breadcrumb a:hover {
    color: var(--unigo-cyan) !important;
}

.unigo-breadcrumb span {
    color: rgba(255, 255, 255, 0.65);
}

/* H1 Hero - Centré */
.unigo-destination-hero__title {
    color: var(--unigo-white) !important;
    font-size: clamp(28px, 5vw, 48px) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin: 0 auto 28px auto !important; /* Centré avec margin auto */
    max-width: 960px;
    text-align: center !important;
    order: 1 !important; /* Affiché en premier */
}

/* CTA Button in Hero */
.unigo-destination-hero .unigo-destination-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 36px !important;
    background: var(--unigo-terracotta) !important;
    color: var(--unigo-white) !important;
    border-radius: 999px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(232, 122, 93, 0.35) !important;
    margin-top: 0 !important;
    order: 2 !important; /* Affiché en deuxième */
}

.unigo-destination-hero .unigo-destination-cta:hover {
    background: #d66f55 !important;
    color: var(--unigo-white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(232, 122, 93, 0.45) !important;
}

/* Destination Page Content */
.unigo-destination-page__content {
    background: var(--unigo-cotton);
    padding-top: 80px !important;
}

/* Hide original vc_single_image */
.unigo-destination-page .vc_single_image {
    display: none !important;
}

/* Styling sections */
.unigo-destination-page .vc_column_text .destination-section-heading {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: var(--unigo-navy) !important;
    margin-top: 80px !important;
    margin-bottom: 28px !important;
}

/* ═══════════════════════════════════════════════════════════
   SECTION PROGRAMMES — UNE BOX par domaine (H3 + Description)
   Largeur uniforme pour H3 + description
   ═══════════════════════════════════════════════════════════ */

/* H3 Programmes - Haut de la box */
.wpb_text_column h3,
.wpb_wrapper h3,
.vc_column_text h3 {
    background: #FFFFFF !important;
    border: 2px solid var(--unigo-terracotta) !important;
    border-bottom: none !important;
    border-radius: 12px 12px 0 0 !important;
    padding: 20px 24px 16px 24px !important;
    margin-top: 24px !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: var(--unigo-navy) !important;
    width: 100% !important; /* Largeur complète */
    max-width: 800px !important; /* Limite raisonnable */
}

/* Description - Bas de la box (MÊME largeur que H3) */
.wpb_text_column h3 + p,
.wpb_wrapper h3 + p,
.vc_column_text h3 + p {
    background: #FFFFFF !important;
    border: 2px solid var(--unigo-terracotta) !important;
    border-top: none !important;
    border-radius: 0 0 12px 12px !important;
    padding: 0 24px 20px 24px !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #4B5563 !important;
    width: 100% !important; /* Même largeur que H3 */
    max-width: 800px !important; /* Même limite que H3 */
}

/* Hover effect */
.wpb_text_column h3:hover,
.wpb_wrapper h3:hover,
.vc_column_text h3:hover {
    border-color: #d66f55 !important;
    transition: all 0.2s ease !important;
}

/* ═══════════════════════════════════════════════════════════
/* ═══════════════════════════════════════════════════════════
   IMAGES DANS LE CONTENU — Taille native (1120×600px)
   FORCE CENTRAGE
   ═══════════════════════════════════════════════════════════ */

/* Images WPBakery dans le contenu */
.wpb_single_image img,
.vc_single_image-wrapper img,
.wpb_content_element .wpb_wrapper img,
.wpb_text_column img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    border-radius: 12px !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Container de l'image - FORCE centrage */
.wpb_single_image,
.wpb_text_column p {
    text-align: center !important;
    display: block !important;
}

/* Force l'alignement de l'élément parent aussi */
.wpb_wrapper {
    text-align: center !important;
}

/* ═══════════════════════════════════════════════════════════
   TEXTE DU CONTENU — Centré sur toute la page
   ═══════════════════════════════════════════════════════════ */

/* Centrer tout le texte des pages destinations */
.unigo-destination-page p,
.unigo-destination-page .wpb_text_column,
.unigo-destination-page .wpb_wrapper,
.unigo-destination-page .vc_column_text {
    text-align: center !important;
}

/* Centrer aussi les listes */
.unigo-destination-page ul,
.unigo-destination-page ol {
    text-align: center !important;
    list-style-position: inside !important;
}

/* Centrer les H2 et H3 */
.unigo-destination-page h2,
.unigo-destination-page h3 {
    text-align: center !important;
}

/* Centrer le contenu des boxes programmes */
.wpb_text_column h3,
.wpb_text_column h3 + p {
    text-align: center !important;
}

/* List Items */
.destination-list-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--unigo-text) !important;
    opacity: 1 !important;
    position: relative !important;
    padding-left: 0 !important;
}

.destination-list-item::before {
    content: attr(data-emoji);
    flex-shrink: 0;
}

/* CTA Button */
.destination-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 14px 28px !important;
    background: var(--unigo-terracotta) !important;
    color: var(--unigo-white) !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    margin-top: 24px !important;
}

.destination-cta:hover {
    background: #d66f55 !important;
    color: var(--unigo-white) !important;
}

/* Paragraphs in destination */
.unigo-destination-page .vc_column_text > p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: var(--unigo-text) !important;
    margin-bottom: 16px !important;
    opacity: 1 !important;
}

.unigo-destination-page .vc_column_text > p strong {
    color: var(--unigo-navy);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 767px) {
    .unigo-destination-hero {
        min-height: 380px;
    }

    .unigo-destination-hero__content {
        padding: 40px 20px;
    }

    .unigo-destination-hero__title {
        font-size: clamp(20px, 3vw, 28px) !important;
    }

    .unigo-destination-page__content {
        padding-top: 60px !important;
    }

    .unigo-destination-page .vc_column_text .destination-section-heading {
        font-size: 24px !important;
        margin-top: 60px !important;
    }

    .unigo-destination-page .vc_column_text .destination-domain {
        font-size: 18px !important;
        margin-top: 36px !important;
    }

    .destination-domain::before {
        width: 32px;
        height: 32px;
    }
}
/* === FIX CENTRAGE IMAGE - FORCER <P> PARENT === */
/* Ajouté le 08/05/2026 */

.unigo-destination-page .wpb_text_column p:has(img),
.unigo-destination-page .wpb_wrapper p:has(img) {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Fallback pour navigateurs sans :has() */
.unigo-destination-page .wpb_text_column p img,
.unigo-destination-page .wpb_wrapper p img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* === ALIGNEMENT TEXTE SUR LARGEUR IMAGE === */
/* Limiter le texte à 1120px comme l'image */

.unigo-destination-page .wpb_text_column,
.unigo-destination-page .wpb_wrapper {
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* S'assurer que les paragraphes et titres restent centrés */
.unigo-destination-page .wpb_text_column p,
.unigo-destination-page .wpb_text_column h2,
.unigo-destination-page .wpb_text_column h3 {
    text-align: center !important;
}
/* === LIMITE TOUTE LA PAGE À 1120PX - VERSION FINALE === */

/* Conteneur racine */
.unigo-destination-page .vc_column_container {
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Enfants à 100% */
.unigo-destination-page .vc_column-inner,
.unigo-destination-page .wpb_wrapper,
.unigo-destination-page .wpb_text_column {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* TEXTE À GAUCHE - Sélecteurs ULTRA-SPÉCIFIQUES pour écraser l'ancien CSS */
.unigo-destination-page .wpb_text_column .wpb_wrapper p,
.unigo-destination-page .wpb_text_column .wpb_wrapper h2,
.unigo-destination-page .wpb_text_column .wpb_wrapper h3,
.unigo-destination-page .wpb_text_column .wpb_wrapper ul,
.unigo-destination-page .wpb_text_column .wpb_wrapper ol {
    text-align: left !important;
}

/* EXCEPTION : Images centrées */
.unigo-destination-page .wpb_text_column p:has(img) {
    text-align: center !important;
}

/* Mobile */
@media (max-width: 768px) {
    .unigo-destination-page .vc_column_container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}
/* === FORCER PARAGRAPHES À 100% DE 1120PX === */
.unigo-destination-page .wpb_text_column .wpb_wrapper p:not(h3 + p),
.unigo-destination-page .wpb_text_column .wpb_wrapper h2,
.unigo-destination-page .wpb_text_column .wpb_wrapper h3,
.unigo-destination-page .wpb_text_column .wpb_wrapper ul,
.unigo-destination-page .wpb_text_column .wpb_wrapper ol,
.unigo-destination-page .wpb_text_column .wpb_wrapper div {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

/* Texte à gauche */
.unigo-destination-page .wpb_text_column .wpb_wrapper p,
.unigo-destination-page .wpb_text_column .wpb_wrapper h2,
.unigo-destination-page .wpb_text_column .wpb_wrapper h3 {
    text-align: left !important;
}

/* Exception : images centrées */
.unigo-destination-page p:has(img) {
    text-align: center !important;
}
/* === BOUTON CTA STYLE HERO - TOUTES DESTINATIONS === */

/* MASQUER les liens préinscription vides ou sans texte */
.unigo-destination-page a[href*="preinscription"]:empty,
.unigo-destination-page a[href*="preinscription"]:not(:has(strong)):not(:has(span)) {
    display: none !important;
}

/* Centrer le paragraphe parent du BON lien */
.unigo-destination-page p:has(a[href*="preinscription"] strong) {
    text-align: center !important;
    margin: 40px 0 !important;
}

/* Style uniquement pour le lien qui contient du texte fort */
.unigo-destination-page a[href*="preinscription"]:has(strong) {
    display: inline-block !important;
    background-color: #D47B6A !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    padding: 18px 48px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0 auto !important;
}

/* Retirer le style du <strong> */
.unigo-destination-page a[href*="preinscription"] strong {
    font-weight: 600 !important;
    color: inherit !important;
}

/* Hover effect */
.unigo-destination-page a[href*="preinscription"]:has(strong):hover {
    background-color: #c46858 !important;
    transform: translateY(-2px) !important;
    color: #FFFFFF !important;
}

/* Mobile */
@media (max-width: 768px) {
    .unigo-destination-page a[href*="preinscription"]:has(strong) {
        font-size: 16px !important;
        padding: 16px 40px !important;
    }
}
/* === FORCER CENTRAGE BOUTON PRÉINSCRIPTION === */
/* Sélecteurs ultra-spécifiques pour écraser text-align: left */

.unigo-destination-page .wpb_text_column .wpb_wrapper p:has(a[href*="preinscription"] strong),
.unigo-destination-page .wpb_text_column p:has(a[href*="preinscription"] strong),
.unigo-destination-page .wpb_wrapper p:has(a[href*="preinscription"] strong) {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 40px 0 !important;
}

/* Bouton lui-même centré */
.unigo-destination-page .wpb_text_column a[href*="preinscription"]:has(strong),
.unigo-destination-page .wpb_wrapper a[href*="preinscription"]:has(strong) {
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* === RÉDUCTION ESPACEMENT H2 === */
.unigo-destination-page h2 {
    margin-top: 40px !important;      /* Espace au-dessus (réduit) */
    margin-bottom: 20px !important;   /* Espace en-dessous (réduit) */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Premier H2 de la page : moins d'espace au-dessus */
.unigo-destination-page h2:first-of-type {
    margin-top: 20px !important;
}

/* H3 aussi si besoin */
.unigo-destination-page h3 {
    margin-top: 30px !important;
    margin-bottom: 15px !important;
}
/* === BOXES PROGRAMMES - VERSION FINALE CONSOLIDÉE === */

/* H3 avec emoji (haut de la box) */
.unigo-destination-page .wpb_text_column h3 {
    border: 2px solid var(--unigo-terracotta) !important;
    border-bottom: none !important;
    background: #FFFFFF !important;
    padding: 20px 20px 10px 20px !important;  /* Réduit padding-bottom */
    margin-bottom: 0 !important;
    border-radius: 8px 8px 0 0 !important;
    text-align: left !important;
    max-width: 1120px !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

/* Paragraphe qui suit le H3 (bas de la box) */
.unigo-destination-page .wpb_text_column h3 + p {
    border: 2px solid var(--unigo-terracotta) !important;
    border-top: none !important;
    background: #FFFFFF !important;
    padding: 10px 35px 20px 35px !important;  /* 10px top, 35px horizontal, 20px bottom */
    margin-top: 0 !important;
    margin-bottom: 30px !important;
    border-radius: 0 0 8px 8px !important;
    text-align: left !important;
    max-width: 1120px !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}
/* === RÉDUIRE ESPACE DERNIÈRE SECTION + MASQUER ROW VIDE === */

/* Masquer complètement les rows vides */
.unigo-destination-page .vc_row:has(.wpb_wrapper:empty) {
    display: none !important;
}

/* Réduire l'espace de TOUTES les rows en fin de page */
.unigo-destination-page .vc_row {
    padding-bottom: 40px !important;
}

/* Cibler spécifiquement la dernière row AVEC contenu */
.unigo-destination-page > .vc_row:last-of-type:not(:has(.wpb_wrapper:empty)) {
    padding-bottom: 0 !important;
}

/* Supprimer padding du content principal */
.unigo-destination-page__content {
    padding-bottom: 0 !important;
}
/* === ESPACE EMOJI ITALIE === */
/* Cibler spécifiquement la box Italie par son contenu */
.unigo-destination-page .wpb_text_column h3:nth-of-type(1) {
    padding-left: 28px !important;
}
/* ========================================
   UNIGO STUDIES - ADAPTATION BRAND BOOK V2
   PAGE CONTACT (override page existante)
   À ajouter au fichier custom.css
   ======================================== */

/* ==========================================
   VARIABLES COULEURS BRAND BOOK V2
   ========================================== */
:root {
  --unigo-navy: #0A2540;
  --unigo-cotton: #F9F8F6;
  --unigo-terracotta: #E87A5D;
  --unigo-cyan: #00A8CC;
}

/* ==========================================
   PAGE CONTACT - Override global
   Ciblage : body.page-id-1286 ou .page-template-contact
   ========================================== */

/* Titre principal H1 "Contact" */
body.page-id-1286 h1,
body.page-template-contact h1,
.page-contact h1 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 48px !important;
    color: var(--unigo-navy) !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
}

/* Sous-titre H3 "Contactez Nous" */
body.page-id-1286 h3,
body.page-template-contact h3,
.page-contact h3 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 24px !important;
    color: var(--unigo-navy) !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
}

/* Corps de texte (adresse, infos) */
body.page-id-1286 p,
body.page-template-contact p,
.page-contact p {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #333 !important;
}

/* Liens (téléphone, email, "Voir sur Maps") */
body.page-id-1286 a:not(.btn):not(.button):not(.gform_button),
body.page-template-contact a:not(.btn):not(.button):not(.gform_button),
.page-contact a:not(.btn):not(.button):not(.gform_button) {
    color: var(--unigo-terracotta) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

body.page-id-1286 a:not(.btn):not(.button):not(.gform_button):hover,
body.page-template-contact a:not(.btn):not(.button):not(.gform_button):hover,
.page-contact a:not(.btn):not(.button):not(.gform_button):hover {
    color: var(--unigo-cyan) !important;
}

/* ==========================================
   FORMULAIRE CONTACT - Style Brand Book V2
   ========================================== */

/* Container formulaire */
body.page-id-1286 .gform_wrapper,
body.page-template-contact .gform_wrapper,
.page-contact .gform_wrapper {
    background: var(--unigo-cotton) !important;
    padding: 40px !important;
    border-radius: 12px !important;
    border: 2px solid var(--unigo-cyan) !important;
    margin: 30px 0 !important;
}

/* Labels formulaire */
body.page-id-1286 .gfield_label,
body.page-template-contact .gfield_label,
.page-contact .gfield_label {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: var(--unigo-navy) !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Champs input, textarea */
body.page-id-1286 input[type="text"],
body.page-id-1286 input[type="email"],
body.page-id-1286 input[type="tel"],
body.page-id-1286 textarea,
body.page-template-contact input[type="text"],
body.page-template-contact input[type="email"],
body.page-template-contact input[type="tel"],
body.page-template-contact textarea,
.page-contact input[type="text"],
.page-contact input[type="email"],
.page-contact input[type="tel"],
.page-contact textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #E0E0E0 !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    color: #333 !important;
    background: #FFFFFF !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    box-sizing: border-box !important;
}

/* Focus states */
body.page-id-1286 input[type="text"]:focus,
body.page-id-1286 input[type="email"]:focus,
body.page-id-1286 input[type="tel"]:focus,
body.page-id-1286 textarea:focus,
body.page-template-contact input[type="text"]:focus,
body.page-template-contact input[type="email"]:focus,
body.page-template-contact input[type="tel"]:focus,
body.page-template-contact textarea:focus,
.page-contact input[type="text"]:focus,
.page-contact input[type="email"]:focus,
.page-contact input[type="tel"]:focus,
.page-contact textarea:focus {
    border-color: var(--unigo-cyan) !important;
    box-shadow: 0 0 0 3px rgba(0,168,204,0.1) !important;
    outline: none !important;
}

/* Bouton submit - Style Terracotta pill */
body.page-id-1286 .gform_button,
body.page-id-1286 input[type="submit"],
body.page-template-contact .gform_button,
body.page-template-contact input[type="submit"],
.page-contact .gform_button,
.page-contact input[type="submit"] {
    display: inline-block !important;
    background-color: #D47B6A !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    padding: 16px 48px !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(212, 123, 106, 0.25) !important;
    text-transform: none !important;
}

body.page-id-1286 .gform_button:hover,
body.page-id-1286 input[type="submit"]:hover,
body.page-template-contact .gform_button:hover,
body.page-template-contact input[type="submit"]:hover,
.page-contact .gform_button:hover,
.page-contact input[type="submit"]:hover {
    background-color: #C56B5A !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(212, 123, 106, 0.35) !important;
}

/* ==========================================
   SECTION INFOS PRATIQUES
   ========================================== */

/* Box adresse/contact (si elle existe en tant que widget ou section) */
body.page-id-1286 .contact-info,
body.page-id-1286 .widget-contact,
body.page-template-contact .contact-info,
body.page-template-contact .widget-contact,
.page-contact .contact-info,
.page-contact .widget-contact {
    background: #FFFFFF !important;
    padding: 30px !important;
    border: 2px solid var(--unigo-terracotta) !important;
    border-radius: 12px !important;
    margin: 20px 0 !important;
}

/* Icônes contact (si présentes) */
body.page-id-1286 .contact-info i,
body.page-id-1286 .widget-contact i,
body.page-template-contact .contact-info i,
body.page-template-contact .widget-contact i,
.page-contact .contact-info i,
.page-contact .widget-contact i {
    color: var(--unigo-cyan) !important;
    margin-right: 10px !important;
}

/* ==========================================
   FOOTER (si modifiable)
   ========================================== */

/* Titres footer */
footer h4,
.footer-widget h4 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    color: var(--unigo-navy) !important;
    margin-bottom: 15px !important;
}

/* Liens footer */
footer a,
.footer-widget a {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: #666 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

footer a:hover,
.footer-widget a:hover {
    color: var(--unigo-terracotta) !important;
}

/* Icônes réseaux sociaux footer */
footer .social-links a,
.footer-widget .social-links a {
    display: inline-block !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    text-align: center !important;
    border-radius: 50% !important;
    background: var(--unigo-cotton) !important;
    color: var(--unigo-navy) !important;
    margin-right: 10px !important;
    transition: all 0.3s ease !important;
}

footer .social-links a:hover,
.footer-widget .social-links a:hover {
    background: var(--unigo-terracotta) !important;
    color: #FFFFFF !important;
    transform: translateY(-3px) !important;
}

/* ==========================================
   MESSAGES DE CONFIRMATION/ERREUR
   ========================================== */

/* Message succès */
body.page-id-1286 .gform_confirmation_message,
body.page-template-contact .gform_confirmation_message,
.page-contact .gform_confirmation_message {
    background: #D4EDDA !important;
    border-left: 4px solid #28A745 !important;
    padding: 20px 25px !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    color: #155724 !important;
    margin: 20px 0 !important;
}

/* Message erreur validation */
body.page-id-1286 .validation_error,
body.page-template-contact .validation_error,
.page-contact .validation_error {
    background: #FFF3CD !important;
    border-left: 4px solid #FFC107 !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: #856404 !important;
    margin: 20px 0 !important;
}

/* Champs en erreur */
body.page-id-1286 .gfield_error input,
body.page-id-1286 .gfield_error textarea,
body.page-template-contact .gfield_error input,
body.page-template-contact .gfield_error textarea,
.page-contact .gfield_error input,
.page-contact .gfield_error textarea {
    border-color: #DC3545 !important;
}

/* ==========================================
   BOUTON "VOIR SUR MAPS" (si présent)
   ========================================== */

body.page-id-1286 a[href*="google.com/maps"],
body.page-template-contact a[href*="google.com/maps"],
.page-contact a[href*="google.com/maps"] {
    display: inline-block !important;
    background-color: #FFFFFF !important;
    color: var(--unigo-cyan) !important;
    border: 2px solid var(--unigo-cyan) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    margin-top: 15px !important;
}

body.page-id-1286 a[href*="google.com/maps"]:hover,
body.page-template-contact a[href*="google.com/maps"]:hover,
.page-contact a[href*="google.com/maps"]:hover {
    background-color: var(--unigo-cyan) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,168,204,0.25) !important;
}

/* ==========================================
   RESPONSIVE MOBILE
   ========================================== */

@media (max-width: 768px) {
    
    body.page-id-1286 h1,
    body.page-template-contact h1,
    .page-contact h1 {
        font-size: 36px !important;
    }
    
    body.page-id-1286 h3,
    body.page-template-contact h3,
    .page-contact h3 {
        font-size: 20px !important;
    }
    
    body.page-id-1286 .gform_wrapper,
    body.page-template-contact .gform_wrapper,
    .page-contact .gform_wrapper {
        padding: 25px !important;
    }
    
    body.page-id-1286 .gform_button,
    body.page-id-1286 input[type="submit"],
    body.page-template-contact .gform_button,
    body.page-template-contact input[type="submit"],
    .page-contact .gform_button,
    .page-contact input[type="submit"] {
        font-size: 16px !important;
        padding: 14px 32px !important;
    }
    
}

@media (max-width: 480px) {
    
    body.page-id-1286 h1,
    body.page-template-contact h1,
    .page-contact h1 {
        font-size: 28px !important;
    }
    
}

/* ==========================================
   FIN ADAPTATION BRAND BOOK V2 - CONTACT
   ========================================== */

/* ======= PAGE ENTRETIEN - FIXES ======= */

/* 1. Descendre le calendrier sous le hero */
.booked-calendar-shortcode-wrap {
    margin-top: 50px !important;
    display: block !important;
}

/* 2. Fleches navigation mois visibles */
.booked-calendar a.page-right,
.booked-calendar a.page-left {
    opacity: 1 !important;
    color: #ffffff !important;
    background-color: #1a3a78 !important;
    border: 2px solid rgba(255,255,255,0.7) !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    line-height: 1 !important;
}
.booked-calendar a.page-right:hover,
.booked-calendar a.page-left:hover {
    background-color: #0d2050 !important;
}

/* 3. H3 aligne a gauche */
.wpb_column .ct-heading-tag,
.wpb_wrapper h3.ct-heading-tag,
.vc_column_text h3.ct-heading-tag,
h3.ct-heading-tag {
    text-align: left !important;
}

/* 4. Modal prise de RDV plus grande */
.booked-modal .booked-modal-content {
    width: 700px !important;
    max-width: 94vw !important;
    min-height: 480px !important;
    padding: 30px !important;
    box-sizing: border-box !important;
}
.booked-modal {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
#booked-appointment-form {
    width: 100% !important;
    min-height: 450px !important;
}
/* ======= FIN PAGE ENTRETIEN ======= */


/* ===== HERO SLIDER ===== */
.unigo-hero__slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.unigo-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}
.unigo-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.unigo-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.unigo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.85);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}
.unigo-dot.active,
.unigo-dot:hover {
    background: #fff;
    transform: scale(1.2);
}


/* ============================================================
   RESPONSIVE — UNIGO Studies
   Mobile  : ≤ 767px
   Tablet  : 768px – 1023px
   ============================================================ */

/* ===== RESET SLIDER DOTS (override WP button styles) ===== */
.unigo-dot {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline-block !important;
    width: 10px !important;
    height: 10px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background-color: transparent !important;
    border: 2px solid rgba(255,255,255,0.85) !important;
    box-shadow: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.unigo-dot.active,
.unigo-dot:hover {
    background-color: #fff !important;
    transform: scale(1.2);
}

/* ===== HAMBURGER BUTTON ===== */
.unigo-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px !important;
    height: 20px !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 0 !important;
    z-index: 200;
    min-width: 0 !important;
    min-height: 0 !important;
}
.unigo-hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.site-header.is-menu-open .unigo-hamburger span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.site-header.is-menu-open .unigo-hamburger span:nth-child(2) {
    opacity: 0;
}
.site-header.is-menu-open .unigo-hamburger span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ===== TABLET : 768 – 1023px ===== */
@media (max-width: 1023px) {

    /* Navigation */
    .unigo-hamburger { display: flex; }

    .header-menu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #0A2540 !important;
        padding: 1rem 0 !important;
        z-index: 1000 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
        height: auto !important;
        min-height: 0 !important;
    }
    .site-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1.25rem;
    }
    .site-header.is-menu-open .header-menu { display: block !important; }

    .header-menu ul {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        height: auto !important;
        gap: 0 !important;
        padding: 0;
        margin: 0;
    }
    .header-menu ul li {
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }
    .header-menu ul li a {
        display: block !important;
        padding: 1.5rem 2rem !important;
        font-size: 1.25rem !important;
        font-weight: 500 !important;
        letter-spacing: 0.01em !important;
    }
    /* Sous-menu destinations */
    /* Sous-menu Destinations : caché par défaut, ouvert au tap */
    .header-menu ul li ul {
        position: static !important;
        background: rgba(255,255,255,0.05) !important;
        padding: 0 !important;
        display: none !important;
        box-shadow: none !important;
    }
    .header-menu ul li.submenu-open > ul {
        display: block !important;
    }
    .header-menu ul li ul li a {
        padding: 0.9rem 1.75rem 0.9rem 2.5rem !important;
        font-size: 1.05rem !important;
    }
    /* Flèche toggle sur les items avec sous-menu */
    .header-menu ul li.menu-item-has-children > a::after {
        content: ' ▸';
        float: right;
        transition: transform 0.25s;
    }
    .header-menu ul li.menu-item-has-children.submenu-open > a::after {
        transform: rotate(90deg);
    }

    /* Destinations cards : 2 colonnes */
    .unigo-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Services : 3 colonnes */
    .unigo-services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    /* Footer : 2 colonnes */
    .unigo-footer__shell {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ===== MOBILE : ≤ 767px ===== */
@media (max-width: 767px) {

    /* Hero */
    .unigo-hero { min-height: 480px; }
    .unigo-hero__content h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .unigo-hero__content p  { font-size: 0.95rem; }
    .unigo-slider-dots { bottom: 14px; gap: 7px; }

    /* Grilles → 1 colonne */
    .unigo-cards-grid          { grid-template-columns: 1fr !important; }
    .unigo-services-grid       { grid-template-columns: repeat(2, 1fr) !important; }
    .unigo-about__grid         { grid-template-columns: 1fr !important; }
    .unigo-testimonials-grid   { grid-template-columns: 1fr !important; }
    .unigo-faq-grid            { grid-template-columns: 1fr !important; }

    /* Photo About : cacher sur mobile */
    .unigo-about__media        { display: none; }

    /* Footer : 1 colonne */
    .unigo-footer__shell {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Sections padding */
    .unigo-section { padding: 2.5rem 0; }
    .unigo-shell   { padding-left: 1.25rem; padding-right: 1.25rem; }
}


/* ===== PAGE CONTACT — RESPONSIVE ===== */
@media (max-width: 1023px) {
    /* Colonnes photo+formulaire : passer en colonne */
    .vc_col-sm-7,
    .vc_col-sm-5 {
        width: 100% !important;
        float: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    /* Cacher la photo sur tablette/mobile pour donner toute la place au form */
    .vc_col-sm-7 {
        display: none !important;
    }
    /* Gravity Forms : forcer 1 colonne — sélecteurs plus spécifiques que GF */
    .gform_wrapper .gform_body .gform_fields {
        grid-template-columns: 1fr !important;
    }
    .gform_wrapper .gform_body .gfield--width-half,
    .gform_wrapper .gform_body .gfield {
        grid-column: 1 / -1 !important;
    }
    /* Prénom + Nom en colonne */
    .ginput_complex.ginput_container--name {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    .ginput_complex .gform-grid-col {
        width: 100% !important;
    }
    /* Inputs et textarea pleine largeur */
    .gfield input[type="text"],
    .gfield input[type="email"],
    .gfield input[type="tel"],
    .gfield textarea {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 767px) {
    /* Padding du wrapper de page contact */
    .vc_column-inner {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}


/* ============================================================
   CADRE CONTACT - PAGE ENTRETIEN D'ORIENTATION
   ============================================================ */

/* Accent titre cote gauche (correction border-right -> border-left) */
.wpb_wrapper:has(.ct-contact-info) .ct-heading h3.ct-heading-tag {
    border-right: none !important;
    border-left: 3px solid #E87A5D !important;
    padding-left: 12px !important;
    padding-right: 0 !important;
}

/* Texte adresse/email/tel aligne a gauche */
.ct-contact-info-content {
    text-align: left !important;
}

/* Icone email meme couleur que les autres icones (terracotta) */
.ct-contact-info .fa-envelope {
    color: var(--unigo-terracotta) !important;
}

/* ============================================================
   CADRE CONTACT - BORDURE ET OMBRE
   ============================================================ */

/* Bordure terracotta + shadow + coins arrondis */
/* Spécificité augmentée pour battre .vc_col-sm-4 .wpb_wrapper */
.vc_col-sm-4 .wpb_wrapper:has(.ct-contact-info) {
    border: 2px solid var(--unigo-terracotta) !important;
    box-shadow: 0 4px 24px rgba(232, 122, 93, 0.18) !important;
    border-radius: 8px !important;
    padding: 28px !important;
}

/* Espacement 80px — spécificité augmentée pour battre .unigo-page-content .vc_row:first-child */
.unigo-page-content .vc_row:has(.ct-contact-info) {
    margin-top: 80px !important;
    padding-top: 0 !important;
}

/* ============================================================
   ALIGNEMENT SECTION ENTRETIEN AVEC LE HEADER
   ============================================================ */

/* 1. Supprimer le demi-cadre résiduel sur le titre */
.wpb_wrapper:has(.ct-contact-info) .ct-heading {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    outline: none !important;
}

/* 2. Aligner le haut du calendrier avec le haut du cadre */
.vc_row:has(.ct-contact-info) {
    align-items: flex-start !important;
}

/* 3. Aligner le bord gauche du row avec le logo (décalage -190px) */
.unigo-page-content .vc_row:has(.ct-contact-info) {
    margin-left: -190px !important;
    width: calc(100% + 190px) !important;
    max-width: none !important;
    overflow: visible !important;
}

/* 4. Largeur carte : du logo (40px) à "À propos" (427px) = 387px */
.vc_row:has(.ct-contact-info) .vc_col-sm-4 {
    width: 387px !important;
    flex: 0 0 387px !important;
    max-width: 387px !important;
}

/* 5. Calendrier prend l'espace restant */
.vc_row:has(.ct-contact-info) .vc_col-sm-8 {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: none !important;
}

/* ============================================================
   CORRECTIONS FINALES - TRAIT ET CALENDRIER
   ============================================================ */

/* Supprimer tout trait/bordure résiduel autour du titre */
.wpb_wrapper:has(.ct-contact-info) .ct-heading,
.wpb_wrapper:has(.ct-contact-info) .ct-heading *,
.wpb_wrapper:has(.ct-contact-info) .ct-heading::before,
.wpb_wrapper:has(.ct-contact-info) .ct-heading::after,
.wpb_wrapper:has(.ct-contact-info) .ct-heading-tag::before,
.wpb_wrapper:has(.ct-contact-info) .ct-heading-tag::after {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-image: none !important;
    text-decoration: none !important;
}

/* Garder uniquement le border-left accent sur le titre */
.wpb_wrapper:has(.ct-contact-info) .ct-heading h3.ct-heading-tag {
    border-left: 3px solid var(--unigo-terracotta) !important;
    padding-left: 12px !important;
}

/* Aligner le calendrier avec le haut du cadre (-50px pour compenser) */
.vc_row:has(.ct-contact-info) .vc_col-sm-8 .vc_column-inner {
    margin-top: -85px !important;
}

/* Supprimer le trait vertical droit sur le titre */
.wpb_wrapper:has(.ct-contact-info) .ct-heading.style1 {
    border-right: none !important;
    border-left: none !important;
}
.wpb_wrapper:has(.ct-contact-info) .ct-heading.style1::after,
.wpb_wrapper:has(.ct-contact-info) .ct-heading.style1::before {
    border-right: none !important;
    width: 0 !important;
    display: none !important;
}

/* Suppression du trait vertical droit - approche maximale */
.wpb_wrapper:has(.ct-contact-info) .ct-heading.style1 .ct-heading-tag::after,
.wpb_wrapper:has(.ct-contact-info) .ct-heading.style1 .ct-heading-tag::before,
.wpb_wrapper:has(.ct-contact-info) .ct-heading.style1::after,
.wpb_wrapper:has(.ct-contact-info) .ct-heading.style1::before {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    border: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

/* Forcer suppression border-right sur le H3 avec spécificité max */
.wpb_wrapper:has(.ct-contact-info) .ct-heading.style1 h3.ct-heading-tag {
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    outline: none !important;
}

/* ================================================
   BOOKED CALENDAR - CORRECTIONS P1 à P4
   ================================================ */

/* --- Base: colonne WPBakery pleine largeur --- */
.booked-calendar-shortcode-wrap,
.booked-calendar-wrap,
.booked-calendar-wrap.large {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
}
.vc_col-sm-12.vc_column_container {
  width: 100% !important;
  flex-basis: 100% !important;
  flex-grow: 1 !important;
}
.booked-calendar {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* --- P1 : Liste créneaux (entryBlock) pleine largeur dans le calendrier --- */
.booked-calendar .bc-row.entryBlock {
  display: block !important;
  width: 100% !important;
  clear: both !important;
}
.booked-calendar .bc-row.entryBlock > .bc-col {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  padding: 0 !important;
}
.booked-appt-list {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  padding: 16px 0 !important;
  border-top: 2px solid #e2e8f0 !important;
  margin-top: 8px !important;
}

/* --- P3 : Réduire hauteur des cases du calendrier --- */
.booked-calendar .bc-body .bc-row.week {
  min-height: unset !important;
}
.booked-calendar .bc-body .bc-col {
  height: 70px !important;
  min-height: 70px !important;
  max-height: 70px !important;
  padding: 8px !important;
  font-size: 15px !important;
  box-sizing: border-box !important;
}
.booked-calendar .bc-row.days .bc-col {
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

/* --- P4 : Créneaux en grille 3 colonnes --- */
.booked-appt-list > h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0a2540 !important;
  border-bottom: 2px solid #e87a5d !important;
  padding-bottom: 8px !important;
  margin-bottom: 12px !important;
}
.booked-appt-list > ul {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.booked-appt-list > ul > li {
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 10px !important;
  text-align: center !important;
  background: #fff !important;
}
.booked-appt-list > ul > li .timeslot-time {
  font-weight: 700 !important;
  font-size: 14px !important;
  display: block !important;
  color: #0a2540 !important;
  margin-bottom: 4px !important;
}
.booked-appt-list > ul > li .new-appt.button {
  width: 100% !important;
  margin-top: 6px !important;
  font-size: 11px !important;
  padding: 5px 4px !important;
  white-space: normal !important;
}
.booked-appt-list > ul > li .timeslot-status {
  font-size: 11px !important;
  color: #666 !important;
}

/* --- P1 : Modal popup amélioré --- */
.booked-modal {
  border-radius: 10px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25) !important;
  min-width: 480px !important;
  max-width: 560px !important;
  width: 90vw !important;
}


/* ================================================
   BOOKED — POPUP & CRÉNEAUX (lisibilité)
   ================================================ */

/* Jour disponible : indicateur visuel clair */
.booked-calendar table td.booked-available {
  background: rgba(0,168,204,0.10);
  border: 1px solid #00A8CC;
  cursor: pointer;
  transition: background 0.2s;
}
.booked-calendar table td.booked-available:hover {
  background: rgba(0,168,204,0.22);
}
.booked-calendar table td.booked-available a {
  display:block; width:100%; height:100%;
  color: #0A2540; font-weight:700;
}

/* Popup : max-height + scroll si besoin */
.booked-modal,
#booked-modal-wrap {
  z-index: 99999 !important;
}
.booked-modal-content {
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(10,37,64,0.22);
}

/* Créneaux en grille 3 colonnes */
.booked-appt-list ul {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.booked-appt-list ul li a,
.booked-appt-list ul li span.timeslot {
  display: block;
  padding: 10px 6px;
  text-align: center;
  background: #0A2540;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
}
.booked-appt-list ul li a:hover {
  background: #00A8CC;
}
.booked-appt-list ul li.booked-unavailable span {
  background: #ccc;
  color: #888 !important;
}

/* Formulaire guest : champs propres */
.booked-form-fields input[type="text"],
.booked-form-fields input[type="email"],
.booked-form-fields textarea,
.booked-form-fields select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

/* Bouton soumettre */
#booked-submit,
.booked-form-fields input[type="submit"],
.booked-modal-content input[type="submit"],
.booked-modal-content button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: #E87A5D;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .5px;
  margin-top: 8px;
}
#booked-submit:hover,
.booked-form-fields input[type="submit"]:hover {
  background: #c9623e;
}

/* Mobile : 2 colonnes sur petit écran */
@media (max-width: 600px) {
  .booked-appt-list ul {
    grid-template-columns: repeat(2,1fr);
  }
}

/* ================================================================
   AUDIT FIX — BOOKED CALENDAR (correctifs complets)
   ================================================================ */

/* FIX 1 — .booked-calendar overflow:hidden bloque l'affichage des créneaux */
.booked-calendar {
  overflow: visible !important;
}

/* FIX 2 — entryBlock et son bc-col doivent s'agrandir librement */
.booked-calendar .bc-row.entryBlock {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  display: block !important;
}
.booked-calendar .bc-row.entryBlock > .bc-col {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  width: 100% !important;
  padding: 0 !important;
}

/* FIX 3 — Hauteur 70px UNIQUEMENT sur les cellules jours normaux */
.booked-calendar .bc-body .bc-row.week .bc-col {
  height: 70px !important;
  max-height: 70px !important;
  overflow: hidden !important;
  position: relative;
}

/* FIX 4 — Flèches navigation : icônes visibles */
.booked-calendar a.page-left,
.booked-calendar a.page-right {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  background: rgba(255,255,255,0.18) !important;
  border: 2px solid rgba(255,255,255,0.5) !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 0 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}
.booked-calendar a.page-left::before {
  content: '‹' !important;
  font-size: 22px !important;
  line-height: 1 !important;
  color: #fff !important;
  font-family: Arial, sans-serif !important;
}
.booked-calendar a.page-right::before {
  content: '›' !important;
  font-size: 22px !important;
  line-height: 1 !important;
  color: #fff !important;
  font-family: Arial, sans-serif !important;
}
.booked-calendar a.page-left:hover,
.booked-calendar a.page-right:hover {
  background: rgba(255,255,255,0.35) !important;
}

/* FIX 5 — Liste des créneaux : affichage propre */
.booked-appt-list {
  display: block !important;
  width: 100% !important;
  background: #fff;
  border-top: 3px solid #0A2540;
  padding: 20px !important;
  box-sizing: border-box !important;
}
.booked-appt-list h3 {
  font-size: 18px !important;
  color: #0A2540 !important;
  margin: 0 0 16px 0 !important;
  font-weight: 700 !important;
}
.booked-appt-list > ul {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px 0 !important;
}
.booked-appt-list > ul > li {
  border: 1px solid #e0e0e0;
  border-radius: 8px !important;
  padding: 0 !important;
  text-align: center !important;
  overflow: hidden;
}
.booked-appt-list > ul > li .timeslot-time {
  display: block;
  padding: 10px 8px 4px;
  font-weight: 700;
  font-size: 14px;
  color: #0A2540;
}
.booked-appt-list > ul > li .timeslot-status {
  display: block;
  font-size: 11px;
  color: #5E6B78;
  padding: 0 8px 6px;
}
.booked-appt-list > ul > li .new-appt.button {
  display: block !important;
  width: 100% !important;
  padding: 10px 6px !important;
  background: #0A2540 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  box-sizing: border-box !important;
}
.booked-appt-list > ul > li .new-appt.button:hover {
  background: #00A8CC !important;
}
.booked-appt-list > ul > li.booked-unavailable .new-appt {
  background: #ccc !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* Mobile créneaux */
@media (max-width: 768px) {
  .booked-appt-list > ul {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* FIX 6 — Popup formulaire réservation (bm-window) */
.bm-overlay {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
  background: rgba(0,0,0,0.6) !important;
  z-index: 99998 !important;
  display: block !important;
}
.bm-window {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 90% !important;
  max-width: 520px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
  z-index: 99999 !important;
  padding: 32px !important;
  box-sizing: border-box !important;
}
.bm-window .close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  font-size: 24px !important;
  cursor: pointer !important;
  color: #5E6B78 !important;
  background: none !important;
  border: none !important;
}

/* FIX 7 — Formulaire guest : champs lisibles */
.booked-form h2,
.bm-window h2 {
  font-size: 20px !important;
  color: #0A2540 !important;
  margin: 0 0 20px 0 !important;
  font-weight: 700 !important;
}
.booked-form label,
.bm-window label {
  display: block !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
  color: #1C2A39 !important;
  font-size: 14px !important;
}
.booked-form input[type="text"],
.booked-form input[type="email"],
.booked-form input[type="tel"],
.booked-form textarea,
.booked-form select,
.bm-window input[type="text"],
.bm-window input[type="email"],
.bm-window input[type="tel"],
.bm-window textarea,
.bm-window select {
  width: 100% !important;
  padding: 11px 14px !important;
  border: 1.5px solid #d0d7de !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  margin-bottom: 14px !important;
  box-sizing: border-box !important;
  color: #1C2A39 !important;
  background: #fff !important;
  transition: border-color 0.2s !important;
}
.booked-form input:focus,
.booked-form textarea:focus,
.bm-window input:focus,
.bm-window textarea:focus {
  border-color: #00A8CC !important;
  outline: none !important;
}
.booked-form textarea,
.bm-window textarea {
  min-height: 90px !important;
  resize: vertical !important;
}

/* FIX 8 — Bouton soumettre */
.booked-form input[type="submit"],
.booked-form button[type="submit"],
.bm-window input[type="submit"],
.bm-window button[type="submit"],
#booked-submit,
.booked-form #submit-request-appointment {
  width: 100% !important;
  padding: 14px !important;
  background: #E87A5D !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  letter-spacing: 0.5px !important;
  margin-top: 6px !important;
  transition: background 0.2s !important;
}
.booked-form input[type="submit"]:hover,
.bm-window input[type="submit"]:hover,
#booked-submit:hover {
  background: #c9623e !important;
}

/* ================================================================
   CORRECTIFS FINAUX — v3 (vrais sélecteurs Booked)
   ================================================================ */

/* CRITIQUE : .booked-calendar clip tout avec overflow:hidden */
.booked-calendar,
.booked-calendar .bc-body {
  overflow: visible !important;
  height: auto !important;
}

/* entryBlock : hauteur auto (pas 70px) */
.booked-calendar .bc-row.entryBlock,
.booked-calendar .bc-row.entryBlock > .bc-col {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Cellules jours normaux : garder 70px UNIQUEMENT */
.booked-calendar .bc-body .bc-row.week > .bc-col {
  height: 70px !important;
  max-height: 70px !important;
  overflow: hidden !important;
}

/* Liste créneaux : fond blanc propre */
.booked-appt-list {
  background: #fff !important;
  border-top: 3px solid #0A2540 !important;
  padding: 20px 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.booked-appt-list h2 {
  font-size: 17px !important;
  color: #0A2540 !important;
  margin: 0 0 16px !important;
  font-weight: 700 !important;
}

/* Grille 4 colonnes avec vrais sélecteurs Booked */
.booked-appt-list .timeslot {
  display: inline-block !important;
  width: calc(25% - 8px) !important;
  margin: 0 4px 10px !important;
  border: 1.5px solid #e0e8f0 !important;
  border-radius: 8px !important;
  background: #f7fafc !important;
  text-align: center !important;
  overflow: hidden !important;
  vertical-align: top !important;
  box-sizing: border-box !important;
}
.booked-appt-list .timeslot .timeslot-time {
  display: block !important;
  padding: 10px 6px 2px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: #0A2540 !important;
}
.booked-appt-list .timeslot .timeslot-status {
  display: block !important;
  font-size: 11px !important;
  color: #5E6B78 !important;
  padding: 2px 6px 8px !important;
}
.booked-appt-list .timeslot a.new-appt {
  display: block !important;
  padding: 9px 6px !important;
  background: #0A2540 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: background .2s !important;
}
.booked-appt-list .timeslot a.new-appt:hover {
  background: #00A8CC !important;
}
.booked-appt-list .timeslot.booked-unavailable a.new-appt,
.booked-appt-list .timeslot.booked-unavailable span.new-appt {
  background: #ccc !important;
  pointer-events: none !important;
  color: #888 !important;
}

/* Responsive : 2 cols mobile */
@media (max-width: 640px) {
  .booked-appt-list .timeslot {
    width: calc(50% - 8px) !important;
  }
}

/* Flèches navigation (redéfinition propre) */
.booked-calendar .bc-row.top .bc-col:first-child a,
.booked-calendar .bc-row.top .bc-col:last-child a,
.booked-calendar a.page-left,
.booked-calendar a.page-right {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.2) !important;
  border: 2px solid rgba(255,255,255,0.55) !important;
  color: #fff !important;
  font-size: 0 !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
.booked-calendar a.page-left::before {
  content: '‹' !important;
  font-size: 22px !important;
  color: #fff !important;
  font-family: Arial, sans-serif !important;
  line-height: 1 !important;
}
.booked-calendar a.page-right::before {
  content: '›' !important;
  font-size: 22px !important;
  color: #fff !important;
  font-family: Arial, sans-serif !important;
  line-height: 1 !important;
}

/* Popup formulaire (bm-window) */
.bm-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.55) !important;
  z-index: 99990 !important;
}
.bm-window {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%,-50%) !important;
  width: min(520px, 94vw) !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.28) !important;
  z-index: 99999 !important;
  padding: 30px !important;
  box-sizing: border-box !important;
}
.bm-window h2 {
  font-size: 19px !important;
  color: #0A2540 !important;
  margin: 0 0 20px !important;
  font-weight: 700 !important;
}
.bm-window .close,
.bm-window a.close {
  position: absolute !important;
  top: 14px !important; right: 18px !important;
  font-size: 22px !important;
  cursor: pointer !important;
  color: #5E6B78 !important;
  text-decoration: none !important;
}
/* Champs formulaire */
.booked-form label,
.bm-window label {
  display: block !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #1C2A39 !important;
  margin-bottom: 5px !important;
}
.booked-form input[type=text],
.booked-form input[type=email],
.booked-form input[type=tel],
.booked-form textarea,
.bm-window input[type=text],
.bm-window input[type=email],
.bm-window input[type=tel],
.bm-window textarea,
.bm-window select {
  width: 100% !important;
  padding: 11px 14px !important;
  border: 1.5px solid #d0d7de !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  margin-bottom: 14px !important;
  box-sizing: border-box !important;
  color: #1C2A39 !important;
}
.booked-form input:focus,
.booked-form textarea:focus,
.bm-window input:focus,
.bm-window textarea:focus {
  border-color: #00A8CC !important;
  outline: none !important;
}
.booked-form textarea, .bm-window textarea {
  min-height: 85px !important;
  resize: vertical !important;
}
/* Bouton confirmer */
#booked-submit,
.booked-form input[type=submit],
.bm-window input[type=submit],
.booked-form #submit-request-appointment {
  width: 100% !important;
  padding: 14px !important;
  background: #E87A5D !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  margin-top: 6px !important;
}
#booked-submit:hover,
.booked-form input[type=submit]:hover,
.bm-window input[type=submit]:hover {
  background: #c9623e !important;
}

/* ========================================
   Masquer le spinner Booked (calendrier)
   ======================================== */
.booked-calendar .calendarSavingState {
    display: none !important;
}

/* Masquer le bouton "Retour au mois" du calendrier Booked */
.booked-calendar .bc-row.top .bc-col .monthName a.backToMonth,
.booked-calendar .bc-row.top .bc-col:first-child a.backToMonth,
.booked-calendar .bc-row.top .bc-col:last-child a.backToMonth {
    display: none !important;
}

/* ============================================================
   CONSEILS — Articles single-conseils.php — BrandBook V2 — 2026-06
   ============================================================ */
.conseils-article { background: #F9F8F6; }

/* Hero */
.conseils-art-hero {
  position: relative;
  background: #0A2540;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.conseils-art-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,0.60);
}
.conseils-art-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  width: 100%;
}
.conseils-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.conseils-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.conseils-breadcrumb a:hover { color: #fff; }
.conseils-breadcrumb .sep { margin: 0 4px; }
.conseils-art-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 42px);
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}

/* Body */
.conseils-art-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.conseils-art-body h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #0A2540;
  margin: 0 0 24px;
  line-height: 1.3;
}
.conseils-art-body h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #0A2540;
  border-left: 4px solid #E87A5D;
  padding-left: 16px;
  margin: 48px 0 16px;
  line-height: 1.3;
}
.conseils-art-body h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #0A2540;
  margin: 32px 0 12px;
  line-height: 1.3;
}
.conseils-art-body p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1C3550;
  line-height: 1.8;
  margin: 0 0 16px;
}
.conseils-art-body a { color: #E87A5D; text-decoration: none; }
.conseils-art-body a:hover { text-decoration: underline; }
.conseils-art-body hr { border: none; border-top: 1px solid #dde3ea; margin: 32px 0; }

/* Listes */
.conseils-art-body ul, .conseils-art-body ul.unigo-list {
  padding-left: 0; list-style: none; margin: 0 0 20px;
}
.conseils-art-body ul li, .conseils-art-body ul.unigo-list li {
  font-family: 'Inter', sans-serif;
  font-size: 16px; color: #1C3550; line-height: 1.8;
  padding-left: 22px; position: relative; margin-bottom: 8px;
}
.conseils-art-body ul li::before, .conseils-art-body ul.unigo-list li::before {
  content: '●'; color: #E87A5D; position: absolute; left: 0; font-size: 10px; top: 6px;
}
.conseils-art-body ol, .conseils-art-body ol.unigo-list {
  padding-left: 0; list-style: none; counter-reset: unigo-ol; margin: 0 0 20px;
}
.conseils-art-body ol li, .conseils-art-body ol.unigo-list li {
  font-family: 'Inter', sans-serif;
  font-size: 16px; color: #1C3550; line-height: 1.8;
  padding-left: 32px; position: relative; margin-bottom: 8px;
  counter-increment: unigo-ol;
}
.conseils-art-body ol li::before, .conseils-art-body ol.unigo-list li::before {
  content: counter(unigo-ol) '.';
  color: #E87A5D; font-family: 'Outfit', sans-serif;
  font-weight: 600; position: absolute; left: 0;
}

/* Tableaux */
.conseils-art-body table {
  width: 100%; border-collapse: collapse;
  border-radius: 8px; overflow: hidden;
  margin: 24px 0 32px;
  font-family: 'Inter', sans-serif; font-size: 15px;
}
.conseils-art-body table thead th {
  background: #0A2540; color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 16px; text-align: left;
}
.conseils-art-body table tbody td {
  padding: 12px 16px; color: #1C3550; border-bottom: 1px solid #eef0f3;
}
.conseils-art-body table tbody tr:nth-child(odd) td { background: #fff; }
.conseils-art-body table tbody tr:nth-child(even) td { background: #F9F8F6; }

/* CTA inline */
.unigo-cta-block {
  background: #0A2540; border-radius: 10px; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin: 40px 0; flex-wrap: wrap;
}
.unigo-cta-block p { color: #fff !important; font-family: 'Inter', sans-serif; font-size: 16px; margin: 0 !important; flex: 1; }
.unigo-cta-btn {
  display: inline-block; background: #E87A5D; color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 8px; text-decoration: none;
  white-space: nowrap; transition: background .2s;
}
.unigo-cta-btn:hover { background: #0A2540; color: #fff; text-decoration: none; }

/* CTA bas de page */
.conseils-art-cta { background: #0A2540; padding: 60px 24px; text-align: center; }
.conseils-art-cta-inner { max-width: 680px; margin: 0 auto; }
.conseils-art-cta h3 {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 28px;
  color: #fff; margin: 0 0 12px;
}
.conseils-art-cta p {
  font-family: 'Inter', sans-serif; font-size: 16px;
  color: rgba(255,255,255,.8); margin: 0 0 28px;
}
.conseils-cta-btn-bottom {
  display: inline-block; background: #E87A5D; color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 16px;
  padding: 15px 32px; border-radius: 8px; text-decoration: none; transition: background .2s;
}
.conseils-cta-btn-bottom:hover { background: #d06a4e; color: #fff; text-decoration: none; }

/* Commentaires */
.conseils-comments-wrap { max-width: 800px; margin: 0 auto; padding: 40px 24px 60px; }
.conseils-comments-wrap .comment-list { list-style: none; padding: 0; margin: 0 0 32px; }
.conseils-comments-wrap .comment-body {
  background: #fff; border-radius: 8px; padding: 20px 24px;
  margin-bottom: 16px; border: 1px solid #eef0f3;
}
.conseils-comments-wrap .comment-author .fn {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px; color: #0A2540;
}
.conseils-comments-wrap .comment-content p {
  font-family: 'Inter', sans-serif; font-size: 15px; color: #1C3550; line-height: 1.7; margin: 8px 0 0;
}
.conseils-comments-wrap #respond {
  background: #fff; border-radius: 10px; padding: 32px;
  border: 1px solid #eef0f3; margin-top: 24px;
}
.conseils-comments-wrap #reply-title {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 22px; color: #0A2540; margin: 0 0 24px;
}
.conseils-comments-wrap .comment-form label {
  display: block; font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 14px; color: #0A2540; margin-bottom: 6px;
}
.conseils-comments-wrap .comment-form input[type="text"],
.conseils-comments-wrap .comment-form input[type="email"],
.conseils-comments-wrap .comment-form input[type="tel"],
.conseils-comments-wrap .comment-form textarea {
  width: 100%; border: 1px solid #dde3ea; border-radius: 6px;
  padding: 10px 14px; font-family: 'Inter', sans-serif; font-size: 15px;
  color: #1C3550; box-sizing: border-box; margin-bottom: 16px; transition: border-color .2s;
}
.conseils-comments-wrap .comment-form input:focus,
.conseils-comments-wrap .comment-form textarea:focus { outline: none; border-color: #E87A5D; }
.conseils-comments-wrap .comment-form-comment textarea { min-height: 120px; resize: vertical; }
.conseils-comments-wrap #submit {
  background: #E87A5D; color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 16px;
  padding: 12px 28px; border: none; border-radius: 8px; cursor: pointer; transition: background .2s;
}
.conseils-comments-wrap #submit:hover { background: #0A2540; }

/* Responsive */
@media (max-width: 768px) {
  .conseils-art-hero { min-height: 300px; }
  .conseils-art-hero-inner { padding: 60px 20px 40px; }
  .conseils-art-title { font-size: 24px; }
  .conseils-art-body { padding: 40px 16px 60px; }
  .conseils-art-body h2 { font-size: 20px; margin: 36px 0 12px; }
  .unigo-cta-block { flex-direction: column; text-align: center; padding: 24px 20px; }
  .conseils-art-cta { padding: 40px 20px; }
  .conseils-art-cta h3 { font-size: 22px; }
  .conseils-comments-wrap #respond { padding: 24px 16px; }
  .conseils-art-body table { font-size: 13px; }
  .conseils-art-body table thead th,
  .conseils-art-body table tbody td { padding: 10px 12px; }
}


/* ============================================================
   CORRECTIONS HERO + CTA + COMMENTAIRES — 2026-06
   ============================================================ */

/* Hero — taille 600px comme pages destinations */
.conseils-art-hero {
  min-height: 600px !important;
  justify-content: center !important;
}

/* Hero inner — centrage titre */
.conseils-art-hero-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 60px 24px !important;
}

/* Titre H1 blanc comme destinations */
.conseils-art-title {
  color: #ffffff !important;
  font-size: clamp(32px, 5vw, 48px) !important;
  text-align: center !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3) !important;
}

/* Breadcrumb — bas gauche du hero */
.conseils-breadcrumb {
  position: absolute !important;
  bottom: 24px !important;
  left: 24px !important;
  margin: 0 !important;
  z-index: 3 !important;
}
.conseils-breadcrumb,
.conseils-breadcrumb span {
  color: rgba(255,255,255,0.8) !important;
  font-size: 13px !important;
}
.conseils-breadcrumb a {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
}
.conseils-breadcrumb a:hover {
  color: #ffffff !important;
}
.conseils-breadcrumb .sep {
  margin: 0 4px !important;
}

/* CTA inline — texte blanc */
.unigo-cta-block p,
.unigo-cta-block h2,
.unigo-cta-block h3 {
  color: #ffffff !important;
}

/* CTA bas de page — texte blanc */
.conseils-art-cta h3,
.conseils-art-cta p {
  color: #ffffff !important;
}

/* Fix couleurs boutons CTA — theme parent override */
.unigo-cta-btn,
.unigo-cta-btn:link,
.unigo-cta-btn:visited {
  color: #ffffff !important;
}
.unigo-cta-btn:hover {
  background: #0A2540 !important;
  color: #ffffff !important;
}
.conseils-cta-btn-bottom,
.conseils-cta-btn-bottom:link,
.conseils-cta-btn-bottom:visited {
  color: #ffffff !important;
}
.conseils-cta-btn-bottom:hover {
  background: #d06a4e !important;
  color: #ffffff !important;
}

/* Fix .conseils-card-btn — page index /conseils/ */
a.conseils-card-btn,
.conseils-card-btn,
.conseils-card-btn:link,
.conseils-card-btn:visited,
.conseils-card-btn:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 15px !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.conseils-card-btn:hover {
  background: #0A2540 !important;
}


/* ═══════════════════════════════════════════════════════════
   MOBILE COHÉRENCE — Alignement visuel avec /matching
   Breakpoint: max-width 640px (identique à l'app /matching)
   ══════════════════════════════════════════════════════════ */

@media (max-width: 640px) {

    /* 1. Header — même padding que /matching navbar (12px 16px) */
    .site-header {
        padding: 12px 16px !important;
    }

    /* 2. Logo — hauteur fixe alignée avec /matching (36-38px) */
    header.site-header .logo-container img {
        height: 38px !important;
        width: auto !important;
    }

    /* 3. Shell — marges horizontales 16px (vs 14px actuel) */
    .unigo-shell,
    .unigo-shell--narrow {
        width: calc(100% - 32px) !important;
    }

    /* 4. Hero content — padding mobile raisonnable (vs 110px top hérité) */
    .unigo-hero__content {
        padding: 48px 0 52px !important;
    }

    /* 5. Hero H1 — taille cohérente avec l'app matching */
    .unigo-front-page .unigo-hero .unigo-hero__content h1,
    .unigo-front-page .unigo-hero .unigo-hero__content h1 * {
        font-size: clamp(1.65rem, 6.5vw, 2.1rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
    }

    /* 6. Hero paragraph — compact et lisible */
    .unigo-hero__content p {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }

    /* 7. CTA boutons — confortables, full-width */
    .unigo-btn,
    .unigo-card .unigo-btn {
        padding: 13px 20px !important;
        font-size: 14px !important;
        min-height: 46px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 8. Sections — espacement mobile */
    .unigo-section {
        padding: 40px 0 !important;
    }

    /* 9. Hamburger — zone de tap 44×44px (standard mobile UX) */
    .unigo-hamburger {
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 12px 8px !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* 10. Titres de sections — scale lisible sur petit écran */
    .unigo-why h2,
    .unigo-destinations h2,
    .unigo-about h2,
    .unigo-testimonials h2,
    .unigo-faq h2 {
        font-size: clamp(1.4rem, 5vw, 1.75rem) !important;
        margin-bottom: 16px !important;
    }

    /* 11. Menu déroulant — liens plus compacts sur petit mobile */
    .header-menu ul li a {
        font-size: 1.1rem !important;
        padding: 1.1rem 1.5rem !important;
    }

    .header-menu ul li ul li a {
        font-size: 0.95rem !important;
        padding: 0.8rem 1.25rem 0.8rem 2rem !important;
    }
}

/* Force couleur blanche sur tous les liens du nav */
nav.header-menu a, nav.header-menu a:link, nav.header-menu a:visited { color: #ffffff !important; }
