/* ============================================================
   agence-omra.fr — thème clair "or & ivoire" (maquette v2)
   Palette : ivoire #FBF7F0 · or #C49A3E · encre #2B2B28
   Typo : Playfair Display (display) · Jost (texte)
   ============================================================ */

:root {
    --ivoire:     #FBF7F0;
    --ivoire-2:   #F5EEE1;
    --blanc:      #FFFFFF;
    --or:         #C49A3E;
    --or-fonce:   #A87F2C;
    --or-pale:    #F3E9D4;
    --encre:      #2B2B28;
    --gris:       #6B6558;
    --ligne:      #EAE2D2;
    --vert-nuit:  #10231C;
    --rouge:      #B3402E;
    --radius:     14px;
    --shadow:     0 12px 36px rgba(90, 70, 30, .12);
    --shadow-s:   0 5px 18px rgba(90, 70, 30, .08);
    --font-d:     'Playfair Display', serif;
    --font-t:     'Jost', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

body { font-family: var(--font-t); color: var(--encre); background: var(--blanc); line-height: 1.65; font-size: 17px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--encre); text-decoration: none; }
a:hover { color: var(--or); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--or); outline-offset: 2px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

h1, h2, h3, .display { font-family: var(--font-d); font-weight: 600; line-height: 1.18; color: var(--encre); }
h1 { font-size: clamp(2.1rem, 4.8vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); margin-bottom: .5em; }
h3 { font-size: 1.2rem; }
h1 em, h2 em { font-style: normal; color: var(--or); }

.eyebrow {
    display: block; letter-spacing: .28em; text-transform: uppercase;
    font-size: .74rem; color: var(--or); font-weight: 600; margin-bottom: .9em;
}

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 28px; border-radius: 999px;
    font-family: var(--font-t); font-weight: 500; font-size: 1rem;
    border: 1.5px solid transparent; cursor: pointer; transition: all .2s ease; text-align: center;
}
.btn-gold { background: var(--or); color: #fff; border-color: var(--or); }
.btn-gold:hover { background: var(--or-fonce); border-color: var(--or-fonce); color: #fff; transform: translateY(-2px); }
.btn-green { background: var(--or); color: #fff; border-color: var(--or); }         /* alias hérité */
.btn-green:hover { background: var(--or-fonce); border-color: var(--or-fonce); color: #fff; }
.btn-ghost { background: var(--blanc); color: var(--encre); border-color: #D8D0BE; }
.btn-ghost:hover { border-color: var(--or); color: var(--or); }
.btn-outline { background: transparent; color: var(--or); border-color: var(--or); }
.btn-outline:hover { background: var(--or); color: #fff; }
.btn-lg { padding: 16px 38px; font-size: 1.06rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
    background: var(--blanc); position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid var(--ligne);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding-top: 10px; padding-bottom: 10px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo img { height: 48px; width: auto; }
.logo .logo-bloc { display: flex; flex-direction: column; line-height: 1.15; }
.logo .logo-txt { font-family: var(--font-d); font-size: 1.3rem; color: var(--encre); font-weight: 700; }
.logo .logo-txt span { color: var(--or); }
.logo .logo-tag { font-size: .68rem; letter-spacing: .12em; color: var(--gris); text-transform: uppercase; }

nav.main-nav ul { list-style: none; display: flex; gap: 26px; align-items: center; }
nav.main-nav > ul > li { position: relative; }
nav.main-nav a { color: var(--encre); font-weight: 500; padding: 10px 0; font-size: .97rem; border-bottom: 2px solid transparent; }
nav.main-nav a:hover, nav.main-nav a.actif { color: var(--or); border-bottom-color: var(--or); }
nav.main-nav .has-sub > a::after { content: " ▾"; font-size: .7em; color: var(--or); }
nav.main-nav .sub {
    position: absolute; top: 100%; left: -14px; background: var(--blanc);
    min-width: 240px; border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 10px 0; display: none; flex-direction: column;
    border-top: 3px solid var(--or);
}
nav.main-nav .has-sub:hover .sub, nav.main-nav .has-sub:focus-within .sub { display: flex; }
nav.main-nav .sub a { padding: 9px 18px; display: block; border-bottom: none; }
nav.main-nav .sub a:hover { background: var(--ivoire); color: var(--or); }
.nav-cta { white-space: nowrap; padding: 11px 22px !important; border-bottom: none !important; color: #fff !important; }
.nav-cta:hover { color: #fff !important; }

.burger { display: none; background: none; border: none; font-size: 1.8rem; color: var(--or); cursor: pointer; }

@media (max-width: 1020px) {
    .burger { display: block; }
    nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--blanc); box-shadow: var(--shadow); }
    nav.main-nav.open { display: block; }
    nav.main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 0; }
    nav.main-nav a { display: block; padding: 12px 24px; border-bottom: none; }
    nav.main-nav .sub { position: static; display: flex; box-shadow: none; border-top: none; background: var(--ivoire); }
    .nav-cta { margin: 12px 24px; }
}

/* ---------- Hero clair ---------- */
.hero {
    position: relative; overflow: hidden;
    background:
        linear-gradient(90deg, #FDFBF6 0%, rgba(253,251,246,.96) 34%, rgba(253,251,246,.55) 55%, rgba(253,251,246,.05) 80%),
        url('../img/hero.jpg') right center/cover no-repeat #FBF7F0;
}
.hero .container {
    position: relative; padding-top: 78px; padding-bottom: 88px;
    display: grid; grid-template-columns: 1.15fr .78fr; gap: 44px; align-items: center;
}
.hero ul.hero-list { list-style: none; margin: 26px 0 30px; display: flex; flex-direction: column; gap: 11px; color: var(--encre); font-size: 1.02rem; }
.hero ul.hero-list li { display: flex; align-items: center; gap: 11px; }
.hero ul.hero-list li::before {
    content: "✓"; flex: none; width: 22px; height: 22px; border-radius: 50%;
    background: var(--or-pale); color: var(--or-fonce); font-size: .8rem; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--or);
}
.hero .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Carte flottante du hero (blanche) */
.hero-card {
    background: rgba(255,255,255,.94); backdrop-filter: blur(4px);
    border: 1px solid var(--ligne); border-radius: var(--radius);
    padding: 26px 28px; box-shadow: var(--shadow); max-width: 330px; justify-self: end;
}
.hero-card ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 20px; }
.hero-card ul li { display: flex; align-items: center; gap: 12px; color: var(--encre); font-size: .97rem; }
.hero-card ul li .ic { color: var(--or); width: 24px; text-align: center; font-size: 1.05rem; }
.hero-card .hc-sep { border-top: 1px solid var(--ligne); padding-top: 18px; text-align: center; }
.hero-card .hc-label { letter-spacing: .22em; font-size: .68rem; text-transform: uppercase; color: var(--gris); }
.hero-card .hc-prix { font-family: var(--font-d); font-size: 2.7rem; color: var(--or); line-height: 1.1; font-weight: 700; }
.hero-card .hc-detail { font-size: .88rem; color: var(--gris); }

@media (max-width: 920px) {
    .hero { background-image: linear-gradient(180deg, #FDFBF6 30%, rgba(253,251,246,.6)), url('../img/hero.jpg'); }
    .hero .container { grid-template-columns: 1fr; padding-top: 52px; padding-bottom: 56px; }
    .hero-card { justify-self: start; }
}

/* ---------- Bande partenaires ---------- */
.trust-strip { position: relative; margin-top: -46px; z-index: 5; }
.trust-strip .inner {
    background: var(--blanc); border-radius: var(--radius); box-shadow: var(--shadow);
    display: flex; align-items: center; justify-content: center; gap: 20px 36px; flex-wrap: wrap;
    padding: 18px 28px;
}
.trust-strip img { max-height: 46px; width: auto; }
.trust-item.google { font-family: var(--font-t); color: var(--encre); font-weight: 500; font-size: .95rem; white-space: nowrap; }
.trust-item.google .stars { color: var(--or); letter-spacing: .04em; }
@media (max-width: 720px) { .trust-strip { margin-top: 0; padding-top: 14px; } }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section-alt { background: var(--ivoire); }
.section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--gris); }

/* Section sombre héritée (CTA piliers) : bandeau panorama */
.section-green {
    position: relative; color: #F4EFE3;
    background:
        linear-gradient(180deg, rgba(16,35,28,.78), rgba(16,35,28,.86)),
        url('../img/pano-nuit.jpg') center/cover no-repeat #10231C;
}
.section-green h2, .section-green h3 { color: #fff; }
.section-green p { color: #DDD6C4; }
.cta-final { text-align: center; }
.cta-final p { max-width: 560px; margin: 0 auto 26px; }

/* ---------- Cartes séjours ---------- */
.grid-sejours { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

.card-sejour {
    background: var(--blanc); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-s); border: 1px solid var(--ligne);
    display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.card-sejour:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-img { position: relative; height: 168px; background: var(--ivoire-2) center/cover no-repeat; display: block; }
.date-badge {
    position: absolute; top: 14px; left: 14px; background: var(--blanc);
    border-radius: 10px; text-align: center; padding: 7px 13px; line-height: 1.1;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.date-badge .dj { font-family: var(--font-d); font-size: 1.45rem; color: var(--encre); font-weight: 700; display: block; }
.date-badge .dm { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--or); font-weight: 600; }
.card-img .badge { position: absolute; top: 14px; right: 14px; }

.card-corps { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.card-titre { font-size: 1.12rem; letter-spacing: .04em; }
.card-titre a { color: var(--encre); }
.card-hotel { font-size: .92rem; color: var(--gris); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.card-hotel strong { color: var(--encre); }
.card-hotel .stars { color: var(--or); font-size: .78rem; letter-spacing: .05em; }
.card-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
    font-size: .8rem; color: var(--encre); background: var(--ivoire);
    border: 1px solid var(--ligne); border-radius: 999px; padding: 4px 12px;
}
.card-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }
.prix-valeur { font-family: var(--font-d); font-size: 1.85rem; color: var(--or); font-weight: 700; }
.prix-valeur small { font-size: .95rem; }
.prix-sous { font-size: .75rem; color: var(--gris); display: block; margin-top: -4px; }
.card-bottom .btn { padding: 11px 20px; font-size: .93rem; }

.badge { border-radius: 999px; padding: 5px 12px; font-size: .74rem; font-weight: 600; white-space: nowrap; }
.badge-ok     { background: rgba(232,244,235,.97); color: #1F5C37; }
.badge-urgent { background: rgba(251,233,228,.97); color: var(--rouge); }
.badge-full   { background: rgba(238,238,238,.97); color: #666; }

.centre { text-align: center; }
.lien-fleche { font-weight: 500; color: var(--encre); }
.lien-fleche::after { content: "  →"; color: var(--or); }
.lien-fleche:hover { color: var(--or); }

/* ---------- Pourquoi nous choisir : rangée unifiée ---------- */
.pourquoi {
    background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius);
    box-shadow: var(--shadow-s);
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.pourquoi .p-item { padding: 30px 26px; border-left: 1px solid var(--ligne); }
.pourquoi .p-item:first-child { border-left: none; }
.pourquoi img { height: 44px; width: auto; margin-bottom: 14px; }
.pourquoi h3 { font-size: 1.04rem; margin-bottom: 6px; }
.pourquoi p { color: var(--gris); font-size: .9rem; line-height: 1.5; }
@media (max-width: 980px) {
    .pourquoi { grid-template-columns: 1fr 1fr; }
    .pourquoi .p-item:nth-child(3) { border-left: none; }
    .pourquoi .p-item { border-top: 1px solid var(--ligne); }
    .pourquoi .p-item:nth-child(-n+2) { border-top: none; }
}
@media (max-width: 560px) {
    .pourquoi { grid-template-columns: 1fr; }
    .pourquoi .p-item { border-left: none; }
    .pourquoi .p-item:nth-child(2) { border-top: 1px solid var(--ligne); }
}

/* Cartes feature héritées (pages internes) */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.feature { background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-s); }
.feature .f-ico {
    width: 52px; height: 52px; border-radius: 50%; margin-bottom: 16px;
    background: var(--or-pale); border: 1px solid var(--or);
    display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}
.feature h3 { margin-bottom: 6px; font-size: 1.06rem; }
.feature p { color: var(--gris); font-size: .93rem; }
.section-green .feature { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.25); box-shadow: none; }
.section-green .feature p { color: #DDD6C4; }

/* ---------- Étapes (6) ---------- */
.etapes { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 34px; }
.etapes::before {
    content: ""; position: absolute; top: 42px; left: 8%; right: 8%;
    border-top: 2px dashed #DCCFA8; z-index: 0;
}
.etape { position: relative; z-index: 1; text-align: center; }
.etape .e-cercle {
    width: 84px; height: 84px; margin: 0 auto 12px; border-radius: 50%;
    background: var(--blanc); border: 1.5px solid var(--or);
    display: flex; align-items: center; justify-content: center; position: relative;
    box-shadow: var(--shadow-s);
}
.etape .e-cercle img { height: 40px; width: auto; }
.etape .e-num {
    position: absolute; bottom: -6px; right: -2px;
    width: 24px; height: 24px; border-radius: 50%; background: var(--or); color: #fff;
    font-size: .75rem; font-weight: 600; display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--blanc);
}
.etape p { font-size: .86rem; color: var(--gris); line-height: 1.35; }
.etape p strong { color: var(--encre); display: block; }
@media (max-width: 880px) {
    .etapes { grid-template-columns: repeat(3, 1fr); gap: 26px 14px; }
    .etapes::before { display: none; }
}
@media (max-width: 480px) { .etapes { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Hôtels ---------- */
.hotel-card {
    background: var(--blanc); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-s); border: 1px solid var(--ligne); text-align: center;
}
.hotel-img { height: 195px; background: var(--ivoire-2) center/cover no-repeat; }
.hotel-corps { padding: 20px 22px 26px; }
.hotel-corps h3 { font-size: 1.15rem; }
.hotel-corps .stars { color: var(--or); font-size: .85rem; letter-spacing: .1em; display: block; margin: 6px 0 4px; }
.hotel-corps p { color: var(--gris); font-size: .9rem; margin-bottom: 16px; }

/* ---------- Bannière panorama ---------- */
.bandeau-pano {
    position: relative; color: #fff;
    background:
        linear-gradient(90deg, rgba(16,35,28,.05) 30%, rgba(16,35,28,.72) 68%),
        url('../img/pano-medine.jpg') center/cover no-repeat #10231C;
}
.bandeau-pano .container {
    min-height: 300px; display: flex; flex-direction: column; justify-content: center;
    align-items: flex-end; text-align: right; padding-top: 54px; padding-bottom: 54px;
}
.bandeau-pano h2 { color: #fff; max-width: 440px; font-size: clamp(1.4rem, 2.6vw, 1.9rem); text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.bandeau-pano .btn { margin-top: 22px; }
@media (max-width: 720px) {
    .bandeau-pano { background: linear-gradient(0deg, rgba(16,35,28,.75), rgba(16,35,28,.55)), url('../img/pano-medine.jpg') center/cover no-repeat; }
    .bandeau-pano .container { align-items: center; text-align: center; }
}

/* ---------- Témoignages ---------- */
.avis-faq { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
@media (max-width: 880px) { .avis-faq { grid-template-columns: 1fr; } }
.avis-faq .col-titre { text-align: center; margin-bottom: 24px; }

.temoignage {
    background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius);
    padding: 22px 24px; box-shadow: var(--shadow-s); margin-bottom: 16px;
}
.temoignage .t-head { display: flex; align-items: center; gap: 13px; margin-bottom: 10px; }
.temoignage .t-avatar {
    width: 48px; height: 48px; border-radius: 50%; flex: none; overflow: hidden;
    background: var(--or-pale); color: var(--or-fonce); font-family: var(--font-d);
    font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--or);
}
.temoignage .t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.temoignage .t-nom { font-weight: 600; color: var(--encre); }
.temoignage .stars { color: var(--or); font-size: .78rem; letter-spacing: .08em; }
.temoignage p { color: var(--gris); font-size: .93rem; font-style: italic; }

/* ---------- FAQ ---------- */
.faq details {
    background: var(--blanc); border: 1px solid var(--ligne); border-radius: 12px;
    padding: 0 20px; margin-bottom: 12px; box-shadow: var(--shadow-s);
}
.faq summary {
    cursor: pointer; font-weight: 500; color: var(--encre); padding: 16px 30px 16px 0;
    list-style: none; position: relative; font-size: .97rem;
}
.faq summary::after { content: "▾"; position: absolute; right: 0; color: var(--or); }
.faq details[open] summary::after { content: "▴"; }
.faq details p { padding-bottom: 16px; color: var(--gris); font-size: .93rem; }

/* ---------- Bande contact ---------- */
.contact-strip { padding: 0 0 70px; }
.contact-strip .inner {
    background: var(--ivoire); border: 1px solid var(--ligne); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
    padding: 26px 34px;
}
.contact-strip .cs-left { display: flex; align-items: center; gap: 18px; }
.contact-strip .cs-left img { height: 46px; width: auto; }
.contact-strip .cs-left strong { display: block; font-size: 1.08rem; color: var(--encre); }
.contact-strip .cs-left span { color: var(--gris); font-size: .9rem; }
.contact-strip .cs-tel {
    background: var(--blanc); border: 1px solid var(--ligne); border-radius: 999px;
    padding: 12px 24px; font-weight: 600; font-size: 1.05rem; color: var(--encre);
    display: inline-flex; align-items: center; gap: 10px; box-shadow: var(--shadow-s);
}
.contact-strip .cs-tel .wa { color: #25D366; font-size: 1.3rem; }
.contact-strip .cs-tel:hover { border-color: var(--or); color: var(--or); }

/* ---------- Pages internes ---------- */
.sejour-hero {
    background:
        linear-gradient(90deg, rgba(251,247,240,.97) 25%, rgba(251,247,240,.75)),
        url('../img/pano-kaaba.jpg') center/cover no-repeat #FBF7F0;
    padding: 54px 0 46px; border-bottom: 1px solid var(--ligne);
}
.sejour-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
.sejour-hero .meta { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 16px; color: var(--gris); font-size: .96rem; }
.sejour-hero .meta strong { color: var(--or-fonce); }

.sejour-layout { display: grid; grid-template-columns: 1fr 370px; gap: 40px; align-items: start; }
@media (max-width: 920px) { .sejour-layout { grid-template-columns: 1fr; } }

.sejour-desc { white-space: pre-line; color: #4A463C; }
.bloc { background: var(--blanc); border-radius: var(--radius); box-shadow: var(--shadow-s); border: 1px solid var(--ligne); padding: 30px; margin-bottom: 26px; }
.bloc h2 { font-size: 1.42rem; }

.img-bloc { width: 100%; border-radius: 10px; object-fit: cover; margin-bottom: 18px; }
.galerie-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.galerie-2 img { width: 100%; height: 170px; object-fit: cover; border-radius: 10px; }
@media (max-width: 560px) { .galerie-2 { grid-template-columns: 1fr; } .galerie-2 img { height: 150px; } }

.card-hotels { list-style: none; font-size: .95rem; color: var(--gris); display: flex; flex-direction: column; gap: 8px; }
.card-hotels strong { color: var(--encre); }

.table-prix { width: 100%; border-collapse: collapse; margin-top: 10px; }
.table-prix th, .table-prix td { padding: 13px 10px; text-align: left; border-bottom: 1px solid var(--ligne); }
.table-prix th { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gris); }
.table-prix td.p { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; color: var(--or); white-space: nowrap; }

.sidebar-rez {
    position: sticky; top: 92px; background: var(--blanc);
    border-radius: var(--radius); padding: 30px;
    border: 1px solid var(--ligne); border-top: 4px solid var(--or); box-shadow: var(--shadow);
}
.sidebar-rez .hc-label { letter-spacing: .22em; font-size: .68rem; text-transform: uppercase; color: var(--gris); }
.sidebar-rez .prix-valeur { font-size: 2.5rem; }
.sidebar-rez ul.incl { margin: 18px 0 22px; }
.trust { margin-top: 16px; font-size: .82rem; color: var(--gris); text-align: center; }
.sidebar-rez .urgence { color: var(--rouge); font-weight: 600; margin: 8px 0 0; }

ul.incl { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: .94rem; color: var(--gris); }
ul.incl li::before { content: "✓ "; color: var(--or); font-weight: 700; }

.timeline { list-style: none; border-left: 2px solid var(--or); padding-left: 24px; display: flex; flex-direction: column; gap: 18px; }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: -30px; top: 7px; width: 10px; height: 10px; border-radius: 50%; background: var(--or); }
.timeline strong { color: var(--encre); }

/* ---------- Formulaires ---------- */
.form-card {
    background: var(--blanc); border-radius: var(--radius); box-shadow: var(--shadow);
    border: 1px solid var(--ligne); border-top: 4px solid var(--or);
    padding: 38px; max-width: 780px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
label { font-weight: 500; font-size: .9rem; display: block; margin-bottom: 6px; color: var(--encre); }
label .req { color: var(--rouge); }
input, select, textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--ligne); border-radius: 10px;
    font-family: var(--font-t); font-size: 1rem; background: var(--blanc); color: var(--encre);
}
input:focus, select:focus, textarea:focus { border-color: var(--or); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.alert { padding: 16px 20px; border-radius: 10px; margin-bottom: 22px; }
.alert-ok  { background: #E8F4EB; color: #1F5C37; }
.alert-err { background: #FBE9E4; color: var(--rouge); }

/* ---------- Contenu SEO / breadcrumb ---------- */
.breadcrumb { font-size: .85rem; color: var(--gris); padding: 16px 0 0; }
.breadcrumb a { color: var(--gris); }
.breadcrumb a:hover { color: var(--or); }
.seo-content { max-width: 840px; margin: 0 auto; }
.seo-content p { margin-bottom: 1em; color: #4A463C; }
.seo-content h2 { margin-top: 1.3em; }
.seo-content ul { margin: 0 0 1em 1.2em; color: #4A463C; }

/* ---------- Footer clair ---------- */
.site-footer { background: var(--ivoire); border-top: 1px solid var(--ligne); color: var(--gris); padding: 58px 0 0; margin-top: 72px; }
.site-footer .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.site-footer .footer-logo img { height: 46px; }
.site-footer .footer-logo .logo-bloc { display: flex; flex-direction: column; line-height: 1.15; }
.site-footer .footer-logo .logo-txt { font-family: var(--font-d); font-size: 1.2rem; color: var(--encre); font-weight: 700; }
.site-footer .footer-logo .logo-txt span { color: var(--or); }
.site-footer .footer-logo .logo-tag { font-size: .64rem; letter-spacing: .12em; color: var(--gris); text-transform: uppercase; }
.site-footer h4 { font-family: var(--font-t); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--encre); margin-bottom: 14px; font-size: .82rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1.1fr 1.1fr 1.1fr; gap: 34px; padding-bottom: 44px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); } }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: .92rem; }
.site-footer a { color: var(--gris); }
.site-footer a:hover { color: var(--or); }
.footer-desc { font-size: .9rem; margin: 10px 0 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%; background: var(--blanc); border: 1px solid var(--ligne);
    display: inline-flex; align-items: center; justify-content: center; font-size: .95rem;
}
.footer-social a:hover { border-color: var(--or); }
.footer-bottom { border-top: 1px solid var(--ligne); padding: 18px 0; font-size: .82rem; text-align: center; }

/* ---------- WhatsApp flottant + CTA mobile ---------- */
.wa-float {
    position: fixed; bottom: 22px; right: 22px; z-index: 90;
    background: #25D366; color: #fff; width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

.mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    background: var(--blanc); box-shadow: 0 -4px 16px rgba(0,0,0,.12);
    padding: 10px 14px; gap: 10px; border-top: 1px solid var(--ligne);
}
.mobile-cta .btn { flex: 1; padding: 12px 8px; font-size: .95rem; }
@media (max-width: 720px) {
    .mobile-cta { display: flex; }
    .wa-float { bottom: 80px; }
    body { padding-bottom: 68px; }
}
