:root {
  --blue-dark: #0B2C5F;
  --blue-main: #1F4E79;
  --blue-light: #EAF2FB;
  --orange-main: #F28C28;
  --beige-bg: #FBF6F0;
  --white: #FFFFFF;
  --gray-text: #555;
  --gray-light: #f2f2f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: var(--beige-bg);
  color: var(--gray-text);
  line-height: 1.6;
  background: #f8f9fa;
  text-align: justify;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: var(--white);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
}

.navbar nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.download-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;

  background:#07B0F7;
  color:#fff;
  padding:14px 26px;
  border-radius:10px;

  text-decoration:none;
  font-weight:600;
  font-size:16px;

  box-shadow:0 6px 18px rgba(1,155,218,0.25);
  transition:all .25s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar nav a {
  margin-left: 30px;
  font-weight: 500;
  color: var(--blue-dark);
  position: relative;
}

.navbar nav a:hover {
  color: var(--orange-main);
}

/* ── Bouton hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--blue-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animation croix */
.hamburger.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 16px 24px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .navbar nav a {
    margin-left: 0;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
  }

  .navbar nav a:last-child {
    border-bottom: none;
  }
}

/* =========================
   HERO SOURX
========================= */

.hero-offer {
  position: relative;
  background: #F6EFE7;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-left-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 85px;
  height: 100%;
  background: #2E6F9B;
}

.hero-logo {
  position: absolute;
  top: 40px;
  left: 130px;
  height: 35px;
}

.grid {
  position: absolute;
  width: 160px;
  opacity: .8;
}

.grid-top {
  top: 0px;
  right: 90px;
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 80px 80px 40px;
}

.hero-text {
  max-width: 720px;
  position: relative;
}

.hero-text h1 {
  font-size: 50px;
  color: #1E8FB8;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 40px;
}

.hero-text h1 span {
  display: block;
  margin-top: 10px;
  margin-left: 15%;
}

.hero-left-image {
  width: 700px;
  border-radius: 30px;
  overflow: hidden;
}

.hero-left-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 30px;
}

.hero-seal {
  position: absolute;
  left: 740px;
  top: 230px;
  width: 110px;
}

.hero-image-wrapper {
  position: relative;
  left: 130px;
  bottom: 50px;
  width: 700px;
  border-radius: 30px;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 30px;
}


/* =========================
   RESPONSIVE — TABLETTE (769px–1024px)
========================= */

@media (min-width: 769px) and (max-width: 1024px) {

  .hero-offer {
    min-height: auto;
  }

  .hero-left-bar {
    width: 60px;
  }

  .hero-logo {
    left: 90px;
    top: 28px;
    height: 28px;
  }

  .grid-top {
    width: 110px;
    right: 20px;
  }

  .hero-container {
    padding: 100px 30px 60px 20px;
    gap: 20px;
  }

  .hero-text {
    max-width: 420px;
  }

  .hero-text h1 {
    position: relative;
    font-size: 31px;
    left: 100px;
    margin-bottom: 28px;
  }

  .hero-text h1 span {
    margin-left: 10%;
  }

  .hero-left-image {
    position: relative;
    left: 50px;
    width: 100%;
    border-radius: 20px;
  }

  .hero-seal {
    left: auto;
    right: -150px;
    top: 200px;
    width: 80px;
  }

  .hero-image-wrapper {
    left: 20px;
    bottom: 20px;
    width: 380px;
    border-radius: 20px;
  }
}


/* =========================
   RESPONSIVE — MOBILE (≤ 768px)
========================= */

@media (max-width: 768px) {

  .hero-offer {
    min-height: auto;
    align-items: flex-start;
    padding-bottom: 48px;
  }


  .hero-left-bar {
    width: 5px;
  }

  .hero-logo {
    position: absolute;
    top: 20px;
    left: 24px;
    height: 28px;
    z-index: 10;
  }

  .grid-top {
    display: none;
  }

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 0 20px;
    gap: 0;
  }

  .hero-text {
    max-width: 100%;
    width: 100%;
    position: relative;
  }

  .hero-text h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.25;
    text-align: center;
  }

  .hero-text h1 span {
    display: inline;
    margin-left: 0;
    margin-top: 0;
  }

  .hero-left-image {
    width: 100%;
    height: 210px;
    border-radius: 18px;
    overflow: hidden;
  }

  .hero-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
  }

  .hero-seal {
    position: absolute;
    left: auto;
    right: 12px;
    top: auto;
    bottom: -44px; 
    width: 72px;
    z-index: 5;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  }

  .hero-text::after {
    content: '';
    display: block;
    height: 28px;
  }

  .hero-image-wrapper {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 20px;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    border-radius: 18px;
  }
}


/* =========================
   RESPONSIVE — TRÈS PETIT (≤ 380px)
========================= */

@media (max-width: 380px) {

  .hero-logo {
    height: 22px;
    left: 18px;
    top: 16px;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .hero-left-image {
    height: 175px;
  }

  .hero-image-wrapper {
    height: 185px;
  }

  .hero-seal {
    width: 58px;
    right: 8px;
    bottom: -38px;
  }
}




/* =========================
   SECTION GENERALE
========================= */
.section {
  padding-left: 6%;
  padding-right: 6%;
  padding-top: 80px;
  background: var(--white);
}

/* =====================================================
   SECTION PRESENTATION SOURX
===================================================== */

.presentation-sourx{
  background:#f3f3f3;
  padding:80px 6% 90px;
}

/* ===== TITRE PRINCIPAL ===== */

.section-title{
  font-size:56px;
  font-weight:600;
  color:#3F79A6;
  margin-bottom:70px;
  position:relative;
  padding-left:20px;
}

/* barre verticale fine à gauche du titre */
.section-title::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:3px;
  height:52px;
  background:#3F79A6;
}

/* ===== LAYOUT 2 COLONNES ===== */

.presentation-layout{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:90px;
  align-items:flex-start;
}

/* ===== TITRES BLOCS ===== */

.block-title{
  font-size:26px;
  font-weight:600;
  margin-bottom:18px;
  color:#111;
  display:flex;
  align-items:center;
  gap:10px;
}


.identity-block .block-title{
  border-bottom:2px solid #8DA3BE;
  padding-bottom:10px;
  margin-bottom:25px;
}

/* ===== TABLE IDENTITE ===== */

.identity-table{
  width:100%;
  border-collapse:collapse;
  font-size:22px;
}

.identity-table th{
  text-align:left;
  font-weight:600;
  padding:20px 22px;
  width:40%;
  color:#111;
}

.identity-table td{
  padding:20px 22px;
  font-weight:500;
}

/* bandes gris bleuté comme sur le document */
.identity-table tr:nth-child(2) td{
  background:#AEB7C6;
}

.identity-table tr:nth-child(4) td{
  background:#AEB7C6;
}

/* fine ligne basse */
.identity-table tr:last-child td{
  border-bottom:2px solid #8DA3BE;
}


.organisation-block p{
  font-size:22px;
  line-height:1.7;
  margin-bottom:26px;
  color:#222;
  max-width:850px;
}

.organisation-block strong{
  color:#3F79A6;
  font-weight:700;
}


@media (max-width:1100px){

  .section-title{
    font-size:40px;
  }

  .presentation-layout{
    grid-template-columns:1fr;
    gap:50px;
  }

  .identity-table{
    font-size:18px;
  }

  .organisation-block p{
    font-size:18px;
  }
}


/* =====================================================
   SECTION ACTIVITES SOURX
===================================================== */

.activities-section{
  background:#f3f3f3;
  padding:80px 6% 110px;
}

.activities-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:40px;
}

.activities-header h2{
  font-size:64px;
  font-weight:800;
  color:#000;
}

.activities-grid-deco{
  width:140px;
  opacity:.8;
}

.activities-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 70px;
}


.activity-row{
  display:flex;
  gap:20px;
  align-items:stretch;
}

/* bande verticale */
.activity-side{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  color:#fff;
  font-size:14px;
  font-weight:700;
  padding:18px 10px;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

.activity-side.blue{ background:#1E8FB8; }
.activity-side.cyan{ background:#1C9AC6; }
.activity-side.dark{ background:#2F5D8C; }

.activity-box{
  border:2px solid #2F5D8C;
  padding:24px 28px;
  font-size:20px;
  line-height:1.7;
  background:#fff;
  flex:1;
}


@media (max-width:1100px){

  .activities-layout{
    grid-template-columns:1fr;
  }

  .activities-header h2{
    font-size:40px;
  }

  .activity-box{
    font-size:17px;
  }

}


/* =====================================================
   SECTION ORGANIGRAMME
===================================================== */

.org-section {
            padding: 60px 20px;
            max-width: 1600px;
            margin: 0 auto;
            background-color: #ffffff;
        }

        .org-title {
            font-size: 42px;
            color: #1e5a8e;
            font-weight: bold;
            margin-bottom: 80px;
        }

        .org-chart {
            position: relative;
            padding: 20px 0;
            min-height: 650px;
        }
        .orga{
  width: 500em;
}

        
/* =====================================================
   SECTION DEPARTEMENTS
===================================================== */

.departments {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .card {
    width: 270px;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 2px solid;
    overflow: hidden;
    background: #fff;
  }

  .card-ac {
    border-color: #DDA607;
  }
  .card-ac .card-header {
    background: #fff;
    color: #DDA607;
    border-bottom: none;
  }
  .card-ac .card-body {
    display: flex;
    justify-content: center; 
    align-items: center; 
    background: #DDA607;
    color: #fff;
  }

  .card-da {
    border-color: #6A6764;
  }
  .card-da .card-header {
    background: #fff;
    color: #6A6764;
    border-bottom: none;
  }
  .card-da .card-body {
    display: flex;
    justify-content: center; 
    align-items: center; 
    background: #6A6764;
    color: #fff;
  }

  .card-formation {
    border-color: #4a7eb5;
  }
  .card-formation .card-header {
    background: #fff;
    color: #4a7eb5;
    border-bottom: none;
  }
  .card-formation .card-body {
    display: flex;
    justify-content: center; 
    align-items: center; 
    background: #4a7eb5;
    color: #fff;
  }

  .card-si {
    border-color: #3ab8b8;
  }
  .card-si .card-header {
    background: #fff;
    color: #3ab8b8;
    border-bottom: none;
  }
  .card-si .card-body {
    display: flex;
    justify-content: center; 
    align-items: center;    
    background: #3ab8b8;
    color: #fff;
  }

  .card-rh {
    border-color: #e05c72;
  }
  .card-rh .card-header {
    background: #fff;
    color: #e05c72;
    border-bottom: none;
  }
  .card-rh .card-body {
    display: flex;
    justify-content: center; 
    align-items: center; 
    background: #e05c72;
    color: #fff;
  }

  .card-header {
    padding: 14px 16px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
  }

  .card-body {
    flex: 1;
    padding: 14px 16px;
    
    font-size: 12.5px;
    line-height: 1.6;
    text-align: center;
  }

  .card-footer {
    background: #f0f0f0;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90px;
  }

  .card-footer img {
    width: 64px;
    height: 64px;
    object-fit: contain;
  }

  .icon-formation {
    width: 70px;
    height: 70px;
  }

/* =====================================================
   SECTION MOYENS
===================================================== */

.means-section{
  background:#EFEFEC;
}

.means-block{
  position:relative;
  display:flex;
  align-items:stretch;
  padding:60px 0;
  border-bottom:4px solid #fff;
}

/* barre gauche */
.means-left-bar{
  width:80px;
  background:#07B0F7;
  display:flex;
  align-items:flex-start;
}

.menu-icon{
  color:#fff;
  font-size:28px;
}

/* fond bleu droit */
.means-right-bg{
  position:absolute;
  right:0;
  top:0;
  width:26%;
  height:100%;
  background:#1488CC;
  z-index:0;
}


.means-content{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  gap:60px;
  width:100%;
  padding:0 6%;
}

.means-text{
  max-width:850px;
  text-align: justify;
}

.means-text h2{
  font-size:44px;
  color:#2F6F9E;
  margin-bottom:20px;
}

.means-text p{
  font-size:20px;
  line-height:1.7;
  margin-bottom:20px;
}

.means-image{
  width:420px;
}

.means-image img{
  width:100%;
  display:block;
}

/* ===== TABLE ===== */

.means-table{
  max-width:640px;
  width:100%;
}

.means-table table{
  width:100%;
  border-collapse:collapse;
  font-size:18px;
}

.means-table thead th{
  border-bottom:3px solid #2F6F9E;
  padding:14px;
  text-align:left;
}

.means-table tbody td{
  padding:14px;
}

.means-table tbody tr:nth-child(odd){
  background:#c9d7df;
}

.means-table tbody tr:nth-child(even){
  background:#e7eef3;
}

@media (max-width:1100px){

  .means-content{
    flex-direction:column;
  }

  .means-right-bg{
    display:none;
  }

  .means-image{
    position: relative;
    width:100%;
    max-width:450px;
    left: 150px;
  }

}
/* =====================================================
   SECTION ETAPES PROJET
===================================================== */

.steps-section{
  background:#f2f2f2;
  padding:90px 6% 120px;
  text-align:center;
}

.left-arrow{
  display: block;
  position: absolute;
  width: 100px;
  left: 480px;
  bottom: 100px;
}       
.right-arrow{
  display: block;
  position: absolute;
  width: 100px;
  right: 480px;
  bottom: 100px;
}               



.steps-title{
  font-size:64px;
  color:#3576A4;
  margin-bottom:70px;
}

/* layout principal */
.steps-layout{
  position:relative;
  max-width:1300px;
  margin:auto;
  min-height:600px;
}

/* cercle central */
.steps-center{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

.steps-circle{
  width:220px;
  height:220px;
  border-radius:50%;
  border:6px dashed #fff;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#CDD5D5;
}

.steps-circle img{
  width:280px;
}

/* blocs */
.step-box{
  position:absolute;
  width:520px;
  border-radius:32px;
  padding:35px 40px;
  color:#fff;
  text-align:left;
}

.step-box h3{
  font-size:26px;
  margin-bottom:12px;
}

.step-box p{
  font-size:20px;
  line-height:1.6;
}

/* positions */
.step1{ top:0; left:0; background:#E36670; }
.step2{ bottom:0; left:0; background:#009CDA; }
.step3{ top:0; right:0; background:#DDA607; }
.step4{ bottom:0; right:0; background:#13B4BE ; }

/* flèches */
.step-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:130px;
  height:90px;
  background:rgba(0,0,0,.15);
  clip-path:polygon(0 0%, 70% 0, 100% 50%, 70% 100%, 0 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  font-weight:700;
  color:#fff;
}

/* flèches gauche */
.step1 .step-arrow,
.step2 .step-arrow{
  right:-100px;
}

/* flèches droite */
.step3 .step-arrow,
.step4 .step-arrow{
  left:-100px;
  transform:translateY(-50%) scaleX(-1);
}


@media (max-width:1200px){

  .steps-layout{
    display:flex;
    flex-direction:column;
    gap:40px;
    min-height:auto;
  }

  .steps-center{
    position:static;
    transform:none;
    margin:30px auto;
  }

  .step-box{
    position:static;
    width:100%;
  }

  .step-arrow{
    display:none;
  }

  .steps-title{
    font-size:40px;
  }

  .left-arrow{
    display: none;
  }

  .right-arrow{
    display: none;
  }
}


/* =====================================================
   SECTION DESIGN & COMMUNICATION
===================================================== */

.design-section{
  background:#f3efe9;
  padding:90px 6% 110px;
}

/* header */
.design-header{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:40px;
}

.design-icon{
  width:120px;
}

.design-header h2{
  font-size:48px;
  color:#2E6F9B;
  font-weight:700;
}

/* layout */
.design-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* blocs */
.design-box{
  background:#D9DCE1;
  padding:30px 35px;
  border-radius:12px;
  font-size:20px;
  line-height:1.7;
}

/* listes */
.design-box ul{
  margin:20px 0 10px 25px;
}


.design-box li{
  list-style: disc;
  padding-left: 20px;
  margin-bottom:10px;
}


@media (max-width:1000px){

  .design-layout{
    grid-template-columns:1fr;
  }

  .design-header h2{
    font-size:34px;
  }

  .design-box{
    font-size:17px;
  }
}

/* =====================================================
   SECTION DEVELOPPEMENT
===================================================== */

.dev-section{
  background:#ffffff;
  padding:90px 6% 110px;
}

/* header */
.dev-header{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:40px;
}

.dev-icon{
  width:80px;
}

.dev-header h2{
  font-size:48px;
  color:#2E6F9B;
  font-weight:700;
}

/* layout */
.dev-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* blocs */
.dev-box{
  background:#D9DCE1;
  padding:30px 35px;
  border-radius:12px;
  font-size:20px;
  line-height:1.7;
}

/* listes */
.dev-box ul{
  margin:20px 0 10px 25px;
}

.dev-box li{
  list-style: disc;
  padding-left: 20px;
  margin-bottom:10px;
}


@media (max-width:1000px){

  .dev-layout{
    grid-template-columns:1fr;
  }

  .dev-header h2{
    font-size:34px;
  }

  .dev-box{
    font-size:17px;
  }
}


/* =====================================================
   REFERENCES INSTITUTIONNELLES
===================================================== */

.refs-section{
  background:#f3f3f3;
  padding:80px 6% 110px;
}

.refs-header{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:40px;
}

.refs-icon{
  width:60px;
}

.refs-header h2{
  font-size:54px;
  color:#3576A4;
  font-weight:800;
}

.refs-row{
  display:flex;
  margin-bottom:40px;
}

.refs-country{
  width:260px;
  color:#fff;
  font-size:36px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}


.refs-country::after{
  content:"";
  width:8px;
  height:100%;
  background:#c33;
  margin-left:0;
}

/* listes */
.refs-list{
  flex:1;
  padding:30px 35px;
}

/* fonds */
.red{ 
  background:#D95F68;
 }
.teal{
 background:#45A7A8; 
}

.red::after{ 
  background:#C23C3C; 
  position: relative;
  left: 50px;
}
.teal::after{
 background:#0F8C77; 
 position: relative;
 left: 80px;
}

.red-bg{ background:#F0CFCB; }
.teal-bg{ background:#BFD9D4; }

/* grille boutons */
.refs-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px 28px;
}

/* boutons */
.refs-grid span{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:14px;
  color:#fff;
  font-weight:700;
  font-size:16px;
  text-align:center;
}

/* couleurs boutons */
.red-bg span{ background:#D95F68; }
.teal-bg span{ background:#178F92; }


@media (max-width:1100px){

  .refs-row{
    flex-direction:column;
  }

  .refs-country{
    width:100%;
    height:120px;
  }

  .refs-country::after{
    display:none;
  }

  .refs-grid{
    grid-template-columns:1fr;
  }

  .refs-header h2{
    font-size:36px;
  }
}



/* =========================
   FOOTER
========================= */
.site-footer {
  position: relative;
  background: #FBF6F0;
  padding: 80px 6%;
  overflow: hidden;
  height: 700px;
}

.footer-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 76px;
  height: 100%;
  background: #019BDA;
}

.footer-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-infos{
  position: relative;
  top: 230px;
}

.footer-infos ul {
  padding: 0;
  margin-bottom: 40px;
}

.footer-infos li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  margin-bottom: 18px;
  color: #111;
}

.footer-infos .icon {
  width: 36px;
  height: 36px;
  background: #0b2d5b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.footer-logo {
  margin-top: 20px;
  width: 140px;
}

.footer-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: #019BDA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-image img {
  position: relative;
  margin-right: 30%;
  width: 150%;
  height: 80%;
  transform: translateX(-20%);
  z-index: 2;
}
/* =========================
   POINTS SOUS IMAGE FOOTER
========================= */

.footer-dots{
  position:absolute;
  bottom:22px;      
  right: 770px;       
  display:grid;
  grid-template-columns:repeat(5,10px);
  gap:12px 14px;
  z-index:3;
}

.footer-dots span{
  width:8px;
  height:8px;
  background:#019BDA; 
  border-radius:50%;
  display:block;
}

/* ========================= 
   FOOTER RESPONSIVE (Mobile)
========================= */ 
@media (max-width: 768px) {

  .site-footer {
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  
  .footer-bar {
    display: none;
  }

  
  .footer-image {
    position: relative;
    width: 100%;
    height: 220px;
    right: auto;
    top: auto;
    border-radius: 0;
  }

  .footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    margin-right: 0;
  }

  
  .footer-dots {
    bottom: 12px;
    right: 12px;
    gap: 8px 10px;
  }

  .footer-dots span {
    background: #fff;
  }

  
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px 40px 24px;
    background: #FBF6F0;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-infos {
    position: relative;
    top: 0;
    width: 100%;
  }

  .footer-infos ul {
    margin-bottom: 28px;
  }

  .footer-infos li {
    font-size: 15px;
    margin-bottom: 16px;
    align-items: flex-start;
  }

  .footer-infos .icon {
    flex-shrink: 0;
    margin-top: 2px;
  }

  .footer-logo {
    margin-top: 12px;
    width: 120px;
  }
}

/* ========================= 
   FOOTER RESPONSIVE (Tablette)
========================= */ 
@media (min-width: 769px) and (max-width: 1024px) {

  .site-footer {
    height: auto;
    min-height: 500px;
    padding: 60px 5%;
  }

  .footer-infos {
    top: 110px;
    left: 40px;
  }

  .footer-infos li {
    font-size: 15px;
  }

  .footer-image img {
    width: 130%;
    height: 75%;
  }

  .footer-dots {
    right: 470px;
    top: 438px;
  }
}


