/* =========================================================================
   LUDOVIC COACHING — Style général
   Coach sportif pré & post-partum | Charenton-le-Pont
   ========================================================================= */

:root {
    --primary: #2B2B2B;
    --primary-dark: #1A1A1A;
    --accent: #B8926A;
    --accent-dark: #9A7552;
    --accent-light: #D4B594;
    --soft: #E9D5C4;
    --cream: #F8F4EF;
    --text: #2A2A2A;
    --text-muted: #6b6b6b;
    --light-bg: #FAF7F2;
    --white: #ffffff;

    --font-serif: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 2px 8px rgba(43, 43, 43, 0.06);
    --shadow-md: 0 10px 30px rgba(43, 43, 43, 0.1);
    --shadow-lg: 0 20px 60px rgba(43, 43, 43, 0.15);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-weight: 400;
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h1 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

a { color: var(--accent-dark); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--primary); }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-sm { padding: 40px 0; }
}

.overline {
    display: inline-block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    color: var(--accent-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}
.overline::before { content: "— "; }

.section-title {
    margin-bottom: 1rem;
}
.lead-custom {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.75;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-dark);
    color: var(--soft);
    font-size: 0.85rem;
}
.top-bar a { color: var(--soft); }
.top-bar a:hover { color: var(--accent-light); }

/* ===== NAVBAR ===== */
.main-navbar {
    background: rgba(255, 255, 255, 0.97);
    /* Important : pas de backdrop-filter ni transform ici.
       Sinon l'offcanvas-lg enfant est contraint dans le bbox de la navbar
       (contexte de positionnement nouveau → position:fixed trappé). */
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
    padding: 0.9rem 0;
    transition: all 0.3s ease;
}
.navbar-brand { display: flex; align-items: center; text-decoration: none; }
.brand-mark {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.01em;
}
.brand-tag {
    font-size: 0.72rem;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 2px;
}

.main-navbar .nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--primary) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}
.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 1rem; right: 1rem; bottom: 0.2rem;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }
.main-navbar .nav-link.active { color: var(--accent-dark) !important; }

.btn-cta {
    background: var(--primary);
    color: var(--white) !important;
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-cta:hover {
    background: var(--accent);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    padding: 0.8rem 0;
    border-radius: 8px;
    margin-top: 0.5rem !important;
}
.dropdown-item {
    padding: 0.55rem 1.3rem;
    font-size: 0.9rem;
    color: var(--primary);
}
.dropdown-item:hover {
    background: var(--cream);
    color: var(--accent-dark);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    letter-spacing: -0.025em;
}
.hero h1 .accent-word {
    font-style: normal;
    color: var(--accent-dark);
    font-weight: 700;
}
.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.55rem 1.1rem;
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary-custom:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}
.hero-image {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.hero-frame {
    position: absolute;
    top: 20px; left: 20px;
    right: -20px; bottom: -20px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    z-index: -1;
}
.hero-stats {
    position: absolute;
    bottom: 20px; left: -30px;
    background: var(--white);
    padding: 1.3rem 1.6rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    max-width: 250px;
}
.hero-stats-number {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--accent-dark);
    line-height: 1;
}
.hero-stats-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-deco {
    position: absolute;
    font-family: var(--font-serif);
    font-size: 10rem;
    font-style: normal;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.06;
    top: 5%;
    right: -3%;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.05em;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ====== SERVICES SLIDER (multislide) ====== */
.services-slider-wrap {
    position: relative;
    margin: 0 -12px;
}
.services-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 12px 12px 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.services-slider::-webkit-scrollbar { display: none; }
.services-slider .service-card {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    min-width: 0;
}
@media (max-width: 991.98px) {
    .services-slider .service-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}
@media (max-width: 575.98px) {
    .services-slider .service-card {
        flex: 0 0 100%;
    }
    .services-slider { gap: 16px; }
}
.services-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(184, 146, 106, 0.3);
    background: var(--white);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    transition: all 0.25s ease;
}
.services-nav:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.05);
}
.services-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: translateY(-50%);
}
.services-nav-prev { left: -22px; }
.services-nav-next { right: -22px; }
@media (max-width: 767.98px) {
    .services-nav { display: none; }
}
.services-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.services-dots .dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(184, 146, 106, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}
.services-dots .dot.active {
    background: var(--accent);
    width: 26px;
    border-radius: 5px;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 14px;
    border: 1px solid rgba(184, 146, 106, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 60px; height: 60px;
    background: var(--cream);
    color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--white);
    transform: rotate(-5deg) scale(1.08);
}
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.service-card h3 a {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(to right, var(--accent), var(--accent));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: background-size 0.35s ease, color 0.25s ease;
    padding-bottom: 2px;
}
.service-card:hover h3 a,
.service-card h3 a:hover {
    color: var(--accent-dark);
    background-size: 100% 1px;
}
.service-card .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.25s ease, color 0.25s ease;
}
.service-card .link-arrow i { transition: transform 0.3s ease; }
.service-card:hover .link-arrow,
.service-card .link-arrow:hover { color: var(--accent); gap: 10px; }
.service-card:hover .link-arrow i { transform: translateX(3px); }
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== APPROCHE / PRE-POST-PARTUM ===== */
.section-dark {
    background: var(--primary);
    color: var(--cream);
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark .overline { color: var(--accent-light); }
.section-dark .lead-custom { color: rgba(255,255,255,0.75); }

.section-cream {
    background: var(--cream);
}

.image-collage {
    position: relative;
    padding: 20px;
}
.image-collage img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}
.image-collage .img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.image-collage .img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 6px solid var(--white);
}

/* ===== VALEURS / APPROCHE (alterné) ===== */
.value-list {
    list-style: none;
    padding: 0;
}
.value-list li {
    display: flex;
    gap: 1.2rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(184, 146, 106, 0.2);
}
.value-list li:last-child { border-bottom: none; }
.value-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.value-list h4 {
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
    font-family: var(--font-serif);
    color: inherit;
}
.value-list p {
    margin: 0;
    color: inherit;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ===== CHIFFRES / STATS ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    padding: 60px 0;
}
.stat-item .stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--accent-dark);
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.7rem;
}

/* ===== PROCESS / TIMELINE ===== */
.process-steps {
    counter-reset: step;
}
.process-step {
    background: var(--white);
    padding: 2.5rem 2rem 2rem;
    border-radius: 14px;
    position: relative;
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(184, 146, 106, 0.12);
    transition: transform 0.3s ease;
}
.process-step:hover { transform: translateY(-5px); }
.process-step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: -25px; left: 25px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.process-step h4 {
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-family: var(--font-serif);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    border: 1px solid rgba(184, 146, 106, 0.12);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px; right: 30px;
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
}
.testimonial-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(184, 146, 106, 0.2);
    padding-top: 1.2rem;
}
.testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
}
.testimonial-name { font-weight: 600; color: var(--primary); }
.testimonial-role { font-size: 0.82rem; color: var(--text-muted); }
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }

/* ===== TARIFS ===== */
.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem 2.2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(184, 146, 106, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.pricing-card.featured {
    background: var(--primary);
    color: var(--white);
    border-color: var(--accent);
    transform: scale(1.03);
}
.pricing-card.featured h3,
.pricing-card.featured .price-number { color: var(--white); }
.pricing-card.featured .price-currency,
.pricing-card.featured .price-unit { color: var(--accent-light); }
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}
.pricing-card h3 { margin-bottom: 0.8rem; }
.pricing-card .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 1.8rem 0;
}
.price-currency {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-dark);
}
.price-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}
.price-unit {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 4px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}
.pricing-features li {
    padding: 0.55rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.pricing-features li i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.pricing-card.featured .pricing-features li i { color: var(--accent-light); }

/* ===== ZONES ===== */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}
.zone-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(184, 146, 106, 0.2);
    transition: all 0.3s ease;
    display: block;
    color: var(--primary);
}
.zone-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.zone-card i {
    font-size: 1.5rem;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
    display: block;
}
.zone-card:hover i { color: var(--accent-light); }
.zone-card strong {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}
.zone-card small { opacity: 0.75; font-size: 0.8rem; }

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    opacity: 0.25;
    filter: blur(30px);
}
.cta-band h2 { color: var(--white); }
.cta-band .btn-primary-custom {
    background: var(--accent);
    color: var(--white);
}
.cta-band .btn-primary-custom:hover {
    background: var(--white);
    color: var(--primary);
}

/* ===== FORMULAIRE DE CONTACT ===== */
.contact-form-wrap {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 100%;
}
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form {
    margin-top: 0;
}
.form-control,
.form-select {
    border: 1px solid #e5e0d8;
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    background: var(--cream);
    color: var(--text);
    transition: all 0.3s ease;
    width: 100%;
}
.form-control:focus,
.form-select:focus {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 146, 106, 0.12);
    outline: none;
}
.form-label {
    font-weight: 500;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    display: block;
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ===== BOÎTE D'INFOS CONTACT ===== */
.contact-info-box {
    background: var(--primary);
    color: var(--cream);
    padding: 2rem 1.75rem;
    border-radius: 16px;
}
.contact-info-box h3 { color: var(--white); }
.contact-info-box a { color: var(--cream); text-decoration: none; transition: color 0.2s; }
.contact-info-box a:hover { color: var(--accent-light); }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-item .contact-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(184, 146, 106, 0.18);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.contact-info-item > div:not(.contact-icon) {
    flex: 1;
    min-width: 0;
    line-height: 1.5;
}
.contact-info-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(248, 244, 239, 0.55);
    margin-bottom: 0.2rem;
    font-weight: 500;
}
.contact-info-item strong {
    font-weight: 500;
    color: var(--white);
    word-break: break-word;
}

/* ===== PAGE HEADER (sous-pages) ===== */
.page-header {
    background: linear-gradient(135deg, var(--cream), var(--soft));
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-header h1 { margin-bottom: 1rem; }
.breadcrumb-custom {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.3rem;
}
.breadcrumb-custom a { color: var(--accent-dark); }
.breadcrumb-custom .separator { margin: 0 8px; opacity: 0.5; }

/* ===== FAQ ===== */
.accordion-custom .accordion-item {
    background: var(--white);
    border: 1px solid rgba(184, 146, 106, 0.18);
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.accordion-custom .accordion-button {
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.15rem;
    padding: 1.3rem 1.5rem;
}
.accordion-custom .accordion-button:not(.collapsed) {
    background: var(--cream);
    color: var(--accent-dark);
    box-shadow: none;
}
.accordion-custom .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(184, 146, 106, 0.15);
}
.accordion-custom .accordion-body {
    color: var(--text-muted);
    line-height: 1.75;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
}
.site-footer h6 { color: var(--white); }
.brand-mark-footer {
    width: 40px; height: 40px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}
.footer-tag {
    font-size: 0.75rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.footer-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}
.footer-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    letter-spacing: 0.02em;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { padding: 0.3rem 0; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color .3s, padding .3s;
}
.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}
.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    padding: 0.5rem 0;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}
.footer-contact li i {
    color: var(--accent-light);
    margin-top: 4px;
    flex-shrink: 0;
}
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: var(--accent-light); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent-light); }

/* ===== OFFCANVAS MOBILE ===== */
.offcanvas-lg {
    background: var(--white);
}
.offcanvas-header {
    background: var(--primary);
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.offcanvas-header .btn-close {
    filter: invert(1) brightness(2);
}
.offcanvas-title {
    font-family: var(--font-serif);
    color: var(--white);
}
@media (max-width: 991px) {
    .offcanvas-body { padding: 1.5rem; }
    .offcanvas-body .nav-link { padding: 0.9rem 0 !important; border-bottom: 1px solid rgba(184, 146, 106, 0.15); }
    .offcanvas-body .nav-link::after { display: none; }
    .offcanvas-body .btn-cta { margin-top: 1rem; width: 100%; text-align: center; }
}

/* ===== UTILITIES ===== */
.serif { font-family: var(--font-serif); }
.text-accent { color: var(--accent-dark) !important; }
.bg-cream { background: var(--cream) !important; }
.bg-light-bg { background: var(--light-bg) !important; }

.divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 1rem 0 1.5rem;
}
.text-center .divider { margin: 1rem auto 1.5rem; }

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px; right: 25px;
    width: 56px; height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 991px) {
    .hero { min-height: auto; padding: 60px 0; }
    .hero-image-wrapper { margin-top: 50px; }
    .hero-stats { position: static; margin-top: 1rem; }
    .hero-frame { display: none; }
    .hero-deco { display: none; }
}
@media (max-width: 768px) {
    h1 { line-height: 1.15; }
    .contact-form-wrap { padding: 1.8rem; }
    .contact-info-box { padding: 1.5rem 1.25rem; }
    .image-collage .img-secondary { position: static; width: 100%; margin-top: 20px; border: none; }
    .image-collage { padding: 0; }
}
