* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
}

/* Header global */
header {
  background: #fff;
  padding: 0 15px;
  font-family: Arial, sans-serif;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.header-logo img {
  height: 115px;
  width: auto;
  display: block;
}

/* header2: Header right container for nav + language toggle (grouped together)
.header-right {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
*/

/* Nav principale */
.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.header-nav ul li a {
  display: block;
  padding: 12px 0;
  text-align: center;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  width: 230px;
}

.header-nav ul li a:hover {
  color: #fff;
}

/* MENU BURGER */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  position: relative;
  margin-bottom: 10px;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #002147;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =====================
   LANGUAGE TOGGLE
   ===================== */
.language-toggle {
  display: flex;
  background-color: #e5e5e5;
  border-radius: 8px;
  padding: 2px;
  gap: 2px;
  margin-bottom: 10px;
}

.lang-btn {
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 13px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: #333;
}

.lang-btn.active {
  background-color: #d80621;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* =====================
   NAV OVERLAY (mobile)
   ===================== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 149;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
}

/* Traits colorés */
.header-nav ul .services {
  border-bottom: 4px solid #d80621;
}
.header-nav ul .demarrer {
  border-bottom: 4px solid #ff6666;
}
.header-nav ul .temoignages {
  border-bottom: 4px solid #66679a;
}
.header-nav ul .contact {
  border-bottom: 4px solid #339898;
}
/* Hover */
.header-nav ul li:hover {
  color: #fff;
}

.header-nav ul .services:hover {
  background: #d80621;
}
.header-nav ul .demarrer:hover {
  background: #ff6666;
}
.header-nav ul .temoignages:hover {
  background: #66679a;
}
.header-nav ul .contact:hover {
  background: #339898;
}
/* SECTION HERO */

.section-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0.2) 65%,
    rgba(0, 0, 0, 0.1) 85%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

.section-hero-title {
  margin: 0;
  color: #fff;
  font-size: 50px;
  max-width: 600px;
}

.section-hero-title .text-rouge {
  color: #d80621;
}

.section-hero .container-text {
  padding: 100px 50px;
}

.section-hero p {
  margin: 40px 0;
  color: #fff;
  font-size: 20px;
}

.section-hero .btn-primary {
  display: inline-block;
  background-color: #d80621;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  transition: transform 0.2s ease;
}

.section-hero .btn-primary:hover {
  transform: translateY(-3px);
}

/* SECTION DONNÉES */
.section-donnees .row {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: auto;
  min-height: 180px;
}

.section-donnees .col25 {
  position: relative;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-donnees .col25:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  width: 2px;
  height: 80px;
  background: #d80621;
  transform: rotate(20deg);
}

.section-donnees .col25 img {
  height: 150px;
  width: auto;
}

.section-donnees .col25 p {
  font-size: 20px;
}

.section-donnees .text-rouge {
  color: #d80621;
  font-size: 50px;
  font-weight: bold;
}

.section-donnees .text-rouge-petit {
  color: #d80621;
  font-weight: bold;
  font-size: 24px;
}

/* SECTION SERVICES */
.section-services {
  max-width: 1400px;
  margin: auto;
}

.section-services .container-text {
  margin-top: 75px;
}

.section-services .section-title {
  font-size: 40px;
  font-weight: 800;
  color: #002147;
  padding: 15px;
}

.section-services .section-title .text-rouge {
  color: #d80621;
}

.section-services .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1500px;
  margin: auto;
}

.section-services .card {
  background-color: #f5f5f5;
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.section-services .card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-services .card img {
  max-width: 100px;
  height: auto;
  margin: 0 auto;
  border-radius: 25px;
}

/*i.fa-solid {
  font-size: 40px;
  color: #002147;
}*/

.section-services .card h3 {
  color: #002147;
  font-size: 25px;
  margin: 15px 0;
}

.section-services .card p {
  color: #002147;
  font-size: 18px;
  margin-bottom: 25px;
}

.section-services .btn-card-services {
  display: inline-block;
  background-color: #d80621;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.section-services .btn-card-services:hover {
  transform: translateY(-3px);
}

/* SECTION ÉTAPES */
.section-etapes .container-text {
  padding: 50px;
}

.section-etapes .section-title {
  font-size: 40px;
  max-width: 1500px;
}

.section-etapes .section-title .text-blue {
  color: #002147;
}

.steps {
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 50px;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-box {
  background-color: #002147;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  min-width: 200px;
  position: relative;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

.step-box-final {
  background-color: #002147;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  min-width: 200px;
  position: relative;
  text-align: center;
}

.step-number {
  background-color: #d80621;
  color: #fff;
  font-weight: bold;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -15px;
  left: 120px;
  z-index: 1;
}

.step-final .step-number {
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
}

.step-final {
  margin: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-final img.bg-step {
  position: absolute;
  top: -50px;
  left: 680px;
  width: 10%;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.step-final img.bg2-step {
  position: absolute;
  top: 25px;
  left: 1025px;
  width: 10%;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

@media (max-width: 1850px) {
  .step-final img.bg-step {
    position: absolute;
    top: -50px;
    left: 630px;
    width: 10%;
    height: auto;
    object-fit: cover;
    z-index: 0;
  }

  .step-final img.bg2-step {
    position: absolute;
    top: 25px;
    left: 980px;
    width: 10%;
    height: auto;
    object-fit: cover;
    z-index: 0;
  }
}

@media (max-width: 1730px) {
  .step-final img.bg-step {
    position: absolute;
    top: -50px;
    left: 575px;
    width: 10%;
    height: auto;
    object-fit: cover;
    z-index: 0;
  }

  .step-final img.bg2-step {
    position: absolute;
    top: 25px;
    left: 940px;
    width: 10%;
    height: auto;
    object-fit: cover;
    z-index: 0;
  }
}

@media (max-width: 1640px) {
  .step-final img.bg-step {
    position: absolute;
    top: -50px;
    left: 530px;
    width: 10%;
    height: auto;
    object-fit: cover;
    z-index: 0;
  }

  .step-final img.bg2-step {
    position: absolute;
    top: 25px;
    left: 915px;
    width: 10%;
    height: auto;
    object-fit: cover;
    z-index: 0;
  }
}

@media (max-width: 1570px) {
  .step-final img.bg-step {
    position: absolute;
    top: -40px;
    left: 490px;
    width: 10%;
    height: auto;
    object-fit: cover;
    z-index: 0;
  }

  .step-final img.bg2-step {
    position: absolute;
    top: 50px;
    left: 870px;
    width: 10%;
    height: auto;
    object-fit: cover;
    z-index: 0;
  }
}

@media (max-width: 1480px) {
  .step-final img.bg-step {
    position: absolute;
    top: -40px;
    left: 450px;
    width: 10%;
    height: auto;
    object-fit: cover;
    z-index: 0;
  }

  .step-final img.bg2-step {
    position: absolute;
    top: 50px;
    left: 830px;
    width: 10%;
    height: auto;
    object-fit: cover;
    z-index: 0;
  }
}

.step-final .step-box-final {
  min-width: 250px;
  border-radius: 10px;
}

.step-box-final {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

/* SECTION TÉMOIGNAGES */
.section-testimonials .container-text {
  padding: 50px;
}

.section-testimonials .section-title {
  font-size: 40px;
  text-align: center;
  font-weight: 800;
  color: #002147;
}

.section-testimonials .section-title .text-rouge {
  color: #d80621;
}

.testimonial-slider {
  margin: 0 50px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.testimonial-card {
  margin: 20px 2px;
  padding: 0 25px;
  flex: 0 0 250px;
  background: #f5f3f3;
  border: 1px solid #0021472f;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  text-align: center;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.testimonial-card.active {
  flex: 0 0 600px;
}

.card-content img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 20px 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #002147;
}

.name-stars-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.card-content h4 {
  font-size: 25px;
  font-weight: bold;
  margin: 10px 0 5px;
  min-height: 3em;
}

.testimonial-card.active .card-content h4 {
  min-height: 0;
}

.card-content .city {
  font-size: 16px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.card-content .quote {
  font-style: italic;
  font-size: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
}

.testimonial-card.active .city,
.testimonial-card.active .quote {
  opacity: 1;
  transform: translateY(0);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 0;
}

.stars i {
  font-size: 16px;
  color: #002147;
  margin: 0 2px;
}

/* SECTION CONTACT */
.section-contact {
  margin-top: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-left {
  min-height: 550px;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 20, 50, 0.2) 0%,
      rgba(0, 20, 50, 0.5) 100%
    ),
    url(images/image_contact.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-right {
  background: #ffffff;
  padding: 15px 50px 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-size: 40px;
  text-transform: uppercase;
  margin: 0 0 32px 0;
  font-weight: 800;
  color: #002147;
}

.contact-title .text-rouge {
  color: #d80621;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  color: #000000;
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.07em;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
  text-transform: uppercase;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: #d80621;
}

.contact-form select {
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.contact-form select option {
  background: #002147;
  color: #fff;
  text-transform: none;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "⌄";
  position: absolute;
  right: 4px;
  bottom: 8px;
  color: rgba(0, 0, 0, 0.35);
  font-size: 16px;
  pointer-events: none;
}

.contact-form textarea {
  resize: none;
  min-height: 90px;
  line-height: 1.6;
  text-transform: none;
}

.contact-submit-row {
  display: flex;
  justify-content: flex-end;
}

.btn-soumettre {
  background-color: #d80621;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 5px;
  transition: transform 0.2s ease;
}

.btn-soumettre:hover {
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  background: #002147;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

/* Layout principal : gauche + droite */
.foot-main {
  display: flex;
  gap: 0;
  padding: 50px 60px 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Colonne gauche */
.foot-left {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 40px;
}

.foot-logo img {
  height: 160px;
  width: auto;
}

.foot-social-block {
  margin-top: auto;
}

.foot-nous-suivre {
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.foot-socials {
  display: flex;
  gap: 10px;
}

.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    border-color 0.2s,
    opacity 0.2s;
}

.soc-btn:hover {
  border-color: #ffffff;
  opacity: 0.8;
}

/* Colonne droite */
.foot-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.foot-section {
  margin-bottom: 0;
}

/* Titre de section ex: "Navigation" */
.foot-section-title {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 14px 0;
}

/* Rangée de liens horizontale */
.foot-nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
}

.foot-nav-row a {
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  padding: 2px 16px 2px 0;
  transition: opacity 0.15s;
}

.foot-nav-row a:hover {
  opacity: 0.75;
}

/* Deuxième rangée : les onglets du menu avec séparateurs visuels */
.foot-nav-row-menu {
  margin-top: 8px;
}

.foot-nav-row-menu a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  padding: 3px 14px 3px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  margin-right: 14px;
}

.foot-nav-row-menu a:last-child {
  border-right: none;
  margin-right: 0;
}

/* Ligne de séparation */
.foot-divider {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: 18px 0;
}

/* Coordonnées : 2 colonnes côte à côte */
.foot-coords-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.foot-office p {
  font-size: 14px;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.5;
}

/* Barre copyright en bas */
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.foot-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .section-contact {
    grid-template-columns: 1fr;
  }
  .contact-left {
    min-height: 260px;
  }
  .foot-main {
    flex-direction: column;
    padding: 36px 24px;
  }
  .foot-left {
    flex: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding-right: 0;
    margin-bottom: 32px;
  }
  .foot-coords-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-right {
    padding: 36px 20px;
  }
  .foot-left {
    flex-direction: column;
  }
  .foot-bottom {
    padding: 18px 20px;
  }
}

/* =====================
   RESPONSIVE — 1480px
   ===================== */
@media (max-width: 1480px) {
  .step-final img.bg-step {
    left: 450px;
    top: -40px;
  }
  .step-final img.bg2-step {
    left: 830px;
    top: 50px;
  }
}

@media (max-width: 1350px) {
  .step-final img.bg-step {
    left: 380px;
  }
  .step-final img.bg2-step {
    left: 760px;
  }
}

@media (max-width: 1255px) {
  .header-nav ul li a {
    width: 200px;
  }
}

/* =====================
   RESPONSIVE — 1180px
   ===================== */
@media (max-width: 1180px) {
  /* HEADER */
  .header-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 8px;
  }

  .header-logo img {
    height: 80px;
  }

  /* Show burger */
  .burger-btn {
    display: flex;
  }

  /* Language toggle mobile positioning */
  .language-toggle {
    position: absolute;
    top: 15px;
    right: 60px;
    z-index: 151;
  }

  /* header2: Header right grouped layout (commented out)
  .header-right {
    align-items: center;
    gap: 10px;
  }

  .burger-btn {
    display: flex;
    order: -1;
  }

  .language-toggle {
    margin-bottom: 0;
  }
  */

  /* Hide desktop nav — slide in from right */
  .header-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #fff;
    z-index: 150;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    padding-top: 70px;
  }

  .header-nav.open {
    right: 0;
  }

  .nav-overlay {
    display: block;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .header-nav ul li {
    border-bottom: 0;
  }

  .header-nav ul li a {
    padding: 30px 24px;
    font-size: 15px;
    color: #000;
    text-align: left;
  }

  /* Keep left border colour instead of bottom */
  .header-nav ul .services {
    border-bottom: none;
    border-left: 4px solid #d80621;
  }
  .header-nav ul .demarrer {
    border-bottom: none;
    border-left: 4px solid #ff6666;
  }
  .header-nav ul .temoignages {
    border-bottom: none;
    border-left: 4px solid #66679a;
  }
  .header-nav ul .contact {
    border-bottom: none;
    border-left: 4px solid #339898;
  }

  /* HERO */
  .section-hero {
    height: auto;
    padding: 60px 0;
  }
  .section-hero-title {
    font-size: 40px;
  }
  .section-hero p {
    font-size: 18px;
  }

  /* DONNÉES */
  .section-donnees .row {
    flex-wrap: wrap;
  }
  .section-donnees .col25 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }
  .section-donnees .col25::after {
    display: none;
  }

  /* SERVICES */
  .section-services .grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 30px 50px;
  }

  /* ÉTAPES */
  .steps-container {
    gap: 30px;
    padding: 0 30px;
  }
  .step-box {
    min-width: 170px;
  }

  /* Fireworks — hide on smaller screens */
  .step-final img.bg-step,
  .step-final img.bg2-step {
    display: none;
  }

  /* TESTIMONIALS */
  .testimonial-card.active {
    flex: 0 0 500px;
  }

  /* CONTACT */
  .section-contact {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }
  .contact-left {
    min-height: 260px;
  }

  /* FONT SIZES */
  .section-services .section-title,
  .section-etapes .section-title,
  .section-testimonials .section-title,
  .contact-title {
    font-size: 30px;
  }
  .section-services .card h3 {
    font-size: 22px;
  }
}

/* =====================
   RESPONSIVE — 768px
   ===================== */
@media (max-width: 768px) {
  /* HEADER */
  .header-logo img {
    height: 65px;
  }

  /* HERO */
  .section-hero .container-text {
    padding: 50px 20px;
  }
  .section-hero-title {
    font-size: 28px;
  }
  .section-hero p {
    font-size: 16px;
    margin: 25px 0;
  }

  /* DONNÉES */
  .section-donnees .col25 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .section-donnees .col25 img {
    height: 100px;
  }
  .section-donnees .text-rouge {
    font-size: 36px;
  }

  /* SERVICES */
  .section-services .container-text {
    padding: 30px 20px;
  }
  .section-services .grid {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
  }
  .section-services .card {
    min-height: auto;
  }

  /* ÉTAPES */
  .section-etapes .container-text {
    padding: 30px 20px;
  }
  .steps-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    align-items: center;
  }
  .step-box {
    clip-path: none;
    min-width: auto;
    width: 260px;
  }
  .step-number {
    left: 50%;
    transform: translateX(-50%);
  }
  .step-final {
    margin: 50px 0 30px;
  }

  /* TESTIMONIALS */
  .section-testimonials .container-text {
    padding: 30px 20px;
  }
  .testimonial-slider {
    margin: 0 15px 30px;
  }
  .testimonial-card {
    flex: 0 0 35%;
  }
  .testimonial-card.active {
    flex: 0 0 65%;
  }

  /* CONTACT */
  .contact-right {
    padding: 30px 20px;
  }
  .contact-title {
    font-size: 26px;
  }
  .section-contact {
    margin-top: 40px;
  }

  /* FOOTER */
  .foot-main {
    flex-direction: column;
    padding: 36px 24px;
  }
  .foot-left {
    flex: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding-right: 0;
    margin-bottom: 32px;
  }
  .foot-coords-row {
    grid-template-columns: 1fr;
  }
  .foot-bottom {
    padding: 18px 24px;
  }

  /* FONT SIZES */
  .section-hero-title {
    font-size: 26px;
  }
  .section-services .section-title,
  .section-etapes .section-title,
  .section-testimonials .section-title,
  .contact-title {
    font-size: 24px;
  }
  .section-services .card h3 {
    font-size: 20px;
  }
  .section-services .card p,
  .section-donnees .col25 p,
  .card-content .quote,
  .card-content .city {
    font-size: 16px;
  }
}

/* =====================
   RESPONSIVE — 480px
   ===================== */
@media (max-width: 480px) {
  .header-util {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  /* Language toggle adjustments for small screens */
  .language-toggle {
    right: 55px;
    top: 12px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  /* header2: Grouped layout adjustments (commented out)
  .header-right {
    gap: 8px;
  }
  */

  .section-hero-title {
    font-size: 22px;
  }

  .section-services .section-title {
    font-size: 20px;
  }
  .section-etapes .section-title {
    font-size: 20px;
  }
  .section-testimonials .section-title {
    font-size: 20px;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .foot-left {
    flex-direction: column;
    gap: 20px;
  }
  .foot-bottom {
    padding: 18px 16px;
  }
}

/* Imported React sections: Steps + Footer */
.section.imported-steps {
  padding: 80px 0;
  position: relative;
}

.section.imported-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 43, 99, 0.1),
    transparent
  );
}

.imported-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.imported-steps .section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 800;
  color: #002147;
  position: relative;
  padding-bottom: 20px;
}

.imported-steps .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #d80621;
  border-radius: 2px;
}

.imported-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  text-align: center;
  align-items: flex-start;
}

.imported-step-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.imported-step-card {
  flex: 1;
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.imported-step-card:hover {
  transform: translateY(-5px);
}

.imported-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #d80621;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(227, 28, 47, 0.3);
  transition: all 0.3s ease;
}

.imported-step-card:hover .imported-step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(227, 28, 47, 0.4);
}

.imported-step-arrow {
  color: #d80621;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 40px;
  flex-shrink: 0;
  opacity: 0.7;
}

.imported-step-card h3 {
  margin: 14px 0 12px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  color: #002147;
  letter-spacing: 0.5px;
}

.imported-step-card p {
  color: #495057;
  line-height: 1.6;
  font-size: 0.9rem;
}

.imported-footer {
  background: #002147;
  /*background: #002b63;*/
  color: #ffffff;
  padding: 70px 0 30px;
}

.imported-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.imported-footer h4 {
  margin-bottom: 20px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.imported-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imported-footer-logo {
  margin-bottom: 16px;
}

.imported-footer-logo-image {
  display: block;
  width: clamp(160px, 18vw, 220px);
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.imported-footer-tagline {
  margin-top: 12px;
  font-size: 1rem;
  opacity: 0.95;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.3px;
}

.imported-footer-social {
  margin-top: 24px;
}

.imported-footer-social h4 {
  margin-bottom: 16px;
  text-align: center;
  font-size: 1.05rem;
}

.imported-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.imported-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.imported-social-icons a:hover {
  background: #d80621;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(227, 28, 47, 0.4);
}

.imported-social-icon {
  width: 20px;
  height: 20px;
  color: #002147;
}

.imported-social-icons a:hover .imported-social-icon {
  color: #ffffff;
}

.imported-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.imported-footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
  padding: 4px 0;
}

.imported-footer-links a:hover {
  color: #d80621;
  padding-left: 4px;
}

.imported-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.imported-office-location {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #d80621;
}

.imported-office-location p {
  margin: 4px 0;
  opacity: 0.95;
}

.imported-office-name {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #ffffff;
  opacity: 1;
}

.imported-footer-contact-info {
  margin-top: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.imported-footer-contact-info p {
  margin: 8px 0;
  opacity: 0.95;
}

.imported-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  gap: 10px;
}

.imported-footer-bottom .propulse-lien {
  text-decoration: none;
  color: #ffffff;
}

@media (max-width: 992px) {
  .imported-steps-grid {
    grid-template-columns: 1fr;
  }

  .imported-step-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .imported-step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .imported-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .imported-container {
    width: min(1200px, 94%);
  }

  .section.imported-steps {
    padding: 52px 0;
  }

  .imported-steps .section-title {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 14px;
  }

  .imported-steps .section-title::after {
    width: 62px;
    height: 3px;
  }

  .imported-step-card {
    padding: 22px 12px;
  }

  .imported-step-number {
    width: 64px;
    height: 64px;
    font-size: 1.45rem;
  }

  .imported-footer {
    padding: 40px 0 20px;
  }

  .imported-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .imported-footer-logo-image {
    width: 180px;
  }

  .imported-footer-tagline {
    font-size: 0.9rem;
  }

  .imported-footer-social {
    margin-top: 20px;
  }

  .imported-footer-contact {
    gap: 18px;
  }

  .imported-footer-bottom {
    margin-top: 28px;
    font-size: 0.82rem;
  }
}
