/* ============================================================
   RESET GLOBAL ELEMENTOR – Pleine largeur pour tous les widgets
   ============================================================ */

/* 1. Section Elementor parente sans padding */
[class*="elementor-widget-telecom_widget_"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

/* 2. Le container interne Elementor */
[class*="elementor-widget-telecom_widget_"] > .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
}

/* 3. Elementor v3 e-con containers */
.e-con:has([class*="telecom_widget_"]),
.e-con-inner:has([class*="telecom_widget_"]) {
    --padding-top: 0px !important;
    --padding-bottom: 0px !important;
    --padding-left: 0px !important;
    --padding-right: 0px !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* 4. Colonne parente */
.elementor-column:has([class*="telecom_widget_"]) {
    padding: 0 !important;
}


/* ============================================================
   Horizon Médical – Clinical Concierge Design System
   ============================================================ */

/* --- CSS Variables (Design Tokens) --- */
:root {
    --hm-primary:                  #2357ba;
    --hm-primary-container:        #4370d5;
    --hm-on-primary:               #ffffff;
    --hm-secondary:                #4a5f80;
    --hm-tertiary:                 #676000;
    --hm-tertiary-fixed:           #f5e600;
    --hm-gold:                     #b8972a;
    --hm-surface:                  #f9f9ff;
    --hm-surface-low:              #f0f3ff;
    --hm-surface-lowest:           #ffffff;
    --hm-surface-high:             #dee8ff;
    --hm-surface-highest:          #d5e3ff;
    --hm-on-surface:               #021c39;
    --hm-on-surface-variant:       #434653;
    --hm-outline-variant:          #c3c6d5;
    --hm-font-headline:            'Manrope', sans-serif;
    --hm-font-body:                'Inter', sans-serif;
    --hm-radius-md:                0.75rem;
    --hm-radius-lg:                1rem;
    --hm-radius-xl:                1.5rem;
    --hm-radius-2xl:               2rem;
    --hm-radius-3xl:               2.5rem;
    --hm-shadow-ambient:           0 20px 40px rgba(2, 28, 57, 0.06);
    --hm-shadow-card:              0 4px 20px rgba(2, 28, 57, 0.08);
    --hm-shadow-hover:             0 20px 60px rgba(2, 28, 57, 0.14);
    --hm-gradient-hero:            linear-gradient(135deg, #2357ba 0%, #4370d5 100%);
}

/* --- Material Symbols --- */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined', sans-serif;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

/* ============================================================
   WIDGET: NAVBAR
   ============================================================ */
.hm-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(195, 198, 213, 0.18);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.hm-navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--hm-shadow-ambient);
}
.hm-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
}
.hm-navbar__logo {
    font-family: var(--hm-font-headline);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    color: var(--hm-primary);
    text-decoration: none;
}
.hm-navbar__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.hm-navbar__links a {
    font-family: var(--hm-font-headline);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: -0.01em;
    color: var(--hm-on-surface-variant);
    text-decoration: none;
    transition: color 0.2s;
}
.hm-navbar__links a:hover,
.hm-navbar__links a.active {
    color: var(--hm-gold);
}
.hm-navbar__links a.active {
    border-bottom: 2px solid var(--hm-gold);
    padding-bottom: 2px;
}
.hm-navbar__cta {
    font-family: var(--hm-font-headline);
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--hm-gradient-hero);
    color: #fff;
    border: none;
    border-radius: var(--hm-radius-md);
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    text-decoration: none;
}
.hm-navbar__cta:hover { opacity: 0.88; transform: scale(0.98); }
.hm-navbar__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.hm-navbar__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--hm-on-surface);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 768px) {
    .hm-navbar__links { display: none; }
    .hm-navbar__burger { display: flex; }
    .hm-navbar__links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.97);
        padding: 1.5rem 2rem;
        gap: 1.5rem;
        box-shadow: var(--hm-shadow-card);
    }
}

/* ============================================================
   ELEMENTOR FULL-WIDTH OVERRIDES
   Force tous les widgets à occuper 100% de la largeur
   en neutralisant les marges/paddings d'Elementor
   ============================================================ */

/* Colonne Elementor contenant nos widgets → zéro padding */
.elementor-widget-telecom_widget_hero,
.elementor-widget-telecom_widget_services,
.elementor-widget-telecom_widget_testimonials,
.elementor-widget-telecom_widget_infrastructure,
.elementor-widget-telecom_widget_navbar,
.elementor-widget-telecom_widget_footer {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.elementor-widget-telecom_widget_hero .elementor-widget-container,
.elementor-widget-telecom_widget_services .elementor-widget-container,
.elementor-widget-telecom_widget_testimonials .elementor-widget-container,
.elementor-widget-telecom_widget_infrastructure .elementor-widget-container,
.elementor-widget-telecom_widget_navbar .elementor-widget-container,
.elementor-widget-telecom_widget_footer .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Section/colonne Elementor parente → zéro padding */
.elementor-widget-telecom_widget_hero .elementor-column,
.elementor-widget-telecom_widget_hero .elementor-col-100,
.elementor-section:has(.elementor-widget-telecom_widget_hero),
.elementor-section:has(.elementor-widget-telecom_widget_services),
.elementor-section:has(.elementor-widget-telecom_widget_testimonials),
.elementor-section:has(.elementor-widget-telecom_widget_infrastructure),
.elementor-section:has(.elementor-widget-telecom_widget_navbar),
.elementor-section:has(.elementor-widget-telecom_widget_footer) {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Elementor v3 flex containers */
.e-con:has(.elementor-widget-telecom_widget_hero),
.e-con:has(.elementor-widget-telecom_widget_services),
.e-con:has(.elementor-widget-telecom_widget_testimonials),
.e-con:has(.elementor-widget-telecom_widget_infrastructure),
.e-con:has(.elementor-widget-telecom_widget_navbar),
.e-con:has(.elementor-widget-telecom_widget_footer) {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    --padding-top: 0px !important;
    --padding-bottom: 0px !important;
    --padding-left: 0px !important;
    --padding-right: 0px !important;
}

/* ============================================================
   WIDGET: HERO
   ============================================================ */
.hm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--hm-gradient-hero);
    padding-top: 80px;
    width: 100%;
    box-sizing: border-box;
}
.hm-hero__bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hm-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
    opacity: 0.3;
}
.hm-hero__dots {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hm-hero__dot {
    position: absolute;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    animation: hm-pulse 4s ease-in-out infinite;
}
.hm-hero__dot:nth-child(1) { width:6px; height:6px; top:25%; left:25%; animation-delay:0s; }
.hm-hero__dot:nth-child(2) { width:10px; height:10px; top:50%; left:33%; animation-delay:.8s; }
.hm-hero__dot:nth-child(3) { width:6px; height:6px; top:33%; right:25%; animation-delay:1.6s; }
.hm-hero__dot:nth-child(4) { width:14px; height:14px; bottom:25%; right:33%; animation-delay:2.4s; }
@keyframes hm-pulse {
    0%,100% { transform: scale(1); opacity:.35; }
    50%      { transform: scale(1.6); opacity:.6; }
}
.hm-hero__mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(at 0% 0%,   rgba(184,151,42,.18) 0, transparent 50%),
        radial-gradient(at 50% 0%,  rgba(35,87,186,.12)  0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(184,151,42,.18) 0, transparent 50%);
}
.hm-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}
.hm-hero__badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: var(--hm-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: hm-fade-up 0.7s ease both;
}
.hm-hero__title {
    font-family: var(--hm-font-headline);
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 1.5rem;
    animation: hm-fade-up 0.8s 0.1s ease both;
}
.hm-hero__subtitle {
    font-family: var(--hm-font-body);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(220,232,255,0.92);
    max-width: 640px;
    margin: 0 0 3rem;
    animation: hm-fade-up 0.8s 0.2s ease both;
}
.hm-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    border-radius: var(--hm-radius-xl);
    background: var(--hm-gold);
    color: #fff;
    font-family: var(--hm-font-headline);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(184,151,42,0.3);
    transition: opacity 0.2s, transform 0.2s;
    animation: hm-fade-up 0.8s 0.3s ease both;
}
.hm-hero__cta:hover { opacity: 0.88; transform: translateY(-2px); }
@keyframes hm-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   WIDGET: SERVICES
   ============================================================ */
.hm-services {
    padding: 6rem 2rem;
    background: var(--hm-surface);
}
.hm-services__inner { max-width: 1280px; margin: 0 auto; }
.hm-services__header { margin-bottom: 4.5rem; }
.hm-services__title {
    font-family: var(--hm-font-headline);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -0.025em;
    color: var(--hm-on-surface);
    margin: 0 0 1rem;
    line-height: 1.1;
}
.hm-services__title-bar {
    width: 5rem;
    height: 6px;
    background: var(--hm-gold);
    border-radius: 99px;
}
.hm-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 960px) { .hm-services__grid { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 960px) { .hm-services__grid { grid-template-columns: repeat(2,1fr); } }

.hm-service-card {
    background: var(--hm-surface-lowest);
    border-radius: var(--hm-radius-3xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--hm-shadow-card);
    border: 1px solid rgba(195,198,213,0.12);
    transition: box-shadow 0.4s, transform 0.4s;
    opacity: 0;
    transform: translateY(30px);
}
.hm-service-card.hm-visible {
    animation: hm-fade-up 0.65s ease forwards;
}
.hm-service-card:hover {
    box-shadow: var(--hm-shadow-hover);
    transform: translateY(-4px);
}
.hm-service-card__icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: var(--hm-radius-lg);
    background: rgba(35,87,186,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: background 0.3s, color 0.3s;
    color: var(--hm-primary);
    font-size: 1.8rem;
}
.hm-service-card:hover .hm-service-card__icon-wrap {
    background: var(--hm-primary);
    color: #fff;
}
.hm-service-card__title {
    font-family: var(--hm-font-headline);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--hm-on-surface);
    margin: 0 0 1rem;
}
.hm-service-card__desc {
    font-family: var(--hm-font-body);
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}
.hm-service-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}
.hm-service-card__features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--hm-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--hm-on-surface-variant);
}
.hm-service-card__features .hm-check {
    color: #22c55e;
    font-size: 1.1rem;
}
.hm-service-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    border-radius: var(--hm-radius-xl);
    background: var(--hm-gold);
    color: #fff;
    font-family: var(--hm-font-headline);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
}
.hm-service-card__btn:hover { opacity: 0.88; }

/* ============================================================
   WIDGET: TESTIMONIALS
   ============================================================ */
.hm-testimonials {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    background: var(--hm-primary);
}
.hm-testimonials__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hm-testimonials__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
}
.hm-testimonials__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}
.hm-testimonials__headline {
    font-family: var(--hm-font-headline);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -0.025em;
    color: #fff;
    text-align: center;
    margin: 0 0 4rem;
    line-height: 1.2;
}
.hm-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) { .hm-testimonials__grid { grid-template-columns: 1fr; } }

.hm-testi-card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--hm-radius-3xl);
    padding: 3rem;
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    transition: transform 0.4s;
}
.hm-testi-card:hover { transform: translateY(-4px); }
.hm-testi-card__avatar {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: var(--hm-radius-lg);
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(2,28,57,0.14);
}
.hm-testi-card__body { flex: 1; }
.hm-testi-card__quote {
    font-family: var(--hm-font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--hm-on-surface);
    font-style: italic;
    margin: 0 0 1rem;
}
.hm-testi-card__name {
    font-family: var(--hm-font-headline);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--hm-primary);
}
.hm-testi-card__role {
    font-family: var(--hm-font-body);
    font-size: 0.8rem;
    color: #64748b;
}
@media (max-width: 500px) {
    .hm-testi-card { flex-direction: column; }
}

/* ============================================================
   WIDGET: INFRASTRUCTURE
   ============================================================ */
.hm-infrastructure {
    padding: 6rem 2rem;
    background: var(--hm-surface-low);
}
.hm-infrastructure__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 900px) {
    .hm-infrastructure__inner { flex-direction: column; gap: 3rem; }
}
.hm-infrastructure__text { flex: 1; }
.hm-infrastructure__title {
    font-family: var(--hm-font-headline);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    letter-spacing: -0.025em;
    color: var(--hm-on-surface);
    line-height: 1.1;
    margin: 0 0 1.5rem;
}
.hm-infrastructure__desc {
    font-family: var(--hm-font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--hm-on-surface-variant);
    margin: 0 0 2.5rem;
    max-width: 520px;
}
.hm-infrastructure__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: var(--hm-radius-xl);
    background: var(--hm-gold);
    color: #fff;
    font-family: var(--hm-font-headline);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
}
.hm-infrastructure__btn:hover { opacity: 0.88; transform: translateY(-2px); }
.hm-infrastructure__media { flex: 1; }
.hm-infrastructure__img-wrap {
    position: relative;
    border-radius: var(--hm-radius-3xl);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(2,28,57,0.18);
}
.hm-infrastructure__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.hm-infrastructure__img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(35,87,186,0.1);
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* ============================================================
   WIDGET: FOOTER
   ============================================================ */
.hm-footer {
    padding: 3.5rem 2rem;
    background: var(--hm-surface-low);
    border-top: 1px solid rgba(195,198,213,0.25);
}
.hm-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
@media (max-width: 640px) {
    .hm-footer__inner { grid-template-columns: 1fr; }
    .hm-footer__links { justify-content: flex-start; }
}
.hm-footer__brand {
    font-family: var(--hm-font-headline);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hm-primary);
    display: block;
    margin-bottom: 0.5rem;
}
.hm-footer__copy {
    font-family: var(--hm-font-body);
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}
.hm-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hm-footer__links a {
    font-family: var(--hm-font-body);
    font-size: 0.82rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
    text-underline-offset: 4px;
}
.hm-footer__links a:hover {
    color: var(--hm-gold);
    text-decoration: underline;
    text-decoration-color: var(--hm-gold);
}

/* ============================================================
   ELEMENTOR EDITOR: Placeholder icons
   ============================================================ */
.elementor-widget-telecom_widget_hero .elementor-widget-container,
.elementor-widget-telecom_widget_services .elementor-widget-container,
.elementor-widget-telecom_widget_testimonials .elementor-widget-container,
.elementor-widget-telecom_widget_infrastructure .elementor-widget-container,
.elementor-widget-telecom_widget_navbar .elementor-widget-container,
.elementor-widget-telecom_widget_footer .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
}

/* ============================================================
   SCROLL REVEAL utility
   ============================================================ */
.hm-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.hm-reveal.hm-visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   BREAKOUT FORCÉ – Hero & Testimonials pleine largeur
   Neutralise le max-width du thème WordPress parent
   ============================================================ */

/* Technique du "full-bleed" : sort du flux du thème */
.elementor-widget-telecom_widget_hero,
.elementor-widget-telecom_widget_testimonials {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

.elementor-widget-telecom_widget_hero > .elementor-widget-container,
.elementor-widget-telecom_widget_testimonials > .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.elementor-widget-telecom_widget_hero .hm-hero,
.elementor-widget-telecom_widget_testimonials .hm-testimonials {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

/* Override thème : neutralise le container du thème parent */
.elementor-section-wrap,
.elementor-section,
.elementor-container {
    max-width: 100% !important;
}

/* Spécifique à la section Elementor parente du Hero et Témoignages */
.elementor-section:has(.elementor-widget-telecom_widget_hero),
.elementor-section:has(.elementor-widget-telecom_widget_testimonials),
.e-con:has(.elementor-widget-telecom_widget_hero),
.e-con:has(.elementor-widget-telecom_widget_testimonials) {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    left: 0 !important;
}

/* Colonne parente */
.elementor-column:has(.elementor-widget-telecom_widget_hero),
.elementor-column:has(.elementor-widget-telecom_widget_testimonials) {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

/* ============================================================
   OVERRIDE THÈME – Wrappers courants neutralisés
   Compatible : Astra, Hello, OceanWP, GeneratePress,
   Kadence, Blocksy, Neve, Sydney, thèmes customs
   ============================================================ */

/* Wrappers thème communs */
body:has(.elementor-widget-telecom_widget_hero) .site-content,
body:has(.elementor-widget-telecom_widget_hero) .content-area,
body:has(.elementor-widget-telecom_widget_hero) .content-wrap,
body:has(.elementor-widget-telecom_widget_hero) .site-main,
body:has(.elementor-widget-telecom_widget_hero) main,
body:has(.elementor-widget-telecom_widget_hero) #main,
body:has(.elementor-widget-telecom_widget_hero) #content,
body:has(.elementor-widget-telecom_widget_hero) #page,
body:has(.elementor-widget-telecom_widget_hero) .page-content,
body:has(.elementor-widget-telecom_widget_hero) .entry-content,
body:has(.elementor-widget-telecom_widget_hero) .container,
body:has(.elementor-widget-telecom_widget_hero) .container-fluid,
body:has(.elementor-widget-telecom_widget_hero) .wp-site-blocks,
body:has(.elementor-widget-telecom_widget_hero) .elementor-page {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Neutralise overflow:hidden qui coupe les sections */
body,
html {
    overflow-x: hidden !important;
}
