.card2.bg-transparent{
    padding: 0px;
 }

 .all-ctt *::before, .all-ctt *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
 .all-ctt {
    --green-dark:  #00674b;
    --green-mid:   #00835e;
    --green-light: #c7e3d4;
    --green-pale:  #e8f5ee;
    --white:       #ffffff;
    --gray-50:     #f8f8f8;
    --gray-100:    #f0f0f0;
    --gray-200:    #e0e0e0;
    --gray-300:    #cccccc;
    --gray-400:    #aaaaaa;
    --gray-500:    #888888;
    --gray-600:    #666666;
    --gray-700:    #444444;
    --gray-900:    #1a1a1a;
    --red:         #c0392b;
    --red-light:   #fdecea;
    --amber:       #d4840a;
    --amber-light: #fff3e0;
    --text:        #2c2c2c;
    --radius:      12px;
    --radius-sm:   8px;

    /* section 1 */
    --bg-light: #c7e3d4;
    --brand-green: #00674b;
    --text-dark: #333333;
    --text-grey: #555555;
    --white: #ffffff;

 }
html { scroll-behavior: smooth; }
.all-ctt { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; font-size: 15px; }

/* TOP BAR */
.topbar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 7px 32px; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--gray-600); }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a { color: var(--gray-600); text-decoration: none; font-size: 12.5px; transition: color .2s; }
.topbar-right a:hover { color: var(--green-dark); }
.topbar-phone { color: var(--green-dark) !important; font-weight: 600 !important; }
.topbar-callback { background: var(--green-dark); color: var(--white) !important; padding: 4px 14px; border-radius: 4px; font-weight: 500 !important; }
.topbar-callback:hover { background: var(--green-mid) !important; }

/* MAIN NAV */
nav.ancien { background: var(--white); 
   /* border-bottom: 2px solid var(--green-light);  */
   padding: 0 32px; 
   display: flex; align-items: center; justify-content: space-between; 
   /* height: 60px;  */
   position: sticky; top: 0; z-index: 100; 
  /* box-shadow: 0 2px 10px rgba(0,0,0,.07); */
 }
 
.nav-logo img { height: 42px; display: block; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--green-dark); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { color: var(--gray-700); text-decoration: none; font-size: 13px; font-weight: 500; padding: 8px 12px; border-radius: var(--radius-sm); transition: color .2s, background .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--green-dark); background: var(--green-pale); }
.nav-specialites { color: var(--gray-700); font-size: 13px; font-weight: 600; padding: 8px 12px; cursor: pointer; }
.nav-contact-btn { background: var(--green-dark) !important; color: var(--white) !important; border-radius: 6px !important; }
.nav-contact-btn:hover { background: var(--green-mid) !important; }

/* BREADCRUMB */
.breadcrumb { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 9px 40px; font-size: 12.5px; color: var(--gray-500); }
.breadcrumb a { color: var(--green-dark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* HERO */
.hero { background: var(--green-light); padding: 70px 40px 60px; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; right: -80px; top: -80px; width: 420px; height: 420px; border-radius: 50%; background: rgba(0,103,75,.06); pointer-events: none; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 280px; align-items: center; gap: 48px; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--green-dark); color: var(--white); font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 18px; letter-spacing: .07em; text-transform: uppercase; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 44px); color: var(--green-dark); line-height: 1.18; margin-bottom: 16px; }
.hero h1 em { font-style: italic; color: var(--gray-700); }
.hero-sub { color: var(--gray-600); font-size: 14.5px; max-width: 500px; font-weight: 300; margin-bottom: 30px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-green { background: var(--green-dark); color: var(--white); font-weight: 600; font-size: 13.5px; padding: 11px 24px; border-radius: var(--radius-sm); text-decoration: none; transition: background .2s; display: inline-flex; align-items: center; gap: 7px; }
.btn-green:hover { background: var(--green-mid); }
.btn-outline { background: transparent; border: 1.5px solid var(--green-dark); color: var(--green-dark); font-weight: 500; font-size: 13.5px; padding: 11px 22px; border-radius: var(--radius-sm); text-decoration: none; transition: background .2s; display: inline-flex; align-items: center; gap: 7px; }
.btn-outline:hover { background: rgba(0,103,75,.08); }

.hero-stats { display: flex; flex-direction: column; gap: 12px; }
.hero-stat-card { background: var(--white); border-radius: var(--radius); padding: 16px 20px; text-align: center; border: 1px solid rgba(0,103,75,.15); }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--green-dark); display: block; line-height: 1; }
.hero-stat-label { font-size: 11px; color: var(--gray-500); margin-top: 3px; display: block; line-height: 1.3; }

/* ANCHOR NAV */
.anchor-nav { 
 background: var(--white); 
 border-bottom: 2px solid var(--gray-100); 
 padding: 0 40px; display: flex; 
 overflow-x: auto; position: sticky; 
 top: 55px; 
 z-index: 90; 
 overflow-y: hidden;
}

.body_mobile  .anchor-nav{
    top: 0px;
}

.anchor-nav a { padding: 14px 22px; font-size: 13px; font-weight: 500; color: var(--gray-600); text-decoration: none; white-space: nowrap; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color .2s, border-color .2s; display: flex; align-items: center; gap: 7px; }
.anchor-nav a:hover { color: var(--green-dark); border-bottom-color: var(--green-dark); }
.adot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* SECTIONS */
section { padding: 72px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag { display: inline-block; background: var(--green-light); color: var(--green-dark); font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 20px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); color: var(--gray-900); line-height: 1.2; margin-bottom: 12px; }
.section-desc { 
 /* color: var(--gray-500);  */
 color: #444444;
 font-size: 14.5px; 
 max-width: 540px; 
 font-weight: 400; margin-bottom: 44px; line-height: 1.7; }

/* SECTION 1 PROTOCOLE */
#protocole { 
  /* background: var(--white);  */
}
.proto-layout { display: grid; grid-template-columns: 1fr 290px; gap: 48px; align-items: start; }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 27px; top: 16px; bottom: 16px; width: 2px; background: linear-gradient(to bottom, var(--green-dark), var(--green-light)); }
.step { display: flex; gap: 22px; padding: 22px 0; position: relative; }
.step:not(:last-child) { border-bottom: 1px dashed var(--gray-100); }
.step-num { flex-shrink: 0; width: 56px; height: 56px; background: var(--green-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); position: relative; z-index: 1; border: 3px solid var(--white); outline: 2px solid var(--green-light); }
.step-body { flex: 1; padding-top: 7px; }
.step-period { display: inline-block; background: var(--green-light); color: var(--green-dark); font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 4px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.step h3 { font-size: 14.5px; font-weight: 600; color: var(--gray-900); margin-bottom: 5px; }
.step p { color: var(--gray-600); font-size: 13px; font-weight: 300; line-height: 1.65; }
.step-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.pill { background: var(--gray-100); color: var(--gray-600); font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 12px; border: 1px solid var(--gray-200); }

.proto-aside { background: var(--green-dark); border-radius: var(--radius); padding: 28px 24px; color: var(--white); position: sticky; top: 130px; }
.proto-aside h4 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--green-light); margin-bottom: 20px; }
.aside-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 15px; }
.aside-icon { width: 32px; height: 32px; background: rgba(199,227,212,.14); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.aside-text { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,.78); line-height: 1.5; }
.aside-text strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 1px; font-size: 13px; }

/* SECTION 2 URGENCES */
#urgences { background: var(--gray-50); }
.urg-alert { background: var(--red); border-radius: var(--radius); padding: 26px 32px; display: flex; align-items: center; gap: 22px; margin-bottom: 32px; flex-wrap: wrap; }
.urg-alert-icon { font-size: 34px; flex-shrink: 0; }
.urg-alert-text h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.urg-alert-text p { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 300; }
.urg-phone { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--red); font-weight: 700; font-size: 14.5px; padding: 11px 20px; border-radius: 8px; text-decoration: none; white-space: nowrap; }
.urg-phone:hover { background: var(--gray-100); }

.urg-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(295px, 1fr)); gap: 16px; }
.urg-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.urg-card:hover { box-shadow: 0 8px 22px rgba(0,0,0,.08); transform: translateY(-2px); }
.urg-card-head { padding: 15px 18px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--gray-100); }
.urg-icon { width: 40px; height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.urg-icon-red { background: var(--red-light); }
.urg-icon-amber { background: var(--amber-light); }
.urg-icon-green { background: var(--green-pale); }
.urg-card-title { font-size: 13.5px; font-weight: 600; color: var(--gray-900); }
.urg-card-body { padding: 14px 18px 18px; }
.urg-card-body > p { font-size: 12.5px; color: var(--gray-600); margin-bottom: 12px; font-weight: 300; }
.urg-step { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 7px; }
.urg-step-n { width: 18px; height: 18px; background: var(--gray-900); border-radius: 50%; color: var(--white); font-size: 9.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.urg-step p { font-size: 12px; color: var(--gray-600); line-height: 1.5; margin: 0; }

.urg-contact-bar { background: var(--green-dark); border-radius: var(--radius); padding: 26px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 26px; }
.urg-contact-bar h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.urg-contact-bar p { color: rgba(255,255,255,.62); font-size: 13px; font-weight: 300; }
.urg-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.urg-btn-white { 
    background: var(--white); color: var(--green-dark); font-weight: 700; 
    font-size: 13.5px; padding: 10px 18px; border-radius: 7px; text-decoration: none; 
    display: inline-flex; align-items: center; gap: 6px;
    /* white-space: nowrap;  */
}
.urg-btn-white:hover { background: var(--green-light); }
.urg-btn-ghost { 
    background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.28); color: var(--white); 
    font-size: 13.5px; font-weight: 500; padding: 10px 18px; 
    border-radius: 7px; text-decoration: none; display: inline-flex; 
    align-items: center; gap: 6px; 
}
.body_desktop .urg-btn-ghost , .body_desktop .urg-btn-white{
    white-space: nowrap;
}
.body_desktop .dt-flex-nowrap{
   flex-wrap: nowrap;
}
.urg-btn-ghost:hover { background: rgba(255,255,255,.18); }

/* SECTION 3 COMPLICATIONS */
#complications { background: var(--white); }
.compl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(305px, 1fr)); gap: 20px; }
.compl-card { border-radius: var(--radius); border: 1px solid var(--gray-200); padding: 22px 22px 18px; position: relative; overflow: hidden; transition: box-shadow .2s; background: var(--white); }
.compl-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.compl-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: var(--radius) var(--radius) 0 0; }
.compl-card-icon { width: 46px; height: 46px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 13px; }
.compl-card h3 { font-size: 14.5px; font-weight: 600; color: var(--gray-900); margin-bottom: 7px; }
.compl-card p { font-size: 13px; color: var(--gray-600); font-weight: 300; margin-bottom: 14px; line-height: 1.65; }
.compl-list { list-style: none; }
.compl-list li { font-size: 12px; color: var(--gray-600); padding: 5px 0; border-top: 1px solid var(--gray-100); display: flex; align-items: center; gap: 8px; }
.compl-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.compl-badge { display: inline-block; font-size: 10.5px; font-weight: 600; padding: 3px 10px; border-radius: 12px; margin-top: 11px; text-transform: uppercase; letter-spacing: .05em; }

.compl-guarantee { 
 /* background: var(--green-light);  */
 background: #f4f3f3ad;
 border: 1px solid rgba(0,103,75,.2); border-radius: var(--radius); padding: 34px 38px; margin-top: 32px; display: grid; 
 grid-template-columns:  0px 1fr; 
 gap: 26px; 
 align-items: center; }
.guarantee-icon { width: 64px; height: 64px; background: var(--green-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.compl-guarantee h4 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--green-dark); margin-bottom: 8px; }
.compl-guarantee p { font-size: 13.5px; color: var(--gray-700); font-weight: 300; line-height: 1.7; }

/* CTA */
.cta-section { 
    /* background: var(--green-dark);  */
    background: #c7e3d4;
    padding: 72px 40px; text-align: center; }
.cta-section h2 {
  font-family: 'Playfair Display', serif; 
  font-size: clamp(26px, 3.5vw, 38px); 
  /* color: var(--white);  */
  color: #00674b;
  margin-bottom: 14px; 
  text-align: center;
}

/* .cta-section p { color: rgba(255,255,255,.62); font-size: 15px; margin-bottom: 30px; font-weight: 300; } */
.cta-section p{
    color: #2b330b;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px !important;
    text-align: center;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-white { background: var(--white); color: var(--green-dark); font-weight: 700; padding: 13px 26px; border-radius: 8px; text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.cta-btn-white:hover { 
 /* background: var(--green-light); */
 background: #ecfff5;
}
.cta-btn-ghost { background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.3); color: var(--white); font-weight: 500; padding: 13px 26px; border-radius: 8px; text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.cta-btn-ghost:hover { background: rgba(255,255,255,.18); }

/* FOOTER */
.all-ctt footer { background: #111; padding: 26px 40px; text-align: center; color: rgba(255,255,255,.35); font-size: 12.5px; font-weight: 300; }
.all-ctt footer a { color: var(--green-light); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.fade-up   { animation: fadeUp .5s ease both; }
.fade-up-2 { animation: fadeUp .5s .1s ease both; }
.fade-up-3 { animation: fadeUp .5s .2s ease both; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media(max-width:860px) { .proto-layout { grid-template-columns: 1fr; } }
@media(max-width:680px) {
section { padding: 50px 20px; }
.hero { padding: 48px 20px 40px; }
.hero-inner { grid-template-columns: 1fr; }
.hero-stats { flex-direction: row; flex-wrap: wrap; }
.hero-stat-card { flex: 1; min-width: 100px; }
nav { padding: 0 20px; }
.nav-links { display: none; }
.topbar { padding: 7px 16px; }
.topbar-left { display: none; }
.anchor-nav {  padding: 0 16px; }
.breadcrumb { padding: 9px 20px; }
.urg-alert { flex-direction: column; text-align: center; }
.urg-phone { margin: 0 auto; }
.urg-contact-bar { text-align: center; justify-content: center; }
.compl-guarantee { grid-template-columns: 1fr; text-align: center; }
.guarantee-icon { margin: 0 auto; }
}
a.custom-link:hover{
color: var(--green-dark);
}
a.custom-link-2:hover{
 color: white;
}

#myHeader .trustpilot-widget {
  zoom: .9;
  margin-top: 12px !important;
}

.site-footer div.bg-secondary{
 margin-top: 0px !important;
}

#footer-2{
 margin-top: 0px !important;
}

.urg-h4{
  line-height: 1.4em;
  padding-bottom:17px;
}

/* section 1 */

#section_garantie {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    line-height: 1.6;
    color: var(--text-dark);
    /* margin: 0; */
    /* padding: 0; */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Garantie */
.section-warranty {
    /* background-color: var(--bg-light); */
    background-color: #f6f7f6;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 8px solid var(--brand-green);
}

/* Grille pour les autres sections */
.grid-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card2 {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

h2 {
    color: var(--brand-green);
    margin-top: 0;
}

h3 {
    color: var(--brand-green);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

.btn-action {
    display: inline-block;
    background-color: var(--brand-green);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: opacity 0.3s;
}

.btn-action:hover {
    opacity: 0.9;
}

.icon-shield {
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
}


.body_lang_ar #complications h4 , .body_lang_ar #urgences h4{
    background-position: right 0px !important;
}


body.body_lang_ar{
    border-top-width: 0px;
}

.body_lang_ar .fa-truck-medical{
    margin-top: .25rem !important;
}

