/*
Theme Name: CleanLux
Theme URI: https://chrislight.tg
Author: Chris Light Corporation
Author URI: https://chrislight.tg
Description: Thème élégant et professionnel pour Chris Light Corporation – nettoyage, produits et événementiel. Design premium violet & or.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cleanlux
Tags: one-page, business, elegant, luxury, services, cleaning, events
*/

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
    --purple:          #4B2E83;
    --purple-dark:     #2D1B4E;
    --purple-accent:   #6B4BBE;
    --yellow:          #F6C400;
    --yellow-light:    #FFD84D;
    --yellow-dark:     #D4A900;
    --white:           #FFFFFF;
    --bg-light:        #F8F7FB;
    --text:            #1E1B2E;
    --text-secondary:  #5F5A6B;
    --border:          #E8E4F2;
    --shadow-sm:       0 2px 8px rgba(75,46,131,.08);
    --shadow-md:       0 6px 24px rgba(75,46,131,.14);
    --shadow-lg:       0 16px 48px rgba(75,46,131,.22);
    --radius:          8px;
    --radius-lg:       16px;
    --radius-xl:       24px;
    --transition:      .35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: .75rem;
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple-accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-pad    { padding: 3.75rem 0; }
.section-pad-sm { padding: 2.25rem 0; }

.text-center   { text-align: center; }
.text-yellow   { color: var(--yellow) !important; }
.text-purple   { color: var(--purple) !important; }
.text-white    { color: var(--white) !important; }
.bg-light      { background: var(--bg-light); }
.bg-purple     { background: var(--purple); }
.bg-dark       { background: var(--purple-dark); }

.d-flex        { display: flex; }
.flex-col      { flex-direction: column; }
.align-center  { align-items: center; }
.justify-center{ justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Section headers */
.section-header { text-align: center; margin-bottom: 2.625rem; }

.section-header .eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple-accent);
    background: rgba(107,75,190,.1);
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: .9rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p  { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.divider-yellow {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-light));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2rem;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
    box-shadow: 0 4px 16px rgba(75,46,131,.30);
}
.btn-primary:hover {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(75,46,131,.40);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--purple-dark);
    border-color: var(--yellow);
    box-shadow: 0 4px 16px rgba(246,196,0,.30);
}
.btn-yellow:hover {
    background: var(--yellow-light);
    border-color: var(--yellow-light);
    color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(246,196,0,.40);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--purple);
    transform: translateY(-2px);
}

.btn-outline-purple {
    background: transparent;
    color: var(--purple);
    border-color: var(--purple);
}
.btn-outline-purple:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .88rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

/* Top bar */
.header-topbar {
    background: var(--purple-dark);
    padding: .42rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-topbar-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
}
.topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: .04em;
    transition: color var(--transition);
}
.topbar-phone i { font-size: .72rem; }
.topbar-phone:hover { color: var(--yellow-light); }
.topbar-hours {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.62);
    font-size: .78rem;
}
.topbar-hours i { color: var(--yellow-light); font-size: .72rem; }
@media (max-width: 768px) {
    .header-topbar { display: none; }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 0 var(--border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 0;
    gap: .9rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: .85rem;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img { height: 72px; width: auto; transform: scale(1.6); transform-origin: left center; }

.logo-text .brand-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--purple-dark);
    line-height: 1.1;
    letter-spacing: .02em;
}
.logo-text .brand-tagline {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: .63rem;
    color: var(--yellow-dark);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Nav */
.main-nav { display: flex; align-items: center; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: .1rem;
}
.nav-menu li { position: relative; }

.nav-menu > li > a {
    display: block;
    padding: .55rem .54rem;
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: .02em;
    border-radius: var(--radius);
    transition: color var(--transition);
    position: relative;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: .9rem;
    right: .9rem;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a { color: var(--purple); }
.nav-menu > li > a:hover::after,
.nav-menu li.current-menu-item > a::after,
.nav-menu li.current_page_item > a::after { transform: scaleX(1); }

/* Dropdown */
.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--yellow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
    overflow: hidden;
}
.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-menu .sub-menu a {
    display: block;
    padding: .7rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}
.nav-menu .sub-menu a::after { display: none; }
.nav-menu .sub-menu li:last-child a { border-bottom: none; }
.nav-menu .sub-menu a:hover { color: var(--purple); background: var(--bg-light); }

/* Nav CTA */
.nav-cta { margin-left: .6rem; }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    background: none;
    border: none;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--purple);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SLIDER – FULL BACKGROUND IMAGE
   ============================================================ */
.hero-slider { position: relative; }

.slides-wrapper {
    position: relative;
    height: 92vh;
    min-height: 620px;
    overflow: hidden;
}

/* Chaque slide occupe tout l'espace, image en fond */
.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease;
    pointer-events: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

/* Overlay dégradé violet pour lisibilité */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(45,27,78,.82) 0%,
        rgba(75,46,131,.60) 50%,
        rgba(45,27,78,.30) 100%
    );
}

.slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 0;
}

/* Animation d'entrée du contenu */
.slide .slide-content {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease .3s, transform .75s ease .3s;
    max-width: 680px;
}
.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.30);
    color: var(--yellow-light);
    padding: .45rem 1.1rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.slide-content h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.18;
    margin-bottom: .9rem;
    color: var(--white);
    text-shadow: 0 2px 24px rgba(0,0,0,.18);
}
.slide-content h1 .accent { color: var(--yellow); }

.slide-content p {
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 1.875rem;
    max-width: 540px;
    color: rgba(255,255,255,.88);
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Slider controls – points */
.slider-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: .75rem;
    z-index: 10;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.40);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}
.slider-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--yellow);
}

/* Flèches de navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--white);
}
.slider-arrow:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--purple-dark);
}
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* ============================================================
   SERVICES BAND
   ============================================================ */
.services-band { padding: 2.625rem 0; }

.services-band-card {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 2.1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    overflow: hidden;
}

.services-band-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 50%, rgba(107,75,190,.25) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(246,196,0,.06) 0%, transparent 50%);
    pointer-events: none;
}

.band-item {
    padding: 1.05rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    position: relative;
    transition: background var(--transition);
    border-radius: var(--radius-lg);
}
.band-item:hover { background: rgba(255,255,255,.05); }

.band-item + .band-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,.14);
}

.band-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    transition: all var(--transition);
    flex-shrink: 0;
}
.band-item:hover .band-icon {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--purple-dark);
}

.band-item h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0;
}
.band-item p {
    font-size: .92rem;
    color: rgba(255,255,255,.68);
    margin-bottom: 0;
    line-height: 1.65;
}

.band-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: .25rem;
    transition: gap var(--transition), color var(--transition);
}
.band-link:hover { gap: .75rem; color: var(--yellow-light); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap { position: relative; }

.about-img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-floating-card {
    position: absolute;
    bottom: -2rem;
    right: -2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-width: 250px;
}
.about-floating-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--purple);
    margin-bottom: 1.1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--yellow);
}

.engagement-list {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.engagement-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
}
.engagement-item .ei-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(75,46,131,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: .7rem;
    flex-shrink: 0;
}

/* About content */
.about-content .eyebrow-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple-accent);
    background: rgba(107,75,190,.1);
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1.1rem;
}
.about-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 1.125rem;
    color: var(--text);
}
.about-content h2 em {
    font-style: normal;
    color: var(--purple);
}
.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.125rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}
.about-stat {
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.about-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--purple);
    line-height: 1;
    margin-bottom: .25rem;
}
.about-stat span {
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ============================================================
   DUAL SERVICE CARDS
   ============================================================ */
.dual-cards-section { background: var(--bg-light); }

.dual-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dual-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.dual-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(75,46,131,.15);
}

.dual-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}
.dual-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.dual-card:hover .dual-card-image img { transform: scale(1.05); }
.dual-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(45,27,78,.38) 100%);
}

.dual-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.dual-card-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--purple-accent);
    background: rgba(107,75,190,.1);
    padding: .3rem .75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    width: fit-content;
}
.dual-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: .85rem;
    color: var(--text);
}
.dual-card-body p {
    font-size: .95rem;
    margin-bottom: 1.75rem;
    flex: 1;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section { background: var(--white); }

.trust-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.trust-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--text);
    margin-bottom: .5rem;
}
.trust-divider {
    width: 56px;
    height: 3px;
    background: var(--yellow);
    margin: .75rem auto 0;
    border-radius: 2px;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    padding: 2.5rem 3rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 1.5rem;
    opacity: .45;
    transition: opacity var(--transition);
}
.partner-item:hover { opacity: 1; }

.partner-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: .04em;
    white-space: nowrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--purple-dark);
    color: rgba(255,255,255,.62);
}

.footer-top {
    padding: 4.5rem 0 2.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo { height: 52px; width: auto; }
.footer-brand p {
    color: rgba(255,255,255,.52);
    font-size: .9rem;
    margin: 1.25rem 0;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: .6rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.58);
    font-size: .85rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--purple-dark);
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 32px;
    height: 2px;
    background: var(--yellow);
}

.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
    color: rgba(255,255,255,.52);
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}
.footer-links a:hover { color: var(--yellow-light); padding-left: .35rem; }

.footer-contact-list { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    color: rgba(255,255,255,.52);
}
.footer-contact-item i {
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: .2rem;
    width: 16px;
    text-align: center;
}
.footer-contact-item a { color: rgba(255,255,255,.52); }
.footer-contact-item a:hover { color: var(--yellow-light); }

.footer-cta-box {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}
.footer-cta-box p {
    font-size: .88rem;
    color: rgba(255,255,255,.52);
    margin-bottom: 1rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    color: rgba(255,255,255,.38);
}
.footer-bottom a { color: var(--yellow-light); }
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================================
   PAGE NOS SERVICES
   ============================================================ */

/* Sticky sub-navigation (services page) */
.srv-subnav {
    background: #FFFFFF;
    padding: 1.25rem 0;
    box-shadow: 0 2px 8px rgba(75,46,131,.08);
    position: sticky;
    top: 104px; /* fallback; overridden by JS with actual header height */
    z-index: 999;
}

/* Section générique service */
.srv-section { padding: 3.75rem 0; }
.srv-section-light { background: var(--bg-light); }
.srv-section-white { background: var(--white); }

/* Séparateur entre sections services */
.srv-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--purple-accent), var(--yellow));
    opacity: .18;
}

/* Grille principale : texte + image */
.srv-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}
.srv-grid-2col { grid-template-columns: 1fr 1fr; }
.srv-grid-reverse { direction: rtl; }
.srv-grid-reverse > * { direction: ltr; }

/* Contenu texte */
.srv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple-accent);
    background: rgba(107,75,190,.1);
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.srv-content h2 {
    font-size: clamp(1.75rem, 2.8vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: .6rem;
    color: var(--text);
}
.srv-content .srv-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--purple-accent);
    margin-bottom: 1.5rem;
}
.srv-content p {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}
.srv-divider-line {
    width: 52px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    margin: 1.25rem 0;
}

/* Liste de prestations */
.srv-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin: 1.5rem 0 2rem;
}
.srv-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: var(--text);
}
.srv-list-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(75,46,131,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--purple);
    font-size: .65rem;
    flex-shrink: 0;
    margin-top: .15rem;
}

/* Badge "Intervention sous 24h" */
.srv-badge-24h {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(246,196,0,.15);
    border: 1px solid rgba(246,196,0,.4);
    color: var(--yellow-dark);
    padding: .5rem 1.1rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Visuels image */
.srv-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.srv-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}
.srv-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.srv-img-wrap:hover img { transform: scale(1.04); }

/* Image unique grande */
.srv-img-single {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.srv-img-single img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.srv-img-single:hover img { transform: scale(1.03); }

/* Carte flottante statistique */
.srv-stat-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .75rem;
}
.srv-stat-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--purple);
    line-height: 1;
}
.srv-stat-badge span {
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Hôtesses – cards liste types événements */
.srv-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
    margin: 1.5rem 0;
}
.srv-event-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .75rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    color: var(--text);
    transition: all var(--transition);
}
.srv-event-item:hover {
    border-color: rgba(75,46,131,.25);
    background: rgba(107,75,190,.06);
}
.srv-event-item i { color: var(--purple); font-size: .85rem; flex-shrink: 0; }

/* Produits – image centrée avec ombre forte */
.srv-products-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.srv-products-visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.srv-products-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,27,78,.60) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}
.srv-products-cta-box {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    width: 100%;
}
.srv-products-cta-box p {
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    margin-bottom: .75rem;
}

/* ─── Responsive services ─────────────────────────── */
@media (max-width: 1024px) {
    .srv-grid-2col { gap: 3rem; }
    .srv-img-single img { height: 360px; }
    .srv-events-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .srv-grid-2col { grid-template-columns: 1fr; direction: ltr; }
    .srv-grid-reverse { direction: ltr; }
    .srv-images-row { grid-template-columns: 1fr; }
    .srv-img-wrap img { height: 220px; }
    .srv-img-single img { height: 260px; }
    .srv-products-visual img { height: 260px; }
    .srv-events-grid { grid-template-columns: 1fr 1fr; }
    .srv-section { padding: 2.625rem 0; }
}
@media (max-width: 480px) {
    .srv-events-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE À PROPOS
   ============================================================ */

/* Grille principale histoire */
.ap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ap-content .eyebrow-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple-accent);
    background: rgba(107,75,190,.1);
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.ap-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
    color: var(--text);
}
.ap-content h2 em { font-style: normal; color: var(--purple); }
.ap-content p { font-size: 1.05rem; line-height: 1.8; }

/* Encadré Mission */
.ap-mission-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-left: 4px solid var(--purple);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
}
.ap-mission-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ap-mission-box h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
    color: var(--purple);
}

/* Image section */
.ap-image-wrap {
    position: relative;
}
.ap-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.ap-badge-exp {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--yellow);
    color: var(--purple-dark);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.ap-badge-exp strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--purple-dark);
}
.ap-badge-exp span {
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Grille valeurs */
.ap-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.ap-value-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-align: center;
}
.ap-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(75,46,131,.15);
}
.ap-value-icon {
    width: 70px; height: 70px;
    background: rgba(75,46,131,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple);
    margin: 0 auto 1.25rem;
    transition: all var(--transition);
}
.ap-value-card:hover .ap-value-icon {
    background: var(--purple);
    color: var(--white);
}
.ap-value-card h3 {
    font-size: 1.15rem;
    margin-bottom: .75rem;
    color: var(--text);
}
.ap-value-card p { font-size: .92rem; margin-bottom: 0; }

/* Grille équipe */
.ap-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.ap-team-content .eyebrow-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple-accent);
    background: rgba(107,75,190,.1);
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.ap-team-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
    color: var(--text);
}
.ap-team-content h2 em { font-style: normal; color: var(--purple); }
.ap-team-content p { font-size: 1.05rem; line-height: 1.8; }

.ap-team-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-top: 1.5rem;
}
.ap-team-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: var(--text);
}
.ap-check {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(75,46,131,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--purple);
    font-size: .7rem;
    flex-shrink: 0;
}

/* Grille chiffres */
.ap-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.ap-number-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-xl);
    transition: background var(--transition);
}
.ap-number-card:hover { background: rgba(255,255,255,.1); }
.ap-number-icon {
    color: var(--yellow);
    margin-bottom: 1.25rem;
}
.ap-number-card strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: .5rem;
}
.ap-number-card span {
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Responsive page À Propos */
@media (max-width: 1024px) {
    .ap-values-grid   { grid-template-columns: repeat(2, 1fr); }
    .ap-numbers-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ap-grid          { grid-template-columns: 1fr; gap: 2.5rem; }
    .ap-team-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
    .ap-img           { height: 320px; }
    .ap-badge-exp     { position: static; display: inline-flex; gap: 1rem; align-items: center; margin-top: 1.5rem; }
    .ap-badge-exp strong { font-size: 1.75rem; }
}
@media (max-width: 480px) {
    .ap-values-grid   { grid-template-columns: 1fr; }
    .ap-numbers-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MOBILE CAROUSEL
   ============================================================ */
.mc-track {
    transition: transform .4s ease;
    will-change: transform;
}

/* Desktop (≥ 1025 px) : track transparent to layout, dots hidden */
@media (min-width: 1025px) {
    .mc-track { display: contents; }
    .mc-dots  { display: none !important; }
}

/* Tablet + Mobile : carousel active */
@media (max-width: 1024px) {
    .mc-track { display: flex; }
    [data-mobile-carousel].mc-active { overflow: hidden; }
    [data-mobile-carousel].mc-active .mc-track { width: 100%; }

    /* Tablet (769 – 1024 px) : 2 items */
    [data-mobile-carousel].mc-active .mc-track > * {
        flex: 0 0 50%;
        min-width: 50%;
        max-width: 50%;
        box-sizing: border-box;
    }
    /* Remove stacking border between band-items when in carousel */
    [data-mobile-carousel].mc-active .band-item + .band-item {
        border-top: none;
    }
}

/* Mobile (≤ 768 px) : 1 item */
@media (max-width: 768px) {
    [data-mobile-carousel].mc-active .mc-track > * {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

/* Dots */
.mc-dots {
    display: flex;
    justify-content: center;
    gap: .55rem;
    padding: .5rem 0 .25rem;
    margin-top: 1rem;
}
.mc-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(75,46,131,.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition),
                width var(--transition), border-radius var(--transition);
}
.mc-dot.active {
    background: var(--yellow);
    transform: scale(1.2);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--purple-dark); transform: translateY(-3px); }

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-banner {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    padding: 2rem 0 1.2rem;
    text-align: center;
}
.page-banner h1 { color: var(--white); }
.page-banner .breadcrumb {
    margin-top: .75rem;
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    color: rgba(255,255,255,.5);
}
.page-banner .breadcrumb a { color: var(--yellow); }

.page-content-area { padding: 4rem 0; }
.page-content-area .container { max-width: 820px; }
.page-content-area h2, .page-content-area h3 { margin: 2rem 0 1rem; }
.page-content-area p { margin-bottom: 1.25rem; }

.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1rem auto; }
.wp-block-image img { border-radius: var(--radius); }
.wp-block-quote {
    border-left: 4px solid var(--yellow);
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    margin: 1.5rem 0;
}

/* ============================================================
   BLOG – LISTE DES ARTICLES (home.php)
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(75,46,131,.2);
}

/* Image */
.blog-card-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    display: block;
    background: var(--purple-dark);
    flex-shrink: 0;
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,.3);
}
.blog-card-cat {
    position: absolute;
    top: .85rem;
    left: .85rem;
    background: #C9A84C;
    color: #0B1F3A;
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: .25rem .75rem;
    border-radius: 999px;
}

/* Corps */
.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    color: var(--text-secondary);
    margin-bottom: .85rem;
}
.blog-card-meta i { color: var(--purple); margin-right: .3rem; }
.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: .75rem;
}
.blog-card-title a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}
.blog-card-title a:hover { color: var(--purple); }
.blog-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
    transition: gap var(--transition);
}
.blog-card-link:hover { gap: .7rem; }
.blog-card-link i { font-size: .72rem; transition: transform var(--transition); }
.blog-card-link:hover i { transform: translateX(3px); }

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    color: var(--text);
    text-decoration: none;
    transition: all var(--transition);
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next { width: auto; padding: 0 1rem; gap: .4rem; }

/* Responsive listing */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-img-wrap { height: 180px; }
}

/* ============================================================
   BLOG ARTICLE
   ============================================================ */

/* Hero */
.blog-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--purple-dark);
}
.blog-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .55;
}
.blog-hero-no-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
}
.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,31,58,.85) 0%, rgba(11,31,58,.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
}
.blog-hero-content {
    width: 100%;
    padding: 2.5rem 0;
}
.blog-hero-content .container { max-width: 860px; }
.blog-hero-content h1 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.25;
    margin: 0 0 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* Meta (date / catégorie / temps de lecture) */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 1rem 0 .5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}
.blog-meta-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    color: var(--text-secondary);
}
.blog-meta-item i { color: var(--purple); font-size: .75rem; }
.blog-meta-cat {
    background: rgba(75,46,131,.1);
    color: var(--purple);
    font-weight: 600;
    padding: .2rem .75rem;
    border-radius: 999px;
}

/* Corps de l'article */
.blog-body {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 0 3rem;
}
.blog-content {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
}

/* ── Bloc Média + Texte (alternance image/texte) ────────── */
.blog-content .wp-block-media-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin: 2.5rem 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11,31,58,.10);
    border: 1px solid var(--border);
}
.blog-content .wp-block-media-text .wp-block-media-text__media {
    margin: 0;
    overflow: hidden;
    min-height: 280px;
}
.blog-content .wp-block-media-text .wp-block-media-text__media img,
.blog-content .wp-block-media-text .wp-block-media-text__media figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}
.blog-content .wp-block-media-text:hover .wp-block-media-text__media img {
    transform: scale(1.04);
}
.blog-content .wp-block-media-text .wp-block-media-text__content {
    padding: 2.5rem 2.25rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-content .wp-block-media-text .wp-block-media-text__content p {
    margin-bottom: .9rem;
    font-size: 1rem;
    line-height: 1.8;
}
.blog-content .wp-block-media-text .wp-block-media-text__content h2,
.blog-content .wp-block-media-text .wp-block-media-text__content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--purple-dark);
    margin-bottom: .75rem;
    font-size: 1.3rem;
    border-bottom: none;
}
/* Variante fond violet pour alternance visuelle */
.blog-content .wp-block-media-text.is-style-dark .wp-block-media-text__content {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: var(--white);
}
.blog-content .wp-block-media-text.is-style-dark .wp-block-media-text__content p,
.blog-content .wp-block-media-text.is-style-dark .wp-block-media-text__content h2,
.blog-content .wp-block-media-text.is-style-dark .wp-block-media-text__content h3 {
    color: var(--white);
}

/* ── Images standalone dans le contenu ──────────────────── */
.blog-content figure.wp-block-image {
    margin: 2rem 0;
}
.blog-content figure.wp-block-image img {
    border-radius: var(--radius-xl) !important;
    box-shadow: 0 8px 32px rgba(11,31,58,.12) !important;
    transition: transform .4s ease, box-shadow .4s ease;
    width: 100%;
    height: auto;
}
.blog-content figure.wp-block-image img:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(11,31,58,.18) !important;
}
.blog-content figure.wp-block-image figcaption {
    text-align: center;
    font-size: .82rem;
    color: var(--text-secondary);
    margin-top: .6rem;
    font-style: italic;
}
/* Image large (breakout) */
.blog-content figure.wp-block-image.alignwide {
    margin-left: -4rem;
    margin-right: -4rem;
}
.blog-content figure.wp-block-image.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0 !important;
}
.blog-content figure.wp-block-image.alignfull img { border-radius: 0 !important; }

/* ── Colonnes Gutenberg ─────────────────────────────────── */
.blog-content .wp-block-columns {
    gap: 2rem;
    margin: 2rem 0;
}
.blog-content .wp-block-column {
    padding: 1.75rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

/* ── Citation améliorée ─────────────────────────────────── */
.blog-content .wp-block-quote,
.blog-content blockquote {
    border-left: 4px solid #C9A84C;
    background: rgba(201,168,76,.06);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic;
    margin: 2rem 0;
    position: relative;
}
.blog-content .wp-block-quote::before,
.blog-content blockquote::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 1.25rem;
    font-size: 4rem;
    color: #C9A84C;
    opacity: .25;
    font-family: Georgia, serif;
    line-height: 1;
}
.blog-content .wp-block-quote p,
.blog-content blockquote p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: .5rem;
}
.blog-content .wp-block-quote cite,
.blog-content blockquote cite {
    font-size: .82rem;
    color: var(--text-secondary);
    font-style: normal;
    font-weight: 600;
}

/* ── Séparateur stylé ───────────────────────────────────── */
.blog-content hr,
.blog-content .wp-block-separator {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A84C, transparent);
    margin: 2.5rem 0;
    opacity: .5;
}

/* ── Responsive blocs article ──────────────────────────── */
@media (max-width: 768px) {
    .blog-content .wp-block-media-text {
        grid-template-columns: 1fr !important;
    }
    .blog-content .wp-block-media-text .wp-block-media-text__media {
        min-height: 220px;
        order: 0 !important;
    }
    .blog-content .wp-block-media-text .wp-block-media-text__content {
        order: 1 !important;
        padding: 1.5rem;
    }
    .blog-content figure.wp-block-image.alignwide {
        margin-left: 0;
        margin-right: 0;
    }
    .blog-content .wp-block-columns { flex-direction: column; }
}
.blog-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--purple-dark);
    margin: 2.5rem 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--yellow);
    display: inline-block;
}
.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--purple);
    margin: 2rem 0 .75rem;
}
.blog-content p { margin-bottom: 1.35rem; }
.blog-content a { color: var(--purple); text-decoration: underline; }
.blog-content img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}
.blog-content ul,
.blog-content ol {
    margin: 1rem 0 1.5rem;
    padding-left: 0;
    list-style: none;
}
.blog-content ul li,
.blog-content ol li {
    position: relative;
    padding: .45rem 0 .45rem 2rem;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
}
.blog-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: .45rem;
    color: #C9A84C;
    font-weight: 700;
    font-size: 1rem;
}
.blog-content ol { counter-reset: ol-counter; }
.blog-content ol li { counter-increment: ol-counter; }
.blog-content ol li::before {
    content: counter(ol-counter);
    position: absolute;
    left: 0;
    top: .4rem;
    background: var(--purple);
    color: var(--white);
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-content blockquote {
    border-left: 4px solid #C9A84C;
    background: rgba(201,168,76,.07);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    margin: 1.75rem 0;
    color: var(--text-secondary);
}

/* Encadré À propos */
.blog-about-box {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 800px;
}
.blog-about-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #C9A84C;
}
.blog-about-box h4 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: .35rem;
}
.blog-about-box p {
    color: rgba(255,255,255,.72);
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    margin-bottom: 1rem;
}

/* Navigation prev/next */
.blog-nav {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}
.blog-nav-link {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition);
}
.blog-nav-link:hover { background: var(--white); border-color: var(--purple); box-shadow: var(--shadow-sm); }
.blog-nav-link.next { text-align: right; }
.blog-nav-label {
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--purple);
}
.blog-nav-title {
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Bouton WhatsApp Commander */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    background: var(--purple);
    color: var(--white);
    border: 1.5px solid #25D366;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}
.btn-whatsapp:hover {
    background: #1a6632;
    border-color: #1a6632;
    color: var(--white);
}
.btn-whatsapp i.fa-whatsapp { color: #25D366; font-size: 1rem; }

/* Responsive blog */
@media (max-width: 768px) {
    .blog-hero { height: 280px; }
    .blog-hero-content h1 { font-size: 1.4rem; }
    .blog-about-box { flex-direction: column; text-align: center; gap: 1rem; padding: 1.5rem; }
    .blog-nav { grid-template-columns: 1fr; }
    .blog-nav-link.next { text-align: left; }
    .blog-body { padding: 1.5rem 0 2rem; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .slide-inner { gap: 2rem; }
    .slide-image-wrap { height: 420px; }
    .about-grid { gap: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }

    .services-band-card {
        grid-template-columns: 1fr;
        padding: 1.2rem .9rem;
    }
    .band-item + .band-item::before { display: none; }
    .band-item {
        padding: .9rem;
        flex-direction: row;
        align-items: flex-start;
        gap: .75rem;
    }
    .band-item + .band-item {
        border-top: 1px solid rgba(255,255,255,.13);
    }
    .band-icon { flex-shrink: 0; }
}

@media (max-width: 768px) {
    /* Header mobile */
    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 90vw);
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 5rem 1.5rem 2rem;
        transition: right var(--transition);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.open { right: 0; }
    .nav-menu { flex-direction: column; align-items: stretch; }
    .nav-menu > li > a { padding: .85rem 1rem; border-radius: var(--radius); }
    .nav-menu > li > a::after { left: 1rem; right: 1rem; }
    .nav-menu .sub-menu {
        position: static;
        opacity: 1; visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--yellow);
        margin-left: 1rem;
        margin-top: .25rem;
    }
    .nav-cta { margin: 1rem 0 0; }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(45,27,78,.5);
        z-index: 998;
    }
    .nav-overlay.open { display: block; }

    /* Hero slider mobile */
    .slides-wrapper { height: 100svh; min-height: 520px; }
    .slide-inner { padding: 1.875rem 0 4.5rem; }
    .slide-content { max-width: 100%; }
    .slide-content h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); }
    .slide-content p { font-size: 1rem; margin-bottom: 2rem; }
    .slider-arrow { display: none; }
    .slider-controls { bottom: 2rem; }

    /* Services band */
    .services-band { padding: 1.5rem 0; }
    .services-band-card { padding: .9rem .6rem; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-floating-card {
        position: static;
        margin-top: 1.5rem;
    }
    .about-img { height: 340px; }
    .about-stats { grid-template-columns: 1fr 1fr; }

    /* Dual cards */
    .dual-cards-grid { grid-template-columns: 1fr; }
    .dual-card-image { height: 220px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Services page */
    .srv-grid { grid-template-columns: 1fr !important; }
    .srv-images-row { grid-template-columns: 1fr !important; }
    .srv-section { padding: 2.25rem 0; }
}

@media (max-width: 480px) {
    .slide-actions { flex-direction: column; }
    .slide-actions .btn { justify-content: center; }
    .footer-top { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .partners-row { padding: 1.5rem; gap: 1rem 2rem; }
}

@media print {
    .site-header, .scroll-top { display: none; }
    body { color: #000; }
}

/* ============================================================
   BOUTIQUE – GRILLE DESKTOP + CAROUSEL MOBILE
   ============================================================ */

/* ── Desktop : grille 3 colonnes ── */
.products-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.products-carousel-mobile { display: none !important; }

.products-grid-desktop .product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.products-grid-desktop .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
.products-grid-desktop .product-card .product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}
.products-grid-desktop .product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.products-grid-desktop .product-card:hover .product-image img { transform: scale(1.05); }
.products-grid-desktop .product-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B1F3A;
    margin: 1.25rem 1.25rem .5rem;
}
.products-grid-desktop .product-card .product-excerpt {
    color: var(--text-secondary);
    font-size: .92rem;
    line-height: 1.65;
    margin: 0 1.25rem 1.25rem;
    flex: 1;
}
.products-grid-desktop .product-card .btn-whatsapp {
    margin: 0 1.25rem 1.25rem;
    justify-content: center;
    width: calc(100% - 2.5rem);
}

/* ── Tablette 2 colonnes ── */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid-desktop { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ── Mobile : carousel ── */
@media (max-width: 768px) {
    .products-grid-desktop   { display: none !important; }
    .products-carousel-mobile {
        display: block !important;
        margin-top: 1rem;
    }

    .products-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 16px;
        padding: 0 1rem 1.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .products-slider::-webkit-scrollbar { display: none; }

    .product-card-mobile {
        min-width: 88vw;
        max-width: 88vw;
        flex-shrink: 0;
        scroll-snap-align: center;
        background: var(--white);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(11,31,58,.12);
        border: 1px solid var(--border);
        display: flex;
        flex-direction: column;
    }
    .product-card-mobile .product-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
        flex-shrink: 0;
    }
    .product-card-mobile .product-image img {
        width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .product-card-mobile .product-content { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
    .product-card-mobile h3 { font-size: 1.2rem; font-weight: 700; color: #0B1F3A; margin-bottom: .5rem; }
    .product-card-mobile .product-excerpt { color: var(--text-secondary); font-size: .92rem; line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
    .product-card-mobile .btn-whatsapp { width: 100%; justify-content: center; }

    /* Dots */
    .carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .5rem;
        margin-top: 1rem;
        padding-bottom: .25rem;
    }
    .carousel-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: #D1D5DB;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all .3s ease;
    }
    .carousel-dot.active {
        background: var(--purple);
        width: 24px;
        border-radius: 4px;
    }
    .btn-whatsapp-full { width: 100%; justify-content: center; }
}

/* ============================================================
   MOBILE UX/UI – OPTIMISATIONS GLOBALES
   ============================================================ */
@media (max-width: 768px) {

    /* ── P1 : Hero spacing ─────────────────────────────── */
    .slide-inner {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .slide-badge {
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }
    .slide-content h1 {
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }
    .slide-content p {
        margin-top: 0 !important;
        margin-bottom: 18px !important;
    }
    .slide-actions {
        margin-top: 18px !important;
    }

    /* ── P2 : Carousel produits ────────────────────────── */
    .products-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 15px !important;
        padding: 10px 15px 24px !important;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .products-grid::-webkit-scrollbar { display: none; }
    .product-card {
        min-width: 82vw !important;
        max-width: 82vw !important;
        width: 82vw !important;
        scroll-snap-align: start;
        flex-shrink: 0 !important;
    }

    /* ── P3 : Footer centré ────────────────────────────── */
    .footer-top {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .footer-brand { text-align: center; }
    .footer-col   { text-align: center; }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-contact-list { align-items: center; }
    .footer-contact-item { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-cta-box { text-align: center; }
    .footer-bottom { text-align: center !important; }

    /* ── P4 : Boutons touch target 48px ───────────────── */
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .btn-whatsapp {
        min-height: 48px;
        justify-content: center;
        width: 100%;
    }
    .btn-whatsapp:active { transform: scale(.97); }

    /* ── P5 : Catégories services 1 colonne ────────────── */
    .srv-categories-grid {
        grid-template-columns: 1fr !important;
    }

    /* ── P6 : Subnav services vertical ─────────────────── */
    .srv-subnav .container {
        flex-direction: column !important;
        gap: .5rem !important;
    }
    .srv-subnav .btn {
        width: 100%;
        justify-content: center;
    }

    /* ── P7 : Typographie mobile ────────────────────────── */
    h1 { font-size: clamp(1.5rem, 7vw, 1.85rem) !important; line-height: 1.3; }
    h2 { font-size: clamp(1.3rem, 5.5vw, 1.6rem) !important; line-height: 1.4; }
    h3 { font-size: clamp(1.1rem, 4.5vw, 1.3rem) !important; line-height: 1.4; }
    p, .text-body { font-size: 16px !important; line-height: 1.7; }
    .slide-badge { font-size: 13px !important; }
}

@media (max-width: 480px) {
    /* Carousel carte plus étroite sur très petit écran */
    .product-card {
        min-width: 88vw !important;
        max-width: 88vw !important;
        width: 88vw !important;
    }
    /* Boutons slide en colonne */
    .slide-actions .btn {
        width: 100%;
        justify-content: center;
    }
    /* Hero encore plus compact */
    .slide-inner { padding-top: 28px !important; }
}

/* ============================================================
   PAGE CONTACT – DESIGN GLASSMORPHISME
   ============================================================ */
.ct-section {
    background:
        radial-gradient(circle at 15% 30%, rgba(107,75,190,.10) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(246,196,0,.07) 0%, transparent 50%),
        linear-gradient(160deg, #f8f7fb 0%, #ede8f5 100%);
    position: relative;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* ── Carte formulaire ─────────────────────────────────── */
.ct-card {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(75,46,131,.12);
    border: 1px solid rgba(255,255,255,.9);
}

.ct-card .eyebrow-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple-accent);
    background: rgba(107,75,190,.1);
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: .85rem;
}
.ct-card h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: .4rem;
    color: var(--text);
}
.ct-intro {
    font-size: .95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Formulaire */
.ct-form { display: flex; flex-direction: column; gap: .9rem; }
.ct-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.ct-field { display: flex; flex-direction: column; gap: .35rem; }
.ct-field label {
    font-family: 'Inter', sans-serif;
    font-size: .76rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
    padding: .8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: var(--text);
    background: rgba(255,255,255,.9);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(75,46,131,.12);
}
.ct-field textarea { resize: vertical; }

/* ── Colonne droite ───────────────────────────────────── */
.ct-info-wrap { display: flex; flex-direction: column; gap: 1.1rem; }

.ct-info-card {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 20px rgba(75,46,131,.09);
    border: 1px solid rgba(255,255,255,.85);
}
.ct-info-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--purple);
    margin-bottom: 1.25rem;
    padding-bottom: .65rem;
    border-bottom: 2px solid var(--yellow);
}

.ct-info-list { display: flex; flex-direction: column; gap: .9rem; }
.ct-info-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    text-decoration: none;
    transition: transform var(--transition);
}
a.ct-info-item:hover { transform: translateX(4px); }
a.ct-info-item:hover .ct-info-icon { background: var(--purple); color: var(--white); }

.ct-info-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(75,46,131,.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--purple);
    flex-shrink: 0;
    font-size: .88rem;
    transition: all var(--transition);
}
.ct-info-item span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-secondary);
    margin-bottom: .15rem;
}
.ct-info-item strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    font-weight: 600;
    color: var(--text);
}
a.ct-info-item strong { color: var(--purple); }

/* Carte réseaux sociaux */
.ct-social-card {
    background: rgba(45,27,78,.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(255,255,255,.1);
}
.ct-social-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.5);
    margin-bottom: 1rem;
}
.ct-social-links { display: flex; gap: .65rem; flex-wrap: wrap; }
.ct-social-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: .84rem;
    font-weight: 500;
    transition: all var(--transition);
    text-decoration: none;
}
.ct-social-btn:hover {
    background: rgba(255,255,255,.2);
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}
.ct-social-wa:hover { background: #25D366; border-color: #25D366; }

/* Carte badge intervention rapide */
.ct-badge-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
    border-radius: var(--radius-xl);
    padding: 1.4rem 1.6rem;
    box-shadow: 0 4px 16px rgba(246,196,0,.25);
}
.ct-badge-card > i {
    font-size: 1.35rem;
    color: var(--purple-dark);
    flex-shrink: 0;
    margin-top: .1rem;
}
.ct-badge-card strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: .2rem;
}
.ct-badge-card p {
    font-size: .85rem;
    color: rgba(45,27,78,.75);
    margin: 0;
}

/* Responsive contact */
@media (max-width: 1024px) {
    .ct-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
@media (max-width: 768px) {
    .ct-grid { grid-template-columns: 1fr; }
    .ct-row-2 { grid-template-columns: 1fr; }
    .ct-card { padding: 1.5rem; }
}
