/*
Theme Name: Ourika Excursion
Theme URI: https://ourikaexcursion.com
Author: VHYNX
Author URI: https://vhynx.com
Description: Thème sur mesure pour Marrakech First, plateforme de réservation d'excursions vers la Vallée de l'Ourika et le Haut Atlas. Vanilla CSS, zéro framework, optimisé Core Web Vitals.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ourikaexcursion
*/

/* ==========================================================================
   SOMMAIRE
   1.  Variables & tokens
   2.  Reset & bases HTML
   3.  Typographie & utilitaires
   4.  Boutons
   5.  Header & navigation
   6.  Menu mobile (drawer)
   7.  Hero cinématique
   8.  Bandeaux de confiance (3 variantes)
   9.  Prestations & catalogue d'excursions
   10. Histoire & patrimoine
   11. Avis clients
   12. FAQ accueil (accordéon)
   13. Callout & footer
   14. Sticky bar, WhatsApp flottant & modales génériques
   15. Bannière de page & fil d'Ariane
   16. Grille d'excursions détaillées
   17. Calculateur de devis
   18. Page À propos
   19. Page Galerie
   20. Page Blog
   21. Page Contact
   22. Modales réservation, PayPal & bon d'échange
   23. Accessibilité & mouvement réduit
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. VARIABLES & TOKENS
   Source unique. Les alias -dark pointent vers les tokens -hover d'origine
   afin que les composants issus des pages continuent de fonctionner.
   -------------------------------------------------------------------------- */
:root {
    /* Fonds */
    --bg-main: #FAF7F2;
    --bg-surface: #FFFFFF;
    --bg-sand: #F7F3EA;
    --bg-dark: #0A0908;
    --bg-dark-card: #151915;
    --bg-dark-surface: #141714;
    --bg-dark-strip: #11100F;

    /* Texte */
    --text-primary: #1C1A19;
    --text-secondary: #524E4A;
    --text-muted: #78716C;
    --text-inverse: #FFFFFF;

    /* Couleurs de marque */
    --color-terracotta: #B85028;
    --color-terracotta-hover: #9E421E;
    --color-terracotta-light: rgba(184, 80, 40, 0.08);

    --color-emerald: #2A4839;
    --color-emerald-hover: #1E3529;
    --color-emerald-light: #E8F0EB;

    --color-gold: #E6C594;
    --color-gold-hover: #D4B07B;
    --color-sand: #E8D6B8;

    /* Alias de compatibilité (composants pages) */
    --color-terracotta-dark: var(--color-terracotta-hover);
    --color-emerald-dark: var(--color-emerald-hover);
    --color-gold-dark: var(--color-gold-hover);

    /* Typographie */
    --font-editorial: 'Cormorant Garamond', Georgia, serif;
    --font-serif: var(--font-editorial);
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Bordures */
    --border-light: rgba(28, 26, 25, 0.08);
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(230, 197, 148, 0.35);

    /* Ombres */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 14px rgba(28, 26, 25, 0.06);
    --shadow-md: 0 10px 30px rgba(28, 26, 25, 0.09);
    --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16);
    --shadow-hover: 0 20px 48px -8px rgba(28, 26, 25, 0.16);
    --shadow-btn-terracotta: 0 4px 20px rgba(184, 80, 40, 0.35);
    --shadow-gold: 0 0 15px rgba(230, 197, 148, 0.25);

    /* Rayons */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions & conteneur */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.3s var(--ease-out);
    --transition-fast: 0.15s ease;
    --container-max: 1320px;
}


/* --------------------------------------------------------------------------
   2. RESET & BASES HTML
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button,
input,
select,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

@keyframes ping {
    75%, 100% { transform: scale(2.4); opacity: 0; }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}


/* --------------------------------------------------------------------------
   3. TYPOGRAPHIE & UTILITAIRES
   -------------------------------------------------------------------------- */
.font-editorial { font-family: var(--font-editorial); }
.font-sans      { font-family: var(--font-sans); }
.italic         { font-style: italic; }

.font-light     { font-weight: 300; }
.font-normal    { font-weight: 400; }
.font-medium    { font-weight: 500; }
.font-semibold  { font-weight: 600; }
.font-bold      { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Les deux conventions de nommage couleur sont acceptées */
.color-terracotta,
.text-terracotta { color: var(--color-terracotta); }
.color-emerald,
.text-emerald    { color: var(--color-emerald); }
.color-gold,
.text-gold       { color: var(--color-gold); }
.color-sand      { color: var(--color-sand); }
.color-gray      { color: var(--text-muted); }
.text-white      { color: var(--text-inverse); }

.bg-sand  { background-color: var(--bg-sand); }
.bg-dark  { background-color: var(--bg-dark); }
.bg-white { background-color: var(--bg-surface); }

.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-left   { text-align: left; }
.full-width  { width: 100%; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 32px);
}

/* Deux rythmes verticaux : ample (accueil) et compact (pages intérieures) */
.section-padding {
    padding: clamp(56px, 8vw, 96px) 0;
}

.section {
    position: relative;
    padding: clamp(48px, 7vw, 90px) 0;
}

.section-header {
    max-width: 720px;
    margin: 0 auto clamp(32px, 5vw, 54px);
}

.badge-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 5px 14px;
    border: 1px solid rgba(42, 72, 57, 0.2);
    border-radius: var(--radius-full);
    background: rgba(42, 72, 57, 0.08);
    color: var(--color-emerald);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sub-title {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-terracotta);
}

.section-title {
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
}

.section-desc {
    max-width: 720px;
    margin: 0 auto clamp(28px, 4vw, 44px);
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* Dans un .section-header, la description est déjà centrée par le conteneur */
.section-header .section-desc {
    margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   4. BOUTONS
   Forme par défaut : pilule. Modificateur .btn-square pour les angles doux
   utilisés sur les pages intérieures.
   -------------------------------------------------------------------------- */
.btn-terracotta,
.btn-emerald,
.btn-wireframe,
.btn-glass-subtle,
.btn-gold,
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    touch-action: manipulation;
    transition: var(--transition);
}

.btn-terracotta {
    background-color: var(--color-terracotta);
    color: #fff;
    letter-spacing: 0.12em;
    box-shadow: var(--shadow-btn-terracotta);
}

.btn-terracotta:hover {
    background-color: var(--color-terracotta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 80, 40, 0.45);
}

.btn-terracotta:active {
    transform: translateY(0);
}

.btn-emerald {
    padding: 14px 24px;
    border-radius: var(--radius-md);
    background-color: var(--color-emerald);
    color: #fff;
    letter-spacing: 0.08em;
}

.btn-emerald:hover {
    background-color: var(--color-emerald-hover);
    transform: translateY(-2px);
}

.btn-wireframe {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: #fff;
    font-weight: 600;
}

.btn-wireframe:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
}

.btn-glass-subtle {
    min-height: 44px;
    padding: 12px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.btn-glass-subtle:hover {
    background: var(--bg-main);
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--color-terracotta);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
    color: var(--bg-dark);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 197, 148, 0.45);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 12.5px;
    letter-spacing: 0.06em;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Modificateurs de taille et de forme */
.btn-terracotta.btn-sm {
    min-height: 40px;
    padding: 9px 18px;
    font-size: 11px;
}

.btn-square {
    border-radius: var(--radius-sm);
}

.btn-md {
    min-height: 44px;
    padding: 12px 24px;
}


/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: clamp(14px, 2vw, 20px) 0;
    background: linear-gradient(to bottom, rgba(10, 9, 8, 0.92) 0%, rgba(10, 9, 8, 0.45) 60%, rgba(10, 9, 8, 0) 100%);
    transition: all 0.4s ease;
}

.header.is-scrolled {
    padding: 12px 0;
    border-bottom: 1px solid rgba(230, 197, 148, 0.2);
    background: rgba(10, 9, 8, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--color-gold);
    border-radius: 50%;
    background: var(--bg-dark);
    color: var(--color-gold);
    box-shadow: var(--shadow-gold);
    transition: transform 0.4s ease;
}

.logo-group:hover .logo-icon-wrap {
    transform: scale(1.06) rotate(30deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
}

.logo-subtitle {
    margin-top: 3px;
    font-size: 8.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--color-gold);
    opacity: 0.85;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: clamp(14px, 1.8vw, 26px);
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 4px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.82);
    transition: all 0.25s ease;
}

.nav-item:hover {
    color: var(--color-gold);
}

.nav-item.is-active {
    color: #FFF1D6;
    text-shadow: 0 0 12px rgba(230, 197, 148, 0.4);
}

.nav-item.is-active .nav-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 8px var(--color-gold);
}

.nav-item.is-active::after {
    content: '';
    position: absolute;
    right: 4px;
    bottom: 0;
    left: 4px;
    height: 2.5px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    box-shadow: 0 0 10px var(--color-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-pill-btn,
.btn-header-reserve {
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.lang-pill-btn {
    display: inline-flex;
    padding: 7px 14px;
    border: 1px solid var(--border-gold);
    background: rgba(255, 255, 255, 0.06);
    letter-spacing: 0.06em;
}

.lang-pill-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-gold);
}

.btn-header-reserve {
    display: none;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    letter-spacing: 0.08em;
}

.btn-header-reserve:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

@media (min-width: 640px) {
    .btn-header-reserve { display: inline-flex; }
}

.burger-menu {
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    padding: 3px 0;
    background: transparent;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .burger-menu { display: none; }
}

.burger-line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--color-sand);
    transition: 0.3s;
}

.burger-menu.is-active .burger-line:nth-child(1) {
    background: var(--color-terracotta);
    transform: translateY(7px) rotate(45deg);
}

.burger-menu.is-active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.is-active .burger-line:nth-child(3) {
    background: var(--color-terracotta);
    transform: translateY(-7px) rotate(-45deg);
}


/* --------------------------------------------------------------------------
   6. MENU MOBILE (DRAWER)
   -------------------------------------------------------------------------- */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    height: 100dvh;
    padding: clamp(16px, 4vw, 28px);
    background: var(--bg-dark);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(230, 197, 148, 0.2);
}

.btn-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-gold);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: scale(1.05);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    background: #23382B;
    border-color: var(--border-gold);
    color: #FFF1D6;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(230, 197, 148, 0.2);
}


/* --------------------------------------------------------------------------
   7. HERO CINÉMATIQUE
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100svh;
    padding-top: clamp(90px, 12vw, 130px);
    padding-bottom: clamp(24px, 4vw, 40px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #000;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 17, 14, 1) 0%, rgba(14, 17, 14, 0.4) 50%, rgba(14, 17, 14, 0.8) 100%);
}

.hero-content {
    z-index: 10;
    max-width: 1040px;
    margin: auto;
    padding: 20px clamp(16px, 3vw, 24px);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: clamp(18px, 4vw, 32px);
    padding: 6px 16px;
    border: 1px solid rgba(230, 197, 148, 0.3);
    border-radius: var(--radius-full);
    background: rgba(17, 16, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: clamp(9px, 2vw, 11px);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.pulse-dot {
    position: relative;
    display: inline-flex;
    width: 8px;
    height: 8px;
    margin-left: 2px;
}

.pulse-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #C87D55;
    opacity: 0.75;
    animation: ping 1.5s infinite;
}

.pulse-core {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
}

.hero-title {
    margin-bottom: clamp(14px, 3vw, 24px);
    font-size: clamp(2.1rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    max-width: 820px;
    margin: 0 auto clamp(24px, 4vw, 36px);
    font-size: clamp(0.95rem, 1.8vw, 1.25rem);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
        align-items: center;
    }
}

.hero-footer {
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.seq-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(230, 197, 148, 0.25);
    border-radius: var(--radius-full);
    background: rgba(17, 16, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.85);
    font-family: monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.scroll-prompt {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
    .scroll-prompt { display: flex; }
}

.media-toggles {
    display: flex;
    gap: 8px;
}

.media-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(230, 197, 148, 0.25);
    border-radius: 50%;
    background: rgba(17, 16, 14, 0.85);
    color: var(--color-gold);
    cursor: pointer;
}


/* --------------------------------------------------------------------------
   8. BANDEAUX DE CONFIANCE — 3 VARIANTES
   .trust-card-wrapper : carte blanche 6 encarts (accueil)
   .trust-bar          : bandeau sombre en flux libre (pages intérieures)
   .trust-strip        : bandeau clair en grille 4 colonnes (contact)
   Les enfants sont scopés : sans cela, les trois définitions de
   .trust-grid / .trust-item / .trust-icon-box se neutralisent.
   -------------------------------------------------------------------------- */
.trust-bar-section {
    position: relative;
    z-index: 20;
    margin-top: clamp(-24px, -3vw, -36px);
    padding-bottom: clamp(24px, 4vw, 36px);
}

.trust-card-wrapper {
    padding: clamp(20px, 3vw, 28px) clamp(16px, 2.5vw, 24px);
    border: 1px solid var(--border-light);
    border-radius: clamp(16px, 3vw, 24px);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.trust-card-wrapper .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.trust-card-wrapper .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-card-wrapper .trust-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    border-radius: var(--radius-md);
    background: var(--color-terracotta-light);
    color: var(--color-terracotta);
}

@media (min-width: 640px) and (max-width: 1023px) {
    .trust-card-wrapper .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .trust-card-wrapper .trust-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0;
    }

    .trust-card-wrapper .trust-item {
        padding: 0 12px;
    }

    .trust-card-wrapper .trust-item:not(:last-child) {
        border-right: 1px solid rgba(0, 0, 0, 0.06);
    }
}

.trust-title {
    margin-bottom: 3px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.trust-desc {
    font-size: 11px;
    line-height: 1.3;
    color: var(--text-muted);
}

.trust-bar {
    padding: 14px 0;
    border-bottom: 1px solid rgba(230, 197, 148, 0.15);
    background: var(--bg-dark-strip);
}

.trust-bar .trust-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 16px 24px;
}

.trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.trust-strip {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-main);
}

.trust-strip .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-strip .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--text-primary);
}

.trust-strip .trust-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-terracotta);
}

@media (max-width: 900px) {
    .trust-strip .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .trust-strip .trust-grid { grid-template-columns: 1fr; }
}


/* --------------------------------------------------------------------------
   9. PRESTATIONS & CATALOGUE D'EXCURSIONS (ACCUEIL)
   -------------------------------------------------------------------------- */
.filter-tabs-wrapper {
    margin-bottom: clamp(28px, 4vw, 48px);
    padding-bottom: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.filter-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.filter-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    width: fit-content;
    min-width: max-content;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .filter-tabs {
        justify-content: center;
        width: auto;
    }
}

.filter-tab {
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.2s;
}

.filter-tab:hover,
.filter-tab.is-active {
    background: var(--color-emerald);
    border-color: var(--color-emerald);
    color: #fff;
}

.prestations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 32px);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .prestations-grid { grid-template-columns: repeat(2, 1fr); }

    .prestations-grid article:last-child {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .prestations-grid { grid-template-columns: repeat(3, 1fr); }
}

.card-prestation {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card-prestation:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 80, 40, 0.3);
    box-shadow: var(--shadow-hover);
}

.card-media {
    position: relative;
    height: clamp(200px, 25vw, 240px);
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-prestation:hover .card-media img {
    transform: scale(1.06);
}

.card-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
}

.badge-bestseller,
.badge-vip-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: var(--shadow-xs);
}

.badge-bestseller { background: var(--color-terracotta); }
.badge-vip-pill   { background: var(--color-emerald); }

.badge-rating {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 700;
}

.pills-bottom-media {
    position: absolute;
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: flex;
    justify-content: space-between;
}

.media-pill {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: clamp(18px, 3vw, 24px);
}

.card-subhead {
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-terracotta);
}

.card-title {
    margin-bottom: 8px;
    font-size: clamp(20px, 2.4vw, 23px);
    font-weight: 700;
    line-height: 1.25;
}

.card-desc {
    margin-bottom: 16px;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.55;
    color: var(--text-secondary);
}

.card-check-list {
    margin-top: auto;
    margin-bottom: 18px;
    padding-top: 12px;
    border-top: 1px solid #F0EEEA;
    font-size: 12px;
    color: var(--text-secondary);
}

.card-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.check-icon {
    flex-shrink: 0;
    color: var(--color-emerald);
    font-weight: bold;
}

.card-pricing-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-main);
}

.card-pricing-box .price-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.price-value {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.price-unit {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
}

.card-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.reassurance-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: clamp(32px, 5vw, 48px);
    padding: clamp(18px, 3vw, 24px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #fff;
}

@media (min-width: 768px) {
    .reassurance-bar { grid-template-columns: repeat(3, 1fr); }
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reassurance-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
}


/* --------------------------------------------------------------------------
   10. HISTOIRE & PATRIMOINE DU HAUT ATLAS
   -------------------------------------------------------------------------- */
.story-section {
    background-color: var(--bg-sand);
    border-top: 1px solid var(--border-light);
}

.story-grid-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
    align-items: center;
    margin-bottom: clamp(40px, 6vw, 64px);
}

@media (min-width: 1024px) {
    .story-grid-top { grid-template-columns: 1.1fr 0.9fr; }
}

.story-p {
    margin-bottom: 16px;
    font-size: clamp(14px, 1.5vw, 15.5px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
}

.stats-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

@media (min-width: 640px) {
    .stats-cards-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

.stat-badge-box {
    padding: 12px 8px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: #fff;
    text-align: center;
    box-shadow: var(--shadow-xs);
}

.stat-badge-num {
    margin-bottom: 3px;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    line-height: 1;
    color: var(--color-terracotta);
}

.stat-badge-lbl {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.story-featured-media {
    position: relative;
    aspect-ratio: 4 / 3;
    border: 4px solid #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.story-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-media-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(16px, 3vw, 24px);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #fff;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}

.pillar-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.pillar-img-wrap {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.pillar-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pillar-body {
    flex-grow: 1;
    padding: 18px;
}

.pillar-title {
    margin-bottom: 6px;
    font-size: 19px;
    font-weight: 700;
}

.pillar-desc {
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-secondary);
}


/* --------------------------------------------------------------------------
   11. AVIS CLIENTS
   -------------------------------------------------------------------------- */
.reviews-section {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-light);
}

.reviews-summary-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: clamp(28px, 4vw, 44px);
    padding: clamp(20px, 3.5vw, 32px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #fff;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .reviews-summary-card {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.rating-stars-gold {
    display: inline-flex;
    gap: 2px;
    color: #F59E0B;
    font-size: 18px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 2.5vw, 24px);
}

@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 80, 40, 0.25);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border: 2px solid var(--color-sand);
    border-radius: 50%;
    object-fit: cover;
}

.review-author {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    font-size: 11.5px;
    color: var(--text-muted);
}

.review-type-pill {
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: rgba(42, 72, 57, 0.1);
    color: var(--color-emerald);
    font-size: 10px;
    font-weight: 700;
}

.review-text {
    flex-grow: 1;
    margin-bottom: 16px;
    font-size: 13.5px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-secondary);
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #F0EEEA;
    font-size: 11px;
    color: var(--text-muted);
}


/* --------------------------------------------------------------------------
   12. FAQ ACCUEIL (ACCORDÉON)
   -------------------------------------------------------------------------- */
.faq-section {
    background-color: var(--bg-sand);
    border-top: 1px solid var(--border-light);
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-search-box {
    position: relative;
    margin-bottom: clamp(24px, 3.5vw, 36px);
}

.faq-search-input {
    width: 100%;
    min-height: 50px;
    padding: 14px 20px 14px 44px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.faq-search-input:focus {
    border-color: var(--color-emerald);
    box-shadow: var(--shadow-sm);
}

.faq-search-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    color: var(--text-muted);
    transform: translateY(-50%);
    pointer-events: none;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.faq-item.is-open {
    border-color: rgba(42, 72, 57, 0.35);
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-height: 56px;
    padding: clamp(14px, 2.5vw, 18px) clamp(16px, 3vw, 24px);
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.faq-question-title {
    font-size: clamp(16px, 2.2vw, 19px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
}

.faq-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-main);
    color: var(--text-secondary);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.is-open .faq-icon-circle {
    background: var(--color-emerald);
    color: #fff;
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    padding: 0 clamp(16px, 3vw, 24px) clamp(16px, 2.5vw, 20px);
    border-top: 1px solid #F2EEE9;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-secondary);
}

.faq-item.is-open .faq-content {
    display: block;
}

.faq-wa-card {
    margin-top: clamp(32px, 5vw, 48px);
    padding: clamp(20px, 3.5vw, 32px);
    border: 1px solid rgba(42, 72, 57, 0.2);
    border-radius: var(--radius-xl);
    background: #EAF4EE;
    text-align: center;
}


/* --------------------------------------------------------------------------
   13. CALLOUT & FOOTER
   -------------------------------------------------------------------------- */
.callout-banner {
    padding: clamp(36px, 6vw, 56px) 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #1C201C;
    color: #fff;
    text-align: center;
}

.footer {
    padding: clamp(48px, 8vw, 72px) 0 clamp(80px, 10vw, 32px);
    border-top: 1px solid var(--border-dark);
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
    }
}

.footer-col-title {
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 13.5px;
}

.footer-links a:hover {
    padding-left: 4px;
    color: var(--color-gold);
}

.footer-wa-box {
    margin-top: 10px;
    padding: 14px;
    border: 1px solid rgba(230, 197, 148, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
}


/* --------------------------------------------------------------------------
   14. STICKY BAR, WHATSAPP FLOTTANT & MODALES GÉNÉRIQUES
   Deux boutons WhatsApp flottants coexistent : n'en placer qu'un par page.
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 890;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(14, 17, 14, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 1024px) {
    .mobile-sticky-bar { display: none; }
}

.wa-float-btn {
    position: fixed;
    right: 16px;
    bottom: calc(76px + env(safe-area-inset-bottom));
    z-index: 899;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}

.wa-float-btn:hover {
    transform: scale(1.1);
}

@media (min-width: 1024px) {
    .wa-float-btn {
        right: 24px;
        bottom: 28px;
        width: 58px;
        height: 58px;
    }
}

.floating-wa-badge {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    background: #25D366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease;
}

.floating-wa-badge:hover {
    transform: scale(1.05);
}

/* 14.1 Modale générique */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(14, 17, 14, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    padding: clamp(20px, 4vw, 32px);
    border-radius: var(--radius-xl);
    background: #fff;
    overflow-y: auto;
    transform: scale(0.95);
    transition: 0.3s ease;
}

.modal-overlay.is-open .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-main);
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    transition: border-color 0.2s, background 0.2s;
}

.form-input:focus {
    border-color: var(--color-terracotta);
    background: #fff;
}

/* 14.2 Bloc paiement dans la modale générique */
.modal-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(42, 72, 57, 0.08);
    color: var(--color-emerald);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.modal-price-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-sand);
}

.modal-price-label {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
}

.modal-price-detail {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

.modal-price-val {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-terracotta);
}

.payment-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.payment-badge-secure {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    color: var(--color-emerald);
}

.payment-buttons-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.btn-paypal-express {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    padding: 14px 20px;
    border: 1.5px solid #E0A800;
    border-radius: var(--radius-md);
    background: #FFC439;
    color: #111;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 196, 57, 0.4);
    transition: all 0.25s ease;
}

.btn-paypal-express:hover {
    background: #F4B924;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 196, 57, 0.55);
}

.btn-paypal-express:active {
    transform: translateY(0);
}

.paypal-badge-rec {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 8px;
    border-bottom-left-radius: 6px;
    background: #003087;
    color: #fff;
    font-size: 8.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-whatsapp-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 46px;
    padding: 13px 20px;
    border-radius: var(--radius-md);
    background: var(--color-terracotta);
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: var(--shadow-btn-terracotta);
    transition: all 0.25s ease;
}

.btn-whatsapp-reserve:hover {
    background: var(--color-terracotta-hover);
    transform: translateY(-2px);
}

.btn-card-pay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    background: var(--text-primary);
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-card-pay:hover {
    background: #2E2A28;
}

.modal-security-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    font-size: 11px;
    color: var(--text-muted);
}

/* 14.3 Simulation PayPal & voucher (variante générique) */
.paypal-checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.paypal-checkout-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.paypal-box-card {
    width: 100%;
    max-width: 460px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.paypal-box-card .paypal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ECECEC;
}

.paypal-amount-tag {
    font-size: 20px;
    font-weight: 800;
    color: #003087;
}

.paypal-btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    background: #0070BA;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.paypal-btn-action:hover {
    background: #005EA6;
}

.voucher-card {
    margin: 16px 0;
    padding: 20px;
    border: 2px dashed var(--color-terracotta);
    border-radius: var(--radius-lg);
    background: var(--bg-main);
    text-align: center;
}


/* --------------------------------------------------------------------------
   15. BANNIÈRE DE PAGE & FIL D'ARIANE
   Hauteur pilotée par modificateur : défaut (Blog), .is-tall (À propos,
   Galerie), .is-compact (Contact).
   -------------------------------------------------------------------------- */
.page-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: clamp(120px, 14vw, 160px) 20px clamp(48px, 6vw, 75px);
    border-bottom: 1px solid rgba(230, 197, 148, 0.2);
    background: var(--bg-dark);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-banner.is-tall {
    min-height: 440px;
    padding-bottom: 80px;
}

.page-banner.is-compact {
    min-height: 400px;
    padding-bottom: 70px;
}

.banner-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    filter: brightness(0.85);
    transform: scale(1.02);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 9, 8, 0.7) 0%, rgba(10, 9, 8, 0.32) 100%);
}

/* Élève tout le contenu au-dessus des calques de fond */
.page-banner > *:not(.banner-bg-img):not(.banner-overlay) {
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
    color: var(--color-gold);
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #fff;
}

.banner-badge-gold,
.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    background: rgba(230, 197, 148, 0.15);
    color: var(--color-gold);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.banner-title {
    margin: 8px 0 16px;
    font-size: clamp(32px, 5.5vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

.page-banner.is-compact .banner-title {
    font-size: clamp(30px, 4.5vw, 48px);
}

.banner-desc,
.banner-subtitle {
    max-width: 680px;
    margin: 0 auto;
    font-size: clamp(14px, 1.8vw, 17px);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

.banner-subtitle {
    max-width: 720px;
    margin-bottom: 24px;
}

.banner-stats-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 680px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.8);
}

.banner-stats-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


/* --------------------------------------------------------------------------
   16. GRILLE D'EXCURSIONS DÉTAILLÉES
   -------------------------------------------------------------------------- */
.filter-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: clamp(32px, 5vw, 48px);
}

.filter-btn {
    padding: 10px 22px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: var(--shadow-xs);
    transition: all 0.25s ease;
}

/* Les deux conventions d'état sont acceptées */
.filter-btn:hover,
.filter-btn.active,
.filter-btn.is-active {
    background: var(--color-emerald);
    border-color: var(--color-emerald);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: clamp(24px, 3.5vw, 36px);
}

.card-exc {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
}

.card-exc:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card-exc-media {
    position: relative;
    height: 240px;
    background: var(--text-primary);
    overflow: hidden;
}

.card-exc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-exc:hover .card-exc-media img {
    transform: scale(1.06);
}

.card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--color-terracotta);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card-rating {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 700;
}

.card-exc-info-bar {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    justify-content: space-between;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    background: rgba(10, 9, 8, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11.5px;
}

.card-exc-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
}

.card-exc-title {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.card-exc-desc {
    margin-bottom: 18px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.card-exc-inclusions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 12.5px;
    color: var(--text-secondary);
}

.card-exc-inc-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-exc-inc-item svg {
    flex-shrink: 0;
    color: var(--color-emerald);
}

.card-exc-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.card-exc-price-box .price-val {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-terracotta);
}

.card-exc-price-box .price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* --------------------------------------------------------------------------
   17. CALCULATEUR DE DEVIS INSTANTANÉ
   -------------------------------------------------------------------------- */
.calculator-section {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-sand);
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
    .calc-wrapper {
        grid-template-columns: 1.3fr 0.9fr;
        gap: 48px;
    }
}

.calc-step-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-emerald);
}

.calc-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.calc-radio-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.25s ease;
}

.calc-radio-card.is-selected {
    border-color: var(--color-terracotta);
    background: rgba(184, 80, 40, 0.04);
    box-shadow: 0 0 0 1px var(--color-terracotta);
}

.addon-toggle-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-main);
    cursor: pointer;
    transition: 0.2s;
}

.addon-toggle-box:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.2);
}

.addon-toggle-box input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-emerald);
    cursor: pointer;
}

.summary-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(24px, 3.5vw, 36px);
    border: 1px solid rgba(230, 197, 148, 0.3);
    border-radius: var(--radius-xl);
    background: var(--bg-dark);
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
}

.summary-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


/* --------------------------------------------------------------------------
   18. PAGE À PROPOS
   -------------------------------------------------------------------------- */
.about-heritage-section {
    padding: clamp(40px, 6vw, 80px) 0;
}

.about-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid-2col { grid-template-columns: 1.1fr 0.9fr; }
}

.about-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    background: rgba(230, 197, 148, 0.12);
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-lead-p {
    margin-bottom: 18px;
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-primary);
}

.about-body-p {
    margin-bottom: 16px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-founder-quote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 3px solid var(--color-terracotta);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--bg-sand);
    font-size: 14.5px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
}

.about-image-stack {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-stack img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 480px;
    object-fit: cover;
}

.about-floating-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(230, 197, 148, 0.3);
    border-radius: var(--radius-lg);
    background: rgba(10, 9, 8, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
}

/* 18.1 Chiffres clés */
.stats-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(14px, 2.5vw, 24px);
    margin: clamp(32px, 5vw, 56px) 0;
}

@media (min-width: 768px) {
    .stats-showcase-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-showcase-card {
    padding: clamp(18px, 3vw, 26px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: #fff;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-showcase-number {
    margin-bottom: 6px;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    line-height: 1;
    color: var(--color-terracotta);
}

.stat-showcase-label {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
}

/* 18.2 Valeurs */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(18px, 3vw, 28px);
    margin-top: 32px;
}

.value-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(24px, 3.5vw, 32px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(42, 72, 57, 0.3);
    box-shadow: var(--shadow-lg);
}

.value-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(42, 72, 57, 0.08);
    color: var(--color-emerald);
}

.value-card-title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.value-card-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* 18.3 Chronologie */
.timeline-track {
    position: relative;
    max-width: 860px;
    margin: 40px auto 0;
    padding-left: 30px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    width: 2px;
    background: rgba(42, 72, 57, 0.2);
}

.timeline-step {
    position: relative;
    margin-bottom: 36px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 4px;
    left: -30px;
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--color-emerald);
    box-shadow: 0 0 0 2px rgba(42, 72, 57, 0.3);
}

.timeline-card {
    padding: 20px 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-xs);
}

.timeline-year-tag {
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-terracotta);
}

.timeline-heading {
    margin-bottom: 6px;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--text-primary);
}

.timeline-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* 18.4 Flotte de véhicules */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.fleet-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(230, 197, 148, 0.25);
    border-radius: var(--radius-xl);
    background: var(--bg-dark);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.fleet-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.fleet-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-img-wrap img {
    transform: scale(1.05);
}

.fleet-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 22px;
}

.fleet-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0 16px;
}

.fleet-pill {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 10.5px;
    font-weight: 600;
}

/* 18.5 Équipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.team-card {
    padding: 24px 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #fff;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 14px;
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    object-fit: cover;
}

.team-name {
    margin-bottom: 2px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.team-role {
    margin-bottom: 8px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-emerald);
}

.team-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* 18.6 FAQ en grille (non accordéon) */
.faq-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.faq-item-about {
    padding: 22px 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-xs);
}

.faq-item-about .faq-q-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.faq-a-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}


/* --------------------------------------------------------------------------
   19. PAGE GALERIE
   -------------------------------------------------------------------------- */

/* 19.1 Filtres (scopés : .filter-btn existe déjà pour les excursions) */
.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.gallery-filter-bar .filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-color: rgba(0, 0, 0, 0.08);
    font-size: 12.5px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    transition: all 0.2s ease;
}

.gallery-filter-bar .filter-btn:hover:not(.active):not(.is-active) {
    background: #F0ECE4;
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
}

.filter-count {
    display: inline-block;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.08);
    font-size: 10.5px;
    font-weight: 700;
}

.filter-btn.active .filter-count,
.filter-btn.is-active .filter-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* 19.2 Grille de vignettes */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.gallery-card {
    position: relative;
    height: 310px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: #1A1817;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out), opacity 0.3s;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.07);
}

.gallery-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.92) 100%);
    transition: opacity 0.3s ease;
}

.gallery-badge-top {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid rgba(230, 197, 148, 0.3);
    border-radius: var(--radius-full);
    background: rgba(10, 9, 8, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-gold);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-zoom-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.25s ease;
}

.gallery-card:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.gallery-info {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 16px 18px;
    color: #fff;
}

.gallery-location-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-gold);
}

.gallery-title {
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.gallery-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    overflow: hidden;
    font-size: 12.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
}

/* 19.3 Séquences drone 4K */
.reel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.reel-card {
    position: relative;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: #000;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.reel-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: transform 0.6s ease, opacity 0.3s;
}

.reel-card:hover .reel-thumb {
    transform: scale(1.05);
    opacity: 0.9;
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: var(--radius-full);
    background: var(--color-terracotta);
    color: #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 6px 20px rgba(184, 80, 40, 0.6);
    transition: transform 0.25s ease, background 0.2s;
}

.reel-card:hover .reel-play-btn {
    background: var(--color-terracotta-hover);
    transform: translate(-50%, -50%) scale(1.12);
}

.reel-duration-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 8px;
    border-radius: var(--radius-xs);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.reel-info {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: #fff;
}

/* 19.4 Visionneuse plein écran */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 9, 8, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox-modal.is-open {
    display: flex;
}

.lightbox-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1080px;
    max-height: 92vh;
    border: 1px solid rgba(230, 197, 148, 0.25);
    border-radius: var(--radius-lg);
    background: #141312;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.lightbox-media-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60vh;
    max-height: 520px;
    background: #080807;
    overflow: hidden;
}

.lightbox-media-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.2s;
}

.lightbox-nav-btn:hover {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

.lightbox-nav-prev { left: 16px; }
.lightbox-nav-next { right: 16px; }

.lightbox-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.lightbox-close-btn:hover {
    background: #E53E3E;
}

.lightbox-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #141312;
}

.lightbox-title {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.lightbox-caption {
    max-width: 600px;
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.lightbox-badges-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.lightbox-badge {
    padding: 3px 8px;
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 700;
}

/* 19.5 Comparateur avant / après */
.comparison-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    margin-top: 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    user-select: none;
    box-shadow: var(--shadow-lg);
}

.comparison-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-overlay {
    position: absolute;
    inset: 0;
    width: 50%;
    border-right: 3px solid var(--color-gold);
    overflow: hidden;
    transition: width 0.05s ease;
}

.comparison-overlay img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.comparison-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--color-gold);
    color: #111;
    transform: translate(-50%, -50%);
    cursor: ew-resize;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.comparison-label {
    position: absolute;
    bottom: 16px;
    z-index: 5;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.comparison-label-left  { left: 16px; }
.comparison-label-right { right: 16px; }


/* --------------------------------------------------------------------------
   20. PAGE BLOG
   -------------------------------------------------------------------------- */

/* 20.1 Recherche & filtres */
.blog-controls-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 36px;
    padding: 20px 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.search-box-wrap {
    position: relative;
    flex: 1;
    min-width: 240px;
}

.search-icon-svg {
    position: absolute;
    top: 50%;
    left: 14px;
    color: var(--text-muted);
    transform: translateY(-50%);
    pointer-events: none;
}

.blog-search-input {
    width: 100%;
    padding: 11px 16px 11px 40px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-full);
    background: var(--bg-main);
    font-family: inherit;
    font-size: 13.5px;
    color: var(--text-primary);
    transition: all 0.2s;
}

.blog-search-input:focus {
    border-color: var(--color-terracotta);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 80, 40, 0.12);
}

.blog-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.b-filter-btn {
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-full);
    background: var(--bg-main);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.b-filter-btn:hover {
    background: #EBE5DB;
    color: var(--text-primary);
}

.b-filter-btn.active,
.b-filter-btn.is-active {
    background: var(--color-emerald);
    border-color: var(--color-emerald);
    color: #fff;
    box-shadow: 0 4px 12px rgba(42, 72, 57, 0.25);
}

/* 20.2 Article à la une */
.featured-article-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    margin-bottom: 44px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 880px) {
    .featured-article-card { grid-template-columns: 1fr; }
}

.featured-article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.feat-img-wrap {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.feat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.featured-article-card:hover .feat-img {
    transform: scale(1.05);
}

.feat-badge-top {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--color-terracotta);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(184, 80, 40, 0.4);
}

.feat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 4vw, 40px);
}

.feat-title {
    margin: 0 0 14px;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

.feat-excerpt {
    margin-bottom: 22px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* 20.3 Métadonnées & auteur */
.article-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
}

.article-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}

.author-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 38px;
    height: 38px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.author-role {
    margin: 0;
    font-size: 11px;
    color: var(--text-muted);
}

/* 20.4 Grille d'articles — scopée pour ne pas heurter les cartes prestation */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 28px;
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 80, 40, 0.25);
    box-shadow: var(--shadow-lg);
}

.blog-card .card-img-wrap {
    position: relative;
    height: 220px;
    background: #111;
    overflow: hidden;
}

.blog-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.blog-card:hover .card-img {
    transform: scale(1.08);
}

.card-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 10px;
    border: 1px solid rgba(230, 197, 148, 0.3);
    border-radius: var(--radius-full);
    background: rgba(10, 9, 8, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-gold);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.blog-card .card-title {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    transition: color 0.2s;
}

.blog-card:hover .card-title {
    color: var(--color-terracotta);
}

.blog-card .card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0 0 18px;
    overflow: hidden;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.blog-card .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-terracotta);
    transition: transform 0.2s;
}

.blog-card:hover .read-more-link {
    transform: translateX(3px);
}

/* 20.5 Lecteur d'article */
.article-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 9, 8, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-y: auto;
}

.article-modal-overlay.is-open {
    display: flex;
}

.article-modal-card {
    position: relative;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    border: 1px solid rgba(230, 197, 148, 0.3);
    border-radius: var(--radius-xl);
    background: var(--bg-main);
    color: var(--text-primary);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalFadeIn 0.3s ease;
}

.modal-hero-cover {
    position: relative;
    width: 100%;
    height: 320px;
    background: #111;
    overflow: hidden;
}

.modal-hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-cover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(10, 9, 8, 0.85) 100%);
}

.modal-hero-text {
    position: absolute;
    right: 28px;
    bottom: 24px;
    left: 28px;
    color: #fff;
}

.modal-close-round {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-close-round:hover {
    background: #E53E3E;
}

.modal-content-body {
    padding: 32px 36px;
}

.article-body-text {
    font-size: 15.5px;
    line-height: 1.75;
    color: #2D2A26;
}

.article-body-text h3 {
    margin: 28px 0 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-emerald);
}

.article-body-text p {
    margin-bottom: 16px;
}

.article-body-text ul {
    margin-bottom: 18px;
    padding-left: 20px;
    list-style: disc;
}

.article-body-text li {
    margin-bottom: 8px;
}

.guide-alert-box {
    margin: 24px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--color-terracotta);
    border-radius: var(--radius-xs);
    background: #FFF7ED;
    font-size: 14px;
    font-weight: 600;
    color: #9A3412;
}

.modal-cta-box {
    margin-top: 32px;
    padding: 24px;
    border: 1.5px dashed var(--color-terracotta);
    border-radius: var(--radius-lg);
    background: #fff;
    text-align: center;
}


/* --------------------------------------------------------------------------
   21. PAGE CONTACT
   -------------------------------------------------------------------------- */
.contact-main-section {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 980px) {
    .contact-layout-grid { grid-template-columns: 1fr; }
}

.contact-left-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 21.1 Coordonnées */
.contact-card {
    padding: 28px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.contact-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-sand);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
}

.coord-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.coord-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.coord-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-top: 2px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-main);
    color: var(--color-terracotta);
}

.coord-info h4 {
    margin: 0 0 3px;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.coord-info p {
    margin: 0;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text-primary);
}

.coord-info a {
    color: var(--color-emerald);
    transition: color 0.2s;
}

.coord-info a:hover {
    color: var(--color-terracotta);
    text-decoration: underline;
}

/* 21.2 Carte WhatsApp premium */
.luxury-wa-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(230, 197, 148, 0.25);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #1C1A19 0%, #12100E 100%);
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.luxury-wa-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.wa-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 4px 10px;
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: var(--radius-full);
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Scopé : .pulse-dot désigne la pastille dorée du hero par défaut */
.wa-status-pill .pulse-dot {
    width: 7px;
    height: 7px;
    margin-left: 0;
    border-radius: 50%;
    background: #25D366;
    animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70%  { transform: scale(1);    box-shadow: 0 0 0 7px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.luxury-wa-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.luxury-wa-desc {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.btn-wa-direct {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: var(--radius-sm);
    background: #25D366;
    color: #fff;
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: all 0.25s ease;
}

.btn-wa-direct:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* 21.3 Zones de prise en charge */
.pickup-coverage-card {
    padding: 22px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg-main);
}

.pickup-coverage-title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-emerald);
}

.pickup-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-secondary);
}

.pickup-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pickup-list li::before {
    content: '✓';
    color: var(--color-terracotta);
    font-weight: 800;
}

/* 21.4 Formulaire de devis */
.contact-form-card {
    padding: clamp(24px, 5vw, 42px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.form-header-badge {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-terracotta);
}

.form-header-title {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
}

.form-header-desc {
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .contact-form-grid { grid-template-columns: 1fr; }
}

.form-group-full {
    grid-column: 1 / -1;
}

.field-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.field-input,
.field-select,
.field-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(28, 26, 25, 0.15);
    border-radius: var(--radius-sm);
    background: #FDFBF8;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    border-color: var(--color-terracotta);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 80, 40, 0.12);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 24px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: var(--color-terracotta);
}

.btn-submit-devis {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 30px;
    border-radius: var(--radius-sm);
    background-color: var(--color-terracotta);
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(184, 80, 40, 0.3);
    transition: all 0.25s ease;
}

.btn-submit-devis:hover {
    background-color: var(--color-terracotta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 80, 40, 0.4);
}

.form-success-banner {
    display: none;
    margin-bottom: 24px;
    padding: 28px;
    border: 1px solid #A7F3D0;
    border-radius: var(--radius-lg);
    background: #ECFDF5;
    text-align: center;
}

.form-success-banner.is-active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.success-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #10B981;
    color: #fff;
    font-size: 24px;
}

/* 21.5 Carte interactive */
.map-section {
    padding: 60px 20px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-sand);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-header {
    margin-bottom: 32px;
    text-align: center;
}

.map-wrapper {
    position: relative;
    height: 420px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #EAE6DF;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-floating-card {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    max-width: 280px;
    padding: 18px 22px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
    .map-wrapper { height: 320px; }

    .map-floating-card {
        position: static;
        max-width: 100%;
        margin-top: 16px;
    }
}

.map-float-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
}

.map-float-desc {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-secondary);
}

.map-float-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-terracotta);
}

/* 21.6 FAQ contact (accordéon, variante pilule) */
.faq-contact-section {
    max-width: 920px;
    margin: 0 auto;
    padding: 70px 20px;
}

.faq-header {
    margin-bottom: 36px;
    text-align: center;
}

.faq-contact-section .faq-search-box {
    max-width: 580px;
    margin: 0 auto 30px;
}

.faq-contact-section .faq-search-input {
    padding: 14px 18px 14px 44px;
    border-color: rgba(28, 26, 25, 0.15);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.faq-contact-section .faq-search-input:focus {
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(184, 80, 40, 0.15);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-accordion .faq-item {
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s;
}

.faq-accordion .faq-item.is-open {
    border-color: rgba(184, 80, 40, 0.4);
}

.faq-accordion .faq-trigger {
    min-height: 0;
    padding: 18px 22px;
    gap: 16px;
    font-family: inherit;
}

.faq-q-title {
    margin: 0;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
}

.faq-icon-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: var(--bg-main);
    color: var(--text-secondary);
    transition: transform 0.25s ease, background-color 0.2s, color 0.2s;
}

.faq-accordion .faq-item.is-open .faq-icon-pill {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 14px 22px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.faq-accordion .faq-item.is-open .faq-answer {
    display: block;
}

/* 21.7 Bannière d'appel à l'action */
.callout-booking-banner {
    padding: 60px 20px;
    border-top: 1px solid rgba(230, 197, 148, 0.25);
    background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-hover) 100%);
    color: #fff;
    text-align: center;
}

.callout-container {
    max-width: 800px;
    margin: 0 auto;
}

.callout-title {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: #fff;
}

.callout-desc {
    margin: 0 0 28px;
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
}

.callout-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}


/* --------------------------------------------------------------------------
   22. MODALES RÉSERVATION, PAYPAL & BON D'ÉCHANGE (VARIANTE PAGES)
   -------------------------------------------------------------------------- */
.booking-modal-overlay,
.paypal-modal-overlay,
.voucher-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 9, 8, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-y: auto;
}

.booking-modal-overlay.is-open,
.paypal-modal-overlay.is-open,
.voucher-modal-overlay.is-open {
    display: flex;
}

.booking-modal-card,
.paypal-modal-card,
.voucher-modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: #fff;
    color: var(--text-primary);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: modalFadeIn 0.3s var(--ease-out);
}

/* 22.1 En-tête */
.bm-header,
.paypal-modal-card .paypal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 18px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-main);
}

.paypal-modal-card .paypal-header {
    align-items: center;
    padding: 20px 24px;
}

.bm-header-badge {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-emerald);
}

.bm-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.bm-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.bm-close-btn:hover {
    background: #E53E3E;
    color: #fff;
}

/* 22.2 Corps & champs */
.bm-body,
.paypal-body {
    padding: 24px;
}

.bm-form-group {
    margin-bottom: 14px;
}

.bm-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.bm-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    background: #FDFBF8;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bm-input:focus {
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(184, 80, 40, 0.12);
}

.bm-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .bm-grid-2 { grid-template-columns: 1fr; }
}

/* 22.3 Récapitulatif tarifaire */
.bm-summary-card {
    margin: 18px 0;
    padding: 14px 16px;
    border: 1px dashed rgba(184, 80, 40, 0.4);
    border-radius: var(--radius-md);
    background: var(--bg-sand);
}

.bm-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.bm-summary-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-terracotta);
}

/* 22.4 Boutons de paiement */
.bm-action-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-bm-paypal,
.btn-bm-card,
.btn-bm-whatsapp,
.paypal-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-bm-paypal {
    padding: 13px 18px;
    border: 1.5px solid #E0A800;
    background: #FFC439;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(255, 196, 57, 0.35);
}

.btn-bm-paypal:hover {
    background: #F4B924;
    transform: translateY(-1px);
}

.btn-bm-card {
    padding: 12px 18px;
    background: #111;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
}

.btn-bm-card:hover {
    background: #333;
}

.btn-bm-whatsapp {
    padding: 12px 18px;
    background: var(--color-emerald);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
}

.btn-bm-whatsapp:hover {
    background: var(--color-emerald-hover);
}

.paypal-submit-btn {
    width: 100%;
    padding: 14px;
    background: #0070BA;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.paypal-submit-btn:hover {
    background: #005EA6;
}

/* 22.5 Bon d'échange */
.voucher-header {
    padding: 28px 24px 18px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-main);
    text-align: center;
}

.voucher-badge-success {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #D1FAE5;
    color: #059669;
    font-size: 24px;
    font-weight: 800;
}

.voucher-title {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.voucher-sub {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.voucher-ticket {
    margin: 20px 24px 0;
    padding: 16px 20px;
    border: 1.5px dashed var(--color-terracotta);
    border-radius: var(--radius-md);
    background: #fff;
}

.voucher-ticket-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 12.5px;
}

.voucher-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.voucher-val {
    font-weight: 700;
    color: var(--text-primary);
}


/* --------------------------------------------------------------------------
   23. ACCESSIBILITÉ & MOUVEMENT RÉDUIT
   Le reset neutralise outline sur les contrôles : le focus clavier est
   rétabli ici, sans quoi la navigation au clavier est invisible.
   -------------------------------------------------------------------------- */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 2px solid var(--color-terracotta);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}