
:root{
    --primaryColor-: #ff751f;
    --primaryColor: #ff751f;
    --primaryColorLight : rgba(0, 153, 79,.1);
    --secondaryColor: #ff751f;
    --redColor: #D50000;
    --redColorLight: #d5000012;
    --bgGray: rgb(236, 240, 237);
    --blackColor: #202020;
    --textDefaultColor: rgba(16, 16, 16, 0.7);
    --grayLightColor: rgba(16, 16, 16, 0.05);
    --defaultBorderRadius: 15px;
    --btnRadius: 30px;
    --defaultPadding: 20px;
    --fontSizeInput: 19px;
    --heightInput: 50px;
}



html, body {
    margin: 0;
    background-color: var(--bgGray) !important;
    color: black;
}
*, a{
    box-sizing: border-box;
    font-family: 'League Spartan', sans-serif;
    color: var(--textDefaultColor);
    font-size: 18px;
    font-weight: 300;
}
a{
    text-decoration: none;
    transition: 0.3s ease;
}
a:hover, a:active, a:focus{
    color: var(--textDefaultColor);
    text-decoration: none;
}
h1, h2, h3, h4{
    margin: 0;
    font-weight: 500;
}
h1 *, h2 *, h3 *, h4 * {
    font-weight: inherit; /* reprend le font-weight du parent */
    font-size: inherit;   /* reprend la taille du parent */
}
b{
    font-weight:6500;
}
input, textarea{
    border-radius: var(--defaultBorderRadius) !important;
    
}

/* 
    DEFAULT 
*/
.e-hide-desktop{
    display: none;
}
.e-img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.e-container{
    padding: 0 150px;
}
.e-radius{
    border-radius: var(--defaultBorderRadius) !important;
    overflow: hidden !important;
}
.e-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    background-color: var(--primaryColor);
    color: var(--textDefaultColor);
    padding: 0px 20px;
    transition: 0.3s ease;
    color: black;
    cursor: pointer;
    border: none;
    border-radius: var(--btnRadius);
}
.e-btn:hover{
    transition: 0.3s ease;
}
.e-btn ion-icon {
    margin-left: 5px;
}
.e-btn.e-no-bg{
    background-color: transparent;
    padding: 0px;
}
.e-color-black{
    color: black;
}
.e-color-primary{
    color: var(--primaryColor);
}


/* 
    HEAD 
*/
.e-head{
    height: 100% !important;
    margin-bottom: 0 !important;
    padding: 0;
    background-color: #ffffff  !important;
}

/* Navbar */
.e-head .e-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background-color: white;
    margin: 0;
    position: relative;
    z-index: 10;
    padding: 0 150px;
}
.e-head .e-top {
    min-height: 60px;
}
.e-navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.e-navbar .logo {
    padding-top: 5px;
    font-size: 22px;
    font-weight: bold;
}
.e-navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}
.e-navbar .nav-links li > a {
    display: inline-block;
    padding: 5px 0px;
    text-decoration: none;
    position: relative;
}
.e-navbar  .nav-links li a.e-contact {
    background-color: var(--primaryColor);
    padding: 5px 15px;
}
.e-navbar .nav-links li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: var(--textDefaultColor);
    transition: width 0.3s ease;
}
.e-navbar .nav-links li > a:not(.e-contact):hover::after {
    width: 100%;
}
.e-navbar .menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Main content */
.e-head{
    padding-bottom: 50px;
}
.e-head .e-main-content{
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    margin: 0 0px;
    padding: 80px;
}
.e-head .e-card-number {
    margin-bottom: 30px;
}
.e-head .e-card-number h1 {
    color: var(--primaryColor);
    font-size: 35px;
    font-weight: 800;
}
.e-head .e-card-number h1 * {
    color: var(--primaryColor);
    font-size: 15px;
    font-weight: 500;
}
.e-head .e-card-number div {
}






/* SERVICES */
/* ── Card ───────────────────────────────────────────── */
.e-card-service {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: var(--defaultBorderRadius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding: 12px;
}
.e-card-service.e-primary {
    background-color: var(--primaryColor);
    display: flex;
    flex-direction: column;   /* organise les enfants en colonne */
    justify-content: center;  /* centre verticalement */
    align-items: start;      /* centre horizontalement */
    text-align: left;       /* centre le texte à l’intérieur de card__body */
}

.e-card-service.e-primary .card__body {
    width: 90%;               /* limite la largeur du texte pour ne pas coller aux bords */
}
.e-card-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}
/* ── Image ──────────────────────────────────────────── */
.e-card-service .card__image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.e-card-service .card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    transition: transform 0.4s ease;
}
/* ── Body ───────────────────────────────────────────── */
.e-card-service .card__body {
    padding-top: 20px;
}
/* Category label */
.card__title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: black;
    margin-bottom: 5px;
}
/* Title */
.card__desc {
    margin-bottom: 60px;

    display: -webkit-box;
    -webkit-line-clamp: 9;   /* limite à 3 lignes */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* ── Arrow button ───────────────────────────────────── */
.e-card-service .card__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    padding: 0 20px 18px;
}
.e-card-service .card__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0efed;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}
.e-card-service:hover .card__arrow {
    background: #1a1a1a;
    transform: rotate(45deg);
}
.e-card-service .card__arrow svg {
    width: 16px;
    height: 16px;
    stroke: #1a1a1a;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s ease;
}
.e-card-service:hover .card__arrow svg {
    stroke: #ffffff;
}



/* 
    CONTACT
*/
.e-contact-content .e-icon{
}
.e-contact-content .e-icon i{
    color: var(--primaryColor);
    font-size: 25px;
}

/* 
    ACTUALITY
*/
.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.news-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.news-card:hover {
    transform: translateY(-5px);
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-content {
    padding: 20px;
}

.news-date {
    font-size: 0.85rem;
    color: #777;
}
.news-title {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #333;
}
.news-desc {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.news-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #2E8B57;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
}
.news-btn:hover {
    background-color: #256f47;
}


/* 
    -
 */
.e-img-befor-footer{
    width: 60%;
}



/*  */
.lang-switcher a {
    text-decoration: none;
}
.lang-switcher a.e-selected {
    color: var(--primaryColor); /* ta couleur primaire */
    font-weight: 600;
    text-decoration: underline;
}





/* NOS VALEUR */
/* ── Section ─────────────────────────────────────────── */
  
    /* ── Header ─────────────────────────────────────────── */
    .why-heading {
      font-weight: 700;
      font-size: 35px;
      letter-spacing: -0.5px;
      margin-bottom: 0px;
    }
    .why-heading span {
      color: var(--primaryColor);
    }
    .why-sub {
      color: rgba(30,30,30,0.55);
      max-width: 580px;
      margin: 0px;
    }

    /* ── Image ──────────────────────────────────────────── */
    .why-image {
      width: 100%;
      height: 100%;
      min-height: 380px;
      object-fit: cover;
      border-radius: 16px;
      display: block;
    }

    /* ── Feature cards grid ─────────────────────────────── */
    .cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      height: 100%;
    }

    .feature-card {
      background: #f7faf8;
      border-radius: 14px;
      padding: 15px 15px;
      border: 1px solid rgba(45,90,61,0.08);
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .feature-card:hover {
      box-shadow: 0 8px 28px rgba(45,90,61,0.10);
      transform: translateY(-3px);
    }

    /* Icon circle */
    .icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255,117,31,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .icon-circle i {
      color: #ff751f;
    }

    .card-title {
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 0px;
        margin-top: 0;
    }

    .card-text {
        margin-top: 0;
      color: rgba(30,30,30,0.55);
    }



/* ── Footer wrapper ─────────────────────────────────── */
/* ── Footer shell ───────────────────────────────────── */
    footer {
      width: 100%;
      background: #ffffff;
      color: #1a1a1a;
      padding: 56px 72px 32px;
      position: relative;
      overflow: hidden;
    }

    /* ── Brand ──────────────────────────────────────────── */
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    .brand-logo svg { width: 30px; height: 30px; flex-shrink: 0; }

    .brand-name {
      font-weight: 700;
      letter-spacing: -0.3px;
      color: #1a1a1a;
    }

    .tagline {
      color: rgba(30,30,30,0.60);
      margin-bottom: 22px;
    }

    /* ── Social buttons ─────────────────────────────────── */
    .social-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #ff751f;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(255,117,31,0.30);
      transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .social-btn:hover {
      background: #ff8c3a;
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(255,117,31,0.40);
    }
    .social-btn i {
      color: #ffffff;
    }

    /* ── Nav links ──────────────────────────────────────── */
    .footer-nav a {
      color: black;
      font-weight: 400;
      margin-bottom: 14px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      position: relative;
      transition: color 0.2s;
    }
    .footer-nav a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0;
      width: 0; height: 1px;
      background: #ff751f;
      transition: width 0.25s ease;
    }
    .footer-nav a:hover { color: #1a1a1a; }
    .footer-nav a:hover::after { width: 100%; }

    /* ── Address / Contact ──────────────────────────────── */
    .col-title {
      font-weight: 400;
      color: black;
      margin-top: 10px;
      margin-bottom: 0px;
      padding-bottom: 0;
    }

    /* ── Newsletter ─────────────────────────────────────── */
    .newsletter-title {
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 26px;
      letter-spacing: -0.4px;
    }

    .input-row {
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(0,0,0,0.15);
      padding: 8px 0px 8px 0px;
      transition: border-color 0.25s, background 0.25s;
    }
    .input-row:focus-within {
      border-color: #ff751f;
      background: rgba(0,0,0,0.06);
    }
    .input-row input {
        font-size: 18px;
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: black;
    }
    .input-row input::placeholder { color: rgba(30,30,30,0.40); }

    .submit-btn {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: #ff751f;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(255,117,31,0.35);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .submit-btn:hover {
      background: #ff8c3a;
      transform: scale(1.08);
      box-shadow: 0 4px 14px rgba(255,117,31,0.45);
    }
    .submit-btn i { color: #ffffff; }

    /* ── Divider ────────────────────────────────────────── */
    .footer-divider {
      border: none;
      border-top: 1px solid rgba(0,0,0,0.10);
      margin: 36px 0 24px;
    }

    /* ── Bottom bar ─────────────────────────────────────── */
    .copy {
      color: rgba(30,30,30,0.45);
      margin: 0;
    }
    .legal-links a {
      color: rgba(30,30,30,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .legal-links a:hover { color: #1a1a1a; }