/* Police de caractère */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&display=swap');
@font-face {
  font-family: 'Sugo';
  src: url(/assets/fonts/Sugo-Pro-Classic-Regular-trial.ttf);
}
@font-face {
  font-family: 'Sugo light';
  src: url(/assets/fonts/Sugo-Pro-Classic-Light-trial.ttf);
}
/* Styles de base */
:root {
    --background-color : #F8F5F9;
    --background-color-2 : #FFFFFF;
    --primary-color-1 : #00CBFF;
    --primary-color-2 : #B71CFF;
    --secondary-color-1 : #00CBFF26;
    --secondary-color-2 : #B71CFF26;
    --primary-text-color : #080535B0;
    --title-color : #080535;
    --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color-1),
    var(--primary-color-2)
  );
    --radius-card: 20px;
    --transition: 0.35s ease;
}

.gradient-title {
  display: inline-block;
  background-image: var(--gradient-primary);
  background-size: 100%;
  background-repeat: no-repeat;

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}

a {
  text-decoration: none;
}

.blue {
  color: #00CBFF;
}

.purple {
  color: #B71CFF;
}

/* Animation background */
body {
  margin: 0;
  min-height: 100vh;
  background: #f8f5f9;
  position: relative;
  overflow-x: hidden;
  font-family: 'Sugo light';
  font-weight: 300;
  color: var(--title-color);
}

.bg-shadow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bg-shadow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 180, 180, 0.021) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: blobDrift1 4s ease-in-out infinite;
}
.bg-shadow-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 180, 0.062) 0%, transparent 70%);
  bottom: -180px; right: -120px;
  animation: blobDrift2 5s ease-in-out infinite;
}
.bg-shadow-3 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(100, 60, 200, 0.062) 0%, transparent 65%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation: blobDrift3 3.5s ease-in-out infinite;
}
.bg-shadow-4 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 160, 200, 0.041) 0%, transparent 70%);
  top: 5%; right: 5%;
  animation: blobDrift1 6s ease-in-out infinite reverse;
}
.bg-shadow-5 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(160, 90, 210, 0.068) 0%, transparent 65%);
  bottom: 5%; left: 5%;
  animation: blobDrift2 4.5s ease-in-out infinite reverse;
}

@keyframes blobDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(60px,-50px) scale(1.15); }
  66%      { transform: translate(-40px,40px) scale(0.9); }
}
@keyframes blobDrift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-70px,35px) scale(1.1); }
  66%      { transform: translate(50px,-55px) scale(0.88); }
}
@keyframes blobDrift3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%      { transform: translate(-50%,-50%) scale(1.2); }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 12vh;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background-color: var(--background-color);
  box-shadow: 0 5px 20px rgba(73, 125, 134, 0.11);
}

/* Navigation */
.navigation {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
}


.logo {
  width: 13rem;
}

.navigation-items {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
}

.navigation-item a {
  color: var(--title-color);
  font-size: 1.6rem;
  font-weight: 500;
  font-family: 'Barlow Condensed';
}

.navigation-item.active a {
  color: var(--primary-color-1);
}

.cta {
  background-color: var(--primary-color-2);
  color: var(--background-color);
  font-family: 'Sugo';
  font-size: 1.4rem;
  font-weight: 400;
  border: none;
  border-radius: 15px;
  padding: 1rem 2rem;
  text-transform: uppercase;
  cursor: pointer;
}

main {
  position: relative;
  z-index: 1;
}


/* HERO HEADER */
.hero-accueil {
  display: flex;
  align-items: center;
  width: 100%;
  height: 95vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 45%;
  height: 100%;
}

.hero-infos {
  padding-left: 6rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.hero-title, .hero-subtitle, .hero-p {
  margin: 0;
}

.hero-title {
  font-family: 'Sugo';
  font-size: 8rem;
  text-transform: uppercase;
  color: var(--title-color);
  font-weight: 400;
  line-height: 0.9;
}

.hero-subtitle {
  font-family: 'Sugo';
  font-size: 3.5rem;
  text-transform: uppercase;
  color: var(--title-color);
  font-weight: 400;
}

.hero-p {
  font-family: 'Sugo light';
  color: var(--primary-text-color);
  font-size: 1.4rem;
  width: 73%;
  margin-top: .8rem;
}

.hero-buttons {
  padding-left: 6rem;
  margin-top: 1.4rem;
}

.hero-buttons :first-child {
  background-color: var(--primary-color-1);
  color: var(--background-color);
  font-family: 'Barlow Condensed';
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;
}

.hero-buttons :last-child {
  background-color: var(--background-color);
  color: var(--primary-color-2);
  font-family: 'Barlow Condensed';
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: solid 3px var(--primary-color-2);
  margin-left: 1rem;
}

.hero-right {
  height: 80%;
  flex: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/hero-accueil.png');
  background-position: left bottom;
  background-repeat: no-repeat;
  border-radius: 500px 0 0 300px;
}

.chiffres {
  padding-left: 6rem;
  display: grid;
  grid-template-columns: repeat(2, 20rem);
  gap: 1rem;
  margin-top: 3rem;
}

.chiffre-item {
  height: 5rem;
  background: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.icon-circle i {
  font-size: 2rem;
}

.purple-bg {
  background-color: var(--secondary-color-2);
}

.purple-bg i {
  color: var(--primary-color-2);
}

.blue-bg {
  background-color: var(--secondary-color-1);
}

.blue-bg i {
  color:#00CBFF;
}

.chiffre-content h3 {
  margin: 0;
  font-family: 'Barlow Condensed';
  font-size: 2.3rem;
  font-weight: 800; 
  line-height: 1;
}

.chiffre-content p {
  margin: .4rem 0 0;
  font-size: 1.2rem;
  color: var(--primary-text-color);
}

.quote {
  margin-top: 2rem;
  padding-left: 6rem;
  font-family: "Shadows Into Light Two";
  font-size: 1.4rem;
}

/* SECTION PRESTATIONS */
.home-prestas {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prestas-title, .prestas-p {
  margin: 0;
}

.prestas-title {
  font-size: 3.5rem;
  text-transform: uppercase;
}

.prestas-p {
  font-size: 2rem;
  color: var(--primary-text-color);
}

.prestas-items {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Carte */
.prestas-item {
  position: relative;
  height: 50vh;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
}

/* Image plein cadre */
.prestas-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(45%) contrast(1.05);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.prestas-item:hover img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.04);
}

/* Dégradé blanc en bas pour lisibilité du texte */
.prestas-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(255, 255, 255, 0.97) 100%);
  z-index: 1;
}

/* Texte */
.prestas-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.prestas-content::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary-color-1);
  margin-bottom: 0.7rem;
  transition: width 0.35s ease;
}

.prestas-item:hover .prestas-content::before {
  width: 48px;
  background: var(--primary-color-2);
}

.prestas-content h3 {
  margin: 0;
  min-height: 3.6rem;
  font-family: 'Barlow Condensed';
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 800;
  color: var(--title-color);
  text-transform: uppercase;
}

.prestas-content p {
  margin-top: 0;
  font-family: 'Sugo light';
  font-size: 1.4rem;
  color: var(--primary-text-color);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}

.prestas-item:hover .prestas-content p {
  max-height: 80px;
  opacity: 1;
  margin-top: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .prestas-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .home-prestas {
    height: auto;
    padding: 4rem 0;
  }

  .prestas-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .prestas-item {
    height: 42vh;
  }

  .prestas-item:hover .prestas-content p,
  .prestas-content p {
    max-height: none;
    opacity: 1;
    margin-top: 0.8rem;
  }
}

@media (max-width: 480px) {
  .prestas-items {
    grid-template-columns: 1fr;
  }

  .prestas-item {
    height: 38vh;
  }
}

.prestas-cta {
  background-color: var(--primary-color-2);
  color: var(--background-color);
  font-size: 1.8rem;
  padding: .5rem 5rem;
  margin-top: 5rem;
  border-radius: 15px;
}

.engagements {
  height: 70vh;
  display: flex;
  margin-top: 7rem;
}

.engagement-title {
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 0;
}

.engagement-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 6rem;
}

.engagement-left::before {
    content: "";
    position: absolute;
    width: 45rem;
    height: 35rem;
    background: #00CBFF;
    border-radius: 25px;
    transform: translate(-40px, -70px) rotate(-5deg);
    z-index: 0;
}

.engagement-left img {
    width: 45rem;
    height: 35rem;
    object-fit: cover;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

.engagement-right{
    flex:1;
    padding:2rem 4rem;
}

.engagement-line{
    width:90px;
    height:5px;
    background:#080535;
    border-radius:50px;
    margin:0rem 0 3rem;
}

.engagement-items{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:4rem 3rem;
}

.engagement-item{
    display:flex;
    align-items:flex-start;
    gap:1.2rem;
}

.icon{
    width:78px;
    height:78px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.icon i{
    font-size:2rem;
}

.purple-icon{
    border:2px solid var(--primary-color-2);
    color:var(--primary-color-2);
}

.blue-icon{
    border:2px solid var(--primary-color-1);
    color:var(--primary-color-1);
}

.engagement-content h3{
    margin:0;
    font-family:'Barlow Condensed';
    font-size:2rem;
    font-weight:700;
}

.engagement-content p{
    margin-top:.6rem;
    color:var(--primary-text-color);
    line-height:1.5;
    font-size:1.1rem;
}

.realisations {
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}

.realisation-line {
  width:7rem;
  height:5px;
  background: var(--primary-color-1);
  border-radius:50px;
  margin:0rem 0 3rem;
}

.realisation-items {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.img-border {
  padding: 3px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    var(--primary-color-1),
    var(--primary-color-2)
  );
}

.img-border img {
  display: block;
  width: 18rem;
  border-radius: 25px;
}

.realisation-cta {
  background-color: var(--primary-color-1);
  color: var(--background-color);
  font-size: 1.8rem;
  padding: .5rem 5rem;
  margin-top: 5rem;
  border-radius: 15px;
}

.zones {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  margin-top: 10rem;
}

.zones-right {
  flex: 1;
}

.zones-right img {
  width: 50rem;
  display: flex;
}

.zones-left {
  flex: 1;
  height: 100%;
}

.zones-title {
  text-transform: uppercase;
  font-size: 5rem;
  line-height: 0;
  margin-top: 6rem;
}

.zones-p {
  font-size: 2.2rem;
  color: var(--primary-text-color);
}

.points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.point {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.point-title {
  font-size: 2rem;
}

.i {
  background: linear-gradient(45deg, #00CBFF, #B71CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
}

.reviews {
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8rem;
}

.review-title {
  text-transform: uppercase;
  font-size: 3.5rem;
  line-height: 0;
}

.review-line {
  width:10rem;
  height:5px;
  background: var(--primary-color-2);
  border-radius:50px;
  margin:0rem 0 3rem;
}

/* ---- Carousel Track ---- */
.carousel-track {
  width: 58rem;
  max-width: 90%;
  position: relative;
  height: 20rem;
  overflow: hidden;
}
 
/* ---- Card ---- */
.review-card {
  position: absolute;
  inset: 0;
  background: var(--background-color-2);
  border: 1px solid rgba(8, 5, 53, 0.08);
  border-radius: 20px;
  padding: 2.4rem 2.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
 
.review-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
 
.review-card.exit {
  opacity: 0;
  transform: translateX(-50px);
}
 
/* ---- Quote ---- */
.review-quote {
  font-family: 'Barlow Condensed';
  font-size: 1.7rem;
  font-style: italic;
  color: var(--primary-text-color);
  line-height: 1.65;
  margin: 0;
}
 
.review-quote::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 0;
  vertical-align: -12px;
  color: var(--primary-color-1);
  margin-right: 4px;
}
 
/* ---- Meta (avatar + nom + étoiles) ---- */
.review-meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}
 
.review-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  outline: 3px solid rgba(0, 203, 255, 0.3);
  outline-offset: 2px;
}
 
.review-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
 
.review-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--title-color);
  margin: 0;
}
 
.review-stars {
  display: flex;
  gap: 2px;
}
 
.star {
  font-style: normal;
  font-size: 1.6rem;
  color: var(--primary-color-1);
}
 
/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .reviews-title {
    font-size: 2.8rem;
  }
 
  .carousel-track {
    height: 24rem;
  }
 
  .review-card {
    padding: 2rem 1.8rem 1.6rem;
  }
}
 
@media (max-width: 480px) {
  .reviews {
    padding: 4rem 0 3rem;
  }
 
  .carousel-track {
    height: 26rem;
  }
 
  .review-quote {
    font-size: 1.3rem;
  }
}
 

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 0rem 0 7rem;
}
 
/* ---- Header ---- */
.faq-header {
  text-align: center;
}
 
.faq-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-text-color);
  margin: 0 0 0.6rem;
}
 
.faq-title {
  font-family: 'Sugo', sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--title-color);
  margin: 0;
}
 
.faq-accent-line {
  width: 5rem;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color-1), var(--primary-color-2));
  border-radius: 50px;
  margin: 1rem auto 1.4rem;
}
 
.faq-subtitle {
  font-family: 'Sugo light', sans-serif;
  font-size: 1.4rem;
  color: var(--primary-text-color);
  margin: 0;
}
 
/* ---- Liste ---- */
.faq-list {
  width: 72rem;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
 
/* ---- Item ---- */
.faq-item {
  background: var(--background-color-2);
  border: 1px solid rgba(8, 5, 53, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
 
.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
 
.faq-item.open {
  border-color: rgba(0, 203, 255, 0.35);
  box-shadow: 0 8px 30px rgba(0, 203, 255, 0.08);
}
 
/* ---- Question (bouton) ---- */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.4rem;
  text-align: left;
}
 
.faq-question span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--title-color);
  line-height: 1.2;
  transition: color 0.3s ease;
}
 
.faq-item.open .faq-question span:first-child {
  background-image: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
 
/* ---- Icône +/− ---- */
.faq-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 2px solid rgba(8, 5, 53, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  color: var(--title-color);
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
 
.faq-item.open .faq-icon {
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
  border-color: transparent;
  color: #ffffff;
  transform: rotate(180deg);
}
 
/* ---- Réponse ---- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
 
.faq-answer p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--primary-text-color);
  line-height: 1.7;
  margin: 0;
  padding: 0 2.4rem 2rem;
  border-top: 1px solid rgba(8, 5, 53, 0.06);
}
 
/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .faq {
    padding: 5rem 0 4rem;
    gap: 3rem;
  }
 
  .faq-title {
    font-size: 2.8rem;
  }
 
  .faq-question {
    padding: 1.6rem 1.8rem;
  }
 
  .faq-question span:first-child {
    font-size: 1.6rem;
  }
 
  .faq-answer p {
    padding: 0 1.8rem 1.6rem;
    font-size: 1.3rem;
  }
}
 
@media (max-width: 480px) {
  .faq-question span:first-child {
    font-size: 1.5rem;
  }
 
  .faq-icon {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.8rem;
  }
}


.cta-footer {
  height: 25vh;
  background: url(/assets/images/cta-background.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.cta-infos {
  margin-left: 12rem;
}

.cta-infos-title {
  font-size: 4rem;
  color: var(--background-color);
  text-transform: uppercase;
  line-height: 0;
}

.cta-infos-subtitle {
  color: var(--background-color);
  font-size: 1.5rem;
  letter-spacing: .1rem;
}

.cta-footer-buttons {
  margin-right: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.cta-footer-button:first-child {
  color: var(--primary-color-2);
  background-color: var(--background-color);
  border: solid 3px var(--primary-color-2);
  border-radius: 10px;
  padding: 1rem 1rem;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
}

.cta-footer-button:last-child {
  color: var(--background-color);
  background-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: solid 3px var(--background-color);
  border-radius: 10px;
  padding: 1rem 1rem;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
}

footer {
  height: 30vh;
  font-family: 'Barlow Condensed';
  background-color: #080535;
  color: var(--background-color);
  display: flex;
  justify-content: space-between;
  padding: 3rem 3rem;
}

.footer-presentations {
  display: flex;
  flex-direction: column;
}

.footer-presentations img {
  width: 13rem;
}

.footer-presentations p {
  font-size: 1.2rem;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-icons i {
  font-size: 1.3rem;
  background: var(--background-color);
  padding: .8rem;
  border-radius: 50%;
  color: #080535;
}

.footer-item {
  display: flex;
  flex-direction: column;
}

.footer-item h3, .footer-devis h3{
  font-size: 1.8rem;
  line-height: 0;
  text-transform: uppercase;
}

.footer-item li, .footer-item a{
  color: var(--background-color);
  font-size: 1.5rem;
  line-height: 2.7rem;
}

.footer-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-devis p {
  font-size: 1.5rem;
  width: 75%;
  margin-bottom: 3rem;
}

.footer-devis a {
  background: var(--primary-color-1);
  color: var(--background-color);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.copyright {
  height: 5vh;
  background-color: var(--title-color);
  display: flex;
  border-top: solid 1px var(--primary-color-1);
}

.copyright-p, .copyright-p a{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  color: var(--background-color);
  gap: 10rem;
}

/* PAGE PRESTATIONS */
.presta-hero {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 7rem;
}

.presta-hero-right {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.presta-hero-img {
  background: url(/assets/images/hero-presta.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 38rem;
  border-radius: 300px 0 0 300px;
}

.presta-hero-left {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.hero-presta-title {
  font-family: 'Sugo';
  font-size: 7rem;
  text-transform: uppercase;
  color: var(--title-color);
  font-weight: 400;
  line-height: 1.2;
}

.hero-presta-subtitle {
  font-family: 'Sugo light';
  font-size: 3.5rem;
  color: var(--title-color);
  width: 72%;
}

.hero-presta-p {
  color: var(--primary-text-color);
  font-family: 'Sugo light';
  font-size: 1.8rem;
  width: 85%;
  padding-top: 1rem;
}

.hero-presta-title, .hero-presta-subtitle, .hero-presta-p {
  margin: 0;
}

.prestations-section {
  width: 100%;
  padding: 7rem rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  margin-top: 6rem;
  margin-bottom: 3rem;
}

.presta-section-title {
  font-size: 4.5rem;
  text-transform: uppercase;
  line-height: 0;
}

/* =========================================
   GRID 3×3
   ========================================= */
.prestations-grid {
  width: 95%; /* ← plus large */
  max-width: 1600px; /* ← augmente la limite max */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
}
 
/* =========================================
   CARD
   ========================================= */
.presta-card {
  background: var(--background-color-2);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(8, 5, 53, 0.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
 
.presta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 203, 255, 0.25);
}
 
/* ----- Image ----- */
.presta-img-wrap {
  position: relative;
  height: 19rem;
  overflow: hidden;
  flex-shrink: 0;
}
 
.presta-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(40%) contrast(1.05);
  transition: filter var(--transition), transform 0.55s ease;
}
 
.presta-card:hover .presta-img-wrap img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.05);
}
 
.presta-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(248, 245, 249, 0.55) 100%);
  pointer-events: none;
}
 
/* ----- Body ----- */
.presta-body {
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
}
 
.presta-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.8rem;
  right: 1.8rem;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 50px;
}
 
.presta-card:hover .presta-body::before {
  opacity: 1;
}
 
/* ----- Icon ----- */
.presta-icon {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
 
.presta-icon i {
  font-size: 1.7rem;
}
 
.blue-bg {
  background-color: var(--secondary-color-1);
}
 
.blue-bg i {
  color: var(--primary-color-1);
}
 
.purple-bg {
  background-color: var(--secondary-color-2);
}
 
.purple-bg i {
  color: var(--primary-color-2);
}
 
/* ----- Text ----- */
.presta-text {
  flex: 1;
}
 
.presta-name {
  font-size: 1.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--title-color);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
 
.presta-desc {
  margin-top: 0.55rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-text-color);
  line-height: 1.6;
}
 
/* =========================================
   CTA BUTTON
   ========================================= */
.prestations-cta {
  display: inline-block;
  background: var(--primary-color-1);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 1rem 5rem;
  border-radius: 15px;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
 
.prestations-cta:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(183, 28, 255, 0.25);
}
 
/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .prestations-section {
    padding: 6rem 4rem 7rem;
  }
}
 
@media (max-width: 900px) {
  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .presta-img-wrap {
    height: 16rem;
  }
}
 
@media (max-width: 580px) {
  .prestations-section {
    padding: 4rem 1.5rem 5rem;
  }
 
  .prestations-grid {
    grid-template-columns: 1fr;
  }
 
  .prestations-title {
    font-size: 2.8rem;
  }
 
  .presta-img-wrap {
    height: 18rem;
  }
}


/* =========================================
   SECTION PROCESS
   ========================================= */
.process {
  width: 100%;
  padding: 7rem 0rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.process-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  margin: 0;
  max-width: 60rem;
}

/* =========================================
   ROW (5 étapes + tirets)
   ========================================= */
.processus-row {
  width: 95%;
  max-width: 1600px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
}

/* ----- Step ----- */
.processus-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 18%;
}

/* ----- Ring (cercle dégradé) -----
   2 couches : cercle extérieur en dégradé plein,
   disque blanc à l'intérieur avec padding = épaisseur du trait */
.processus-ring {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  padding: 2.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.processus-step:hover .processus-ring {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(183, 28, 255, 0.18);
}

.processus-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--background-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.processus-ring-inner i {
  font-size: 2rem;
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----- Number ----- */
.processus-num {
  margin-top: 1.2rem;
  font-family: 'Barlow Condensed';
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--title-color);
}

/* ----- Title ----- */
.processus-name {
  margin-top: 0.3rem;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--title-color);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* ----- Description ----- */
.processus-desc {
  margin-top: 0.7rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-text-color);
  line-height: 1.55;
}

/* ----- Dashed connector ----- */
.processus-dash {
  flex: 1;
  height: 2px;
  margin-top: 3.25rem;
  background-image: linear-gradient(90deg, var(--primary-color-1) 0 8px, transparent 8px 16px);
  background-size: 16px 2px;
  background-repeat: repeat-x;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .processus-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem 1.5rem;
  }

  .processus-step {
    width: 30%;
  }

  .processus-dash {
    display: none;
  }
}

@media (max-width: 700px) {
  .process {
    padding: 5rem 5% 6rem;
  }

  .process-title {
    font-size: 2.4rem;
  }

  .processus-step {
    width: 100%;
  }

  .processus-ring {
    width: 5.5rem;
    height: 5.5rem;
  }
}

/* PAGE A PROPOS */
.hero-apropos {
  height: 60vh;
  display: flex;
}

.apropos-left {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 6rem;
}

.apropos-left h3 {
  font-size: 2rem;
  display: inline-block;
  width: fit-content;
  background: linear-gradient(90deg, #00CBFF, #B71CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 1rem;
}

.apropos-left h1 {
  font-size: 5rem;
  line-height: 1;
  padding-bottom: 1rem;
}

.apropos-left p {
  font-size: 1.8rem;
  color: var(--primary-text-color);
}

.apropos-left h3, .apropos-left h1, .apropos-left p {
  margin: 0;
}

.apropos-right {
  flex: 1;
  height: 100%;
}

.apropos-hero-buttons {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.apropos-hero-buttons a:first-child {
  background: var(--primary-color-1);
  color: var(--background-color);
  font-size: 2rem;
  text-transform: uppercase;
  font-family: 'Barlow Condensed';
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;
}

.apropos-hero-buttons a:last-child {
  background: var(--background-color);
  color: var(--primary-color-2);
  font-size: 2rem;
  text-transform: uppercase;
  font-family: 'Barlow Condensed';
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: solid 3px var(--primary-color-2);
}

.hero-img-apropos {
  background: url(/assets/images/hero-apropos.png);
  background-position: center;
  height: 32rem;
  width: 100%;
  border-radius: 300px 0 0 300px;
  margin-left: 3rem;
}

.about {
  height: 80vh;
  display: flex;
  margin-top: 5rem;
}

.about-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-left img {
  height: 40rem;
  border-radius: 25px;
}

.about-right {
  flex: 1;
}

.about-right h3 {
  font-size: 2rem;
  display: inline-block;
  width: fit-content;
  background: linear-gradient(90deg, #00CBFF, #B71CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 1rem;
}

.about-right h2 {
  font-size: 4rem;
  text-transform: uppercase;
  width: 80%;
}

.about-right p {
  font-size: 1.8rem;
  color: var(--primary-text-color);
  width: 75%;
}

.about-right h4 {
  font-size: 1.5rem;
  padding-bottom: 4rem;
}

.about-right a {
  background: var(--primary-color-1);
  color: var(--background-color);
  font-size: 2rem;
  text-transform: uppercase;
  font-family: 'Barlow Condensed';
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;
}

.about-right h3, .about-right h2, .about-right h4, .about-right a {
  margin: 0;
}

.valeurs {
  height: 50vh;
  margin: 0 5rem 0;
}

.valeurs h4:first-child {
  text-transform: uppercase;
  font-size: 2rem;
  margin: 0;
  display: inline-block;
  width: fit-content;
  background: linear-gradient(90deg, #00CBFF, #B71CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 3rem;
}

.valeurs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.valeur-item {
  height: 15rem;
  background: var(--background-color-2);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.12);
}

.valeur-item:nth-child(odd) i {
  padding: 1rem;
  background: var(--secondary-color-2);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--primary-color-2);
}

.valeur-item:nth-child(even) i {
  padding: 1rem;
  background: var(--secondary-color-1);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--primary-color-1);
}

.valeur-item h4 {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.valeur-item h4:last-child {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0;
}

.valeur-item p {
  font-size: 1.3rem;
  color: var(--primary-text-color);
}

/* PAGE REALISATION */

.hero-realisation {
  margin-top: 4rem;
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content:end;
}

.realisation-title, .realisation-p, .realisation-accent-line {
  margin: 0;
}

.realisation-title {
  font-size: 6rem;
  text-transform: uppercase;
  line-height: 0;
  padding-left: 10rem;
  padding-bottom: 3rem;
}

.realisation-p {
  font-size: 1.8rem;
  color: var(--primary-text-color);
  padding-left: 10rem;
}

.realisation-accent-line {
  width: 10rem;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color-1), var(--primary-color-2));
  border-radius: 50px;
  margin: 1rem auto 1.4rem;
  margin-left: 10rem;
}



.bento {
  width: 100%;
  padding: 7rem 0 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
.bento-grid {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
 
/* ----- Ligne : 2 colonnes, ratio variable ----- */
.bento-row {
  display: grid;
  gap: 1.6rem;
  height: 28rem;
}
 
.bento-row.ratio-2-3 {
  grid-template-columns: 2fr 3fr;
}
 
.bento-row.ratio-1-3 {
  grid-template-columns: 1fr 3fr;
}
 
/* .flip inverse le sens de la ligne : le petit bloc passe à droite */
.bento-row.flip.ratio-2-3 {
  grid-template-columns: 3fr 2fr;
}
 
.bento-row.flip.ratio-1-3 {
  grid-template-columns: 3fr 1fr;
}
 
/* ----- Item ----- */
.bento-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
}
 
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(35%) contrast(1.05);
  transition: filter 0.4s ease, transform 0.6s ease;
}
 
.bento-item:hover img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.05);
}
 
/* dégradé sombre en bas pour la lisibilité du titre */
.bento-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 5, 53, 0.85) 100%);
  z-index: 1;
}
 
/* ----- Contenu (ligne dégradée + titre) ----- */
.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.6rem 1.8rem;
}
 
.bento-content::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 50px;
  margin-bottom: 0.8rem;
  transition: width 0.35s ease;
}
 
.bento-item:hover .bento-content::before {
  width: 64px;
}
 
.bento-content h3 {
  margin: 0;
  font-family: 'Barlow Condensed';
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  text-transform: uppercase;
}
 
/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .bento-row {
    height: 22rem;
  }
}
 
@media (max-width: 700px) {
  .bento-row,
  .bento-row.ratio-2-3,
  .bento-row.ratio-1-3,
  .bento-row.flip.ratio-2-3,
  .bento-row.flip.ratio-1-3 {
    grid-template-columns: 1fr;
    height: auto;
  }
 
  .bento-row .bento-item {
    height: 18rem;
  }
 
  .bento-content h3 {
    font-size: 1.5rem;
  }
}
 

/* PAGE CONTACT */
/* =========================================
   SECTION CONTACT
   ========================================= */
.contact {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 7rem 0 8rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
}

.contact-title {
  font-family: 'Barlow Condensed';
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--title-color);
  margin: 0 0 2.4rem;
  letter-spacing: 0.01em;
}

/* ----- Formulaire ----- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-field {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--background-color-2);
  border: 1px solid rgba(8, 5, 53, 0.12);
  border-radius: 12px;
  padding: 0 1.4rem;
  height: 5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field:focus-within {
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 3px rgba(0, 203, 255, 0.12);
}

.form-field i {
  font-size: 1.3rem;
  color: var(--primary-color-2);
  margin-right: 1.1rem;
  flex-shrink: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Barlow Condensed';
  font-size: 1.4rem;
  color: var(--title-color);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--primary-text-color);
  opacity: 0.7;
}

.form-select select {
  appearance: none;
  cursor: pointer;
  color: var(--primary-text-color);
}

.form-select select:valid {
  color: var(--title-color);
}

.select-arrow {
  position: absolute;
  right: 1.4rem;
  font-size: 1rem !important;
  color: var(--primary-text-color) !important;
  margin: 0 !important;
  pointer-events: none;
}

/* ----- Champ Prestations (conditionnel) ----- */
.form-prestations {
  animation: prestationsIn 0.35s ease;
}

@keyframes prestationsIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-textarea {
  height: 14rem;
  align-items: flex-start;
  padding-top: 1.4rem;
}

.form-textarea i {
  margin-top: 0.3rem;
}

.form-textarea textarea {
  height: 100%;
  resize: none;
  line-height: 1.5;
  padding-top: 0.2rem;
}

/* ----- Checkbox RGPD ----- */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  margin-top: 0.4rem;
}

.form-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid rgba(8, 5, 53, 0.2);
  border-radius: 6px;
  margin-top: 0.1rem;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}

.form-checkbox input:checked ~ .checkmark {
  background: var(--gradient-primary);
  border-color: transparent;
}

.form-checkbox input:checked ~ .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  font-family: 'Barlow Condensed';
  font-size: 1.25rem;
  color: var(--primary-text-color);
  line-height: 1.5;
}

.checkbox-label a {
  color: var(--primary-color-2);
  font-weight: 600;
}

/* ----- Bouton submit ----- */
.form-submit {
  margin-top: 0.8rem;
  height: 5.4rem;
  border: none;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: #ffffff;
  font-family: 'Barlow Condensed';
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.form-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(183, 28, 255, 0.25);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-result {
  margin: 0;
  font-family: 'Barlow Condensed';
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.6rem;
}

.form-result.success {
  color: #0F9D58;
}

.form-result.error {
  color: #E0245E;
}

/* ----- Colonne coordonnées ----- */
.contact-infos-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}

.contact-info-icon {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 14px;
  background: var(--secondary-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.6rem;
  color: var(--primary-color-2);
}

.contact-info-text h4 {
  font-family: 'Barlow Condensed';
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  margin: 0 0 0.5rem;
}

.contact-info-text p {
  font-family: 'Barlow Condensed';
  font-size: 1.3rem;
  color: var(--primary-text-color);
  margin: 0;
  line-height: 1.5;
}

/* ----- Réseaux sociaux ----- */
.contact-social {
  margin-top: 3rem;
}

.contact-social-title {
  font-family: 'Barlow Condensed';
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  margin: 0 0 1.2rem;
}

.contact-social-icons {
  display: flex;
  gap: 1.2rem;
}

.contact-social-icons a {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(183, 28, 255, 0.3);
}

.contact-social-icons i {
  font-size: 1.4rem;
  color: #ffffff;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 600px) {
  .contact {
    padding: 5rem 0 6rem;
  }

  .contact-title {
    font-size: 1.6rem;
  }

  .form-field {
    height: 4.6rem;
    padding: 0 1.1rem;
  }

  .form-textarea {
    height: 12rem;
  }
}

.hero-contact {
  height: 40vh;
  display: flex;
  align-items: center;
}

.contact-left {
  flex: 1;
  height: 100%;
}

.contact-left h1 {
  font-size: 6rem;
  text-transform: uppercase;
  padding-left: 8rem;
  line-height: 0;
  padding-top: 6rem;
}

.contact-left p {
  font-size: 1.8rem;
  color: var(--primary-text-color);
  padding-left: 8rem;
}

.contact-right {
  flex: 1;
  height: 100%;
}

.contact-img {
  width: 100%;
  height: 25rem;
  background: url(/assets/images/contact-hero.png);
  background-position: bottom;
  background-size: cover;
  border-radius: 300px 0 0 300px;
  margin-top: 2rem;
}

/* =========================================================
   RESPONSIVE GLOBAL — TABLETTE & MOBILE
   ========================================================= */

/* ===================== TABLETTE (≤ 1024px) ===================== */
@media (max-width: 1024px) {

  /* Navigation */
  .navigation {
    padding: 0 2.5rem;
  }
  .navigation-items {
    gap: 2.5rem;
  }
  .navigation-item a {
    font-size: 1.4rem;
  }

  /* Hero accueil */
  .hero-accueil {
    flex-direction: column;
    height: auto;
    padding: 3rem 0;
  }
  .hero-left, .hero-right {
    flex: none;
    width: 100%;
  }
  .hero-infos, .hero-buttons, .quote {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .hero-title {
    font-size: 5.5rem;
  }
  .hero-subtitle {
    font-size: 2.6rem;
  }
  .hero-p {
    width: 100%;
  }
  .hero-right {
    margin-top: 2rem;
    height: 35rem;
  }
  .chiffres {
    padding-left: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 90%;
  }

  /* Section prestations (home) */
  .home-prestas {
    height: auto;
    padding: 4rem 2rem;
  }
  .prestas-title {
    font-size: 2.8rem;
  }
  .prestas-p {
    font-size: 1.6rem;
    text-align: center;
  }
  .prestas-items {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Engagements */
  .engagements {
    flex-direction: column;
    height: auto;
    margin-top: 4rem;
    gap: 2rem;
  }
  .engagement-left {
    padding-left: 0;
    justify-content: center;
  }
  .engagement-left::before {
    width: 90%;
    height: 90%;
  }
  .engagement-left img {
    width: 90%;
    height: auto;
  }
  .engagement-right {
    padding: 1rem 2.5rem;
  }
  .engagement-title {
    font-size: 3rem;
  }

  /* Réalisations (home) */
  .realisations {
    height: auto;
    padding: 3rem 1.5rem;
  }
  .realisation-items {
    gap: 1.5rem;
  }
  .img-border img {
    width: 14rem;
  }

  /* Zones */
  .zones {
    flex-direction: column;
    height: auto;
    width: 90%;
    margin-top: 5rem;
    gap: 2rem;
  }
  .zones-right img {
    width: 100%;
  }
  .zones-title {
    font-size: 3.5rem;
  }
  .zones-p {
    font-size: 1.8rem;
  }
  .point-title {
    font-size: 1.6rem;
  }

  /* À propos */
  .hero-apropos {
    flex-direction: column;
    height: auto;
    gap: 2rem;
    padding: 3rem 0;
  }
  .apropos-left {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .apropos-left h1 {
    font-size: 3.8rem;
  }
  .hero-img-apropos {
    margin-left: 0;
    height: 26rem;
    border-radius: 200px 0 0 200px;
  }

  .about {
    flex-direction: column;
    height: auto;
    gap: 2rem;
  }
  .about-left img {
    height: auto;
    width: 90%;
  }
  .about-right h2 {
    font-size: 3rem;
    width: 100%;
  }
  .about-right p {
    width: 100%;
  }

  .valeurs {
    height: auto;
    margin: 0 2.5rem;
  }
  .valeurs-container {
    flex-wrap: wrap;
  }
  .valeur-item {
    flex: 1 1 45%;
    height: auto;
  }

  /* Page Prestations / Realisation hero */
  .presta-hero {
    flex-direction: column;
    height: auto;
    margin-left: 0;
    padding: 3rem 2.5rem;
    gap: 2rem;
  }
  .hero-presta-title {
    font-size: 4.5rem;
  }
  .hero-presta-subtitle {
    font-size: 2.4rem;
    width: 100%;
  }
  .hero-presta-p {
    width: 100%;
  }
  .presta-hero-img {
    height: 26rem;
    border-radius: 200px 0 0 200px;
  }

  .realisation-title {
    font-size: 4.5rem;
    padding-left: 2.5rem;
  }
  .realisation-p, .realisation-accent-line {
    padding-left: 2.5rem;
    margin-left: 0;
  }

  /* Process */
  .process-title {
    font-size: 2.8rem;
  }

  /* Contact hero */
  .hero-contact {
    flex-direction: column;
    height: auto;
    padding: 3rem 0;
    gap: 2rem;
  }
  .contact-left h1 {
    font-size: 4.5rem;
    padding-left: 2.5rem;
  }
  .contact-left p {
    padding-left: 2.5rem;
  }
  .contact-img {
    border-radius: 200px 0 0 200px;
  }

  /* CTA footer */
  .cta-footer {
    flex-direction: column;
    height: auto;
    padding: 2.5rem;
    gap: 2rem;
    text-align: center;
  }
  .cta-infos {
    margin-left: 0;
  }
  .cta-footer-buttons {
    margin-right: 0;
  }

  /* Footer */
  footer {
    flex-wrap: wrap;
    height: auto;
    gap: 2rem;
    padding: 3rem 2.5rem;
  }
}

/* ===================== MOBILE LARGE / TABLETTE PORTRAIT (≤ 768px) ===================== */
@media (max-width: 768px) {

  /* Header / nav (suppose menu burger géré en JS) */
  .navigation {
    padding: 0 1.5rem;
  }
  .logo {
    width: 9rem;
  }
  .navigation-items {
    display: none; /* à remplacer par menu mobile/burger */
  }
  .cta {
    font-size: 1.1rem;
    padding: 0.8rem 1.4rem;
  }

  /* Hero accueil */
  .hero-title {
    font-size: 3.8rem;
  }
  .hero-subtitle {
    font-size: 2rem;
  }
  .hero-p {
    font-size: 1.3rem;
  }
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
  }
  .hero-buttons :last-child {
    margin-left: 0.6rem;
  }
  .hero-right {
    height: 26rem;
  }
  .chiffres {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .quote {
    font-size: 1.2rem;
  }

  /* Prestations (home) */
  .prestas-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .prestas-item {
    height: 38vh;
  }
  .prestas-cta {
    padding: 0.6rem 3rem;
    font-size: 1.5rem;
  }

  /* Engagements */
  .engagement-title {
    font-size: 2.4rem;
  }
  .engagement-items {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Réalisations (home) */
  .realisation-items {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .img-border img {
    width: 12rem;
  }
  .realisation-cta {
    padding: 0.6rem 3rem;
    font-size: 1.5rem;
  }

  /* Zones */
  .zones-title {
    font-size: 2.6rem;
  }
  .zones-p {
    font-size: 1.5rem;
  }
  .point-title {
    font-size: 1.3rem;
  }
  .i {
    font-size: 2.2rem;
  }

  /* À propos */
  .apropos-left h1 {
    font-size: 3rem;
  }
  .apropos-left p {
    font-size: 1.4rem;
  }
  .apropos-hero-buttons {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .apropos-hero-buttons a {
    font-size: 1.5rem;
  }
  .hero-img-apropos {
    height: 20rem;
    border-radius: 120px 0 0 120px;
  }

  .about-right h2 {
    font-size: 2.4rem;
  }
  .about-right p {
    font-size: 1.4rem;
  }
  .about-right h4 {
    font-size: 1.2rem;
    padding-bottom: 2rem;
  }

  .valeurs {
    margin: 0 1.5rem;
  }
  .valeur-item {
    flex: 1 1 100%;
  }

  /* Prestations grid (déjà géré à 900px, ici on harmonise) */
  .presta-name {
    font-size: 1.6rem;
  }
  .presta-desc {
    font-size: 1.15rem;
  }

  /* Hero presta / réalisation */
  .hero-presta-title {
    font-size: 3.2rem;
  }
  .hero-presta-subtitle {
    font-size: 1.9rem;
  }
  .hero-presta-p {
    font-size: 1.4rem;
  }
  .presta-hero-img {
    height: 20rem;
    border-radius: 120px 0 0 120px;
  }

  .realisation-title {
    font-size: 3.2rem;
    padding-left: 1.5rem;
  }
  .realisation-p, .realisation-accent-line {
    padding-left: 1.5rem;
  }

  /* Process */
  .process-title {
    font-size: 2.2rem;
  }
  .processus-name {
    font-size: 1.15rem;
  }
  .processus-desc {
    font-size: 1rem;
  }

  /* Contact */
  .contact-left h1 {
    font-size: 3.2rem;
    padding-left: 1.5rem;
  }
  .contact-left p {
    font-size: 1.4rem;
    padding-left: 1.5rem;
  }
  .contact-img {
    height: 20rem;
    border-radius: 120px 0 0 120px;
  }

  /* CTA footer */
  .cta-infos-title {
    font-size: 2.6rem;
  }
  .cta-infos-subtitle {
    font-size: 1.2rem;
  }
  .cta-footer-buttons {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .cta-footer-button:first-child,
  .cta-footer-button:last-child {
    font-size: 1.4rem;
    padding: 0.8rem 1.2rem;
  }

  /* Footer */
  footer {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 2.5rem;
  }
  .footer-devis p {
    width: 100%;
  }
  .copyright-p, .copyright-p a {
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
    font-size: 1.1rem;
  }
}

/* ===================== MOBILE (≤ 480px) ===================== */
@media (max-width: 480px) {

  .logo {
    width: 8rem;
  }
  .cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }

  /* Hero accueil */
  .hero-infos, .hero-buttons, .quote {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.6rem;
  }
  .hero-p {
    font-size: 1.2rem;
  }
  .hero-buttons :first-child,
  .hero-buttons :last-child {
    font-size: 1.2rem;
    padding: 0.8rem 1.4rem;
  }
  .hero-right {
    height: 20rem;
  }
  .chiffres {
    padding-left: 1.5rem;
  }
  .chiffre-content h3 {
    font-size: 1.8rem;
  }
  .chiffre-content p {
    font-size: 1rem;
  }
  .quote {
    font-size: 1.05rem;
  }

  /* Prestations (home) */
  .prestas-title {
    font-size: 2.2rem;
  }
  .prestas-p {
    font-size: 1.3rem;
  }
  .prestas-content h3 {
    font-size: 1.4rem;
  }
  .prestas-content p {
    font-size: 1.2rem;
  }

  /* Engagements */
  .engagement-title {
    font-size: 2rem;
  }
  .engagement-content h3 {
    font-size: 1.6rem;
  }
  .engagement-content p {
    font-size: 1rem;
  }
  .icon {
    width: 60px;
    height: 60px;
  }

  /* Zones */
  .zones-title {
    font-size: 2.1rem;
  }
  .zones-p {
    font-size: 1.3rem;
  }

  /* À propos */
  .apropos-left h1 {
    font-size: 2.4rem;
  }
  .apropos-left h3 {
    font-size: 1.6rem;
  }
  .apropos-hero-buttons a {
    font-size: 1.2rem;
    padding: 0.8rem 1.4rem;
  }
  .about-right h2 {
    font-size: 2rem;
  }

  /* Hero presta / réalisation */
  .hero-presta-title {
    font-size: 2.4rem;
  }
  .hero-presta-subtitle {
    font-size: 1.5rem;
  }
  .realisation-title {
    font-size: 2.4rem;
  }

  /* Process */
  .process-title {
    font-size: 1.9rem;
  }
  .processus-ring {
    width: 5rem;
    height: 5rem;
  }

  /* Contact */
  .contact-left h1 {
    font-size: 2.4rem;
  }
  .contact-left p {
    font-size: 1.2rem;
  }

  /* CTA footer */
  .cta-infos-title {
    font-size: 2rem;
  }
  .cta-footer-button:first-child,
  .cta-footer-button:last-child {
    font-size: 1.2rem;
    padding: 0.7rem 1rem;
  }

  /* Footer */
  .footer-item h3, .footer-devis h3 {
    font-size: 1.5rem;
  }
  .footer-item li, .footer-item a {
    font-size: 1.3rem;
  }
}
/* ─────────────────────────────────────────────
   RESET GLOBAL MOBILE-FIRST HELPERS
   ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

img { max-width: 100%; height: auto; }

/* ─────────────────────────────────────────────
   BURGER MENU — BOUTON (caché par défaut sur desktop)
   ───────────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1100;
  flex-shrink: 0;
}
.burger:hover { background: rgba(0,203,255,0.08); }
.burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--title-color);
  border-radius: 3px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
}
/* État ouvert */
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─────────────────────────────────────────────
   OVERLAY (fond sombre quand menu ouvert)
   ───────────────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,5,53,0.45);
  backdrop-filter: blur(3px);
  z-index: 900;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.visible {
  display: block;
  opacity: 1;
}

/* ============================================================
   ≤ 1024px — TABLETTE PAYSAGE
   ============================================================ */
@media (max-width: 1024px) {

  /* ── HEADER & NAV ── */
  header {
    height: 70px;
  }

  .navigation {
    padding: 0 2rem;
    height: 100%;
    position: relative;
    z-index: 1001;
  }

  .logo { width: 10rem; }

  /* On cache les liens + CTA desktop, on affiche le burger */
  .navigation-items {
    display: none;
  }
  .navigation > .cta {
    display: none; /* on l'a dans le menu mobile */
  }
  .burger { display: flex; }

  /* Drawer menu mobile */
  .navigation-items.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--background-color);
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
    padding: 90px 2rem 3rem;
    z-index: 1000;
    overflow-y: auto;
    animation: slideInNav 0.32s cubic-bezier(.4,0,.2,1) both;
  }

  @keyframes slideInNav {
    from { transform: translateX(100%); opacity: 0.5; }
    to   { transform: translateX(0);    opacity: 1; }
  }

  .navigation-items.open .navigation-item {
    width: 100%;
    border-bottom: 1px solid rgba(8,5,53,0.07);
  }

  .navigation-items.open .navigation-item a {
    display: block;
    padding: 1.2rem 0.5rem;
    font-size: 2rem;
    font-family: 'Barlow Condensed';
    color: var(--title-color);
    transition: color 0.2s;
  }
  .navigation-items.open .navigation-item a:hover,
  .navigation-items.open .navigation-item.active a {
    color: var(--primary-color-1);
  }

  /* CTA à l'intérieur du menu mobile */
  .navigation-items.open::after {
    content: 'Demander un devis';
    display: block;
    margin-top: 2rem;
    width: 100%;
    text-align: center;
    background: var(--primary-color-2);
    color: #fff;
    font-family: 'Sugo';
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-transform: uppercase;
    cursor: pointer;
  }

  /* ── HERO ACCUEIL ── */
  .hero-accueil {
    flex-direction: column;
    height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-left, .hero-right {
    flex: none;
    width: 100%;
  }

  .hero-infos, .hero-buttons, .quote {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .hero-title  { font-size: 5.5rem; }
  .hero-subtitle { font-size: 2.6rem; }
  .hero-p { width: 100%; font-size: 1.5rem; }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .hero-buttons :first-child,
  .hero-buttons :last-child {
    margin-left: 0;
    font-size: 1.5rem;
  }

  .hero-right {
    margin-top: 2rem;
    height: 36rem;
  }

  .chiffres {
    padding-left: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: calc(100% - 2.5rem);
    padding-right: 2.5rem;
  }

  /* ── PRESTATIONS (HOME) ── */
  .home-prestas {
    height: auto;
    padding: 4rem 2rem;
  }
  .prestas-title { font-size: 3rem; }
  .prestas-p { font-size: 1.6rem; text-align: center; }
  .prestas-items { grid-template-columns: repeat(2, 1fr); }
  .prestas-item { height: 45vh; }
  /* Texte toujours visible sur tablette */
  .prestas-content p {
    max-height: none;
    opacity: 1;
    margin-top: 0.6rem;
  }

  /* ── ENGAGEMENTS ── */
  .engagements {
    flex-direction: column;
    height: auto;
    margin-top: 4rem;
  }
  .engagement-left {
    padding-left: 0;
    justify-content: center;
    padding-bottom: 3rem;
  }
  .engagement-left::before {
    width: 80%;
    max-width: 40rem;
    height: 30rem;
  }
  .engagement-left img {
    width: 80%;
    max-width: 40rem;
    height: auto;
  }
  .engagement-right {
    padding: 1rem 2.5rem 3rem;
  }
  .engagement-title {
    font-size: 3.2rem;
    line-height: 1.2;
  }
  .engagement-items {
    gap: 2.5rem 2rem;
  }

  /* ── RÉALISATIONS (HOME) ── */
  .realisations {
    height: auto;
    padding: 3rem 2rem;
  }
  .img-border img { width: 14rem; }

  /* ── ZONES ── */
  .zones {
    flex-direction: column;
    height: auto;
    width: 90%;
    margin-top: 5rem;
    gap: 2rem;
    align-items: flex-start;
  }
  .zones-right img { width: 100%; }
  .zones-title { font-size: 3.5rem; line-height: 1.2; margin-top: 0; }
  .zones-p { font-size: 1.8rem; }
  .point-title { font-size: 1.6rem; }

  /* ── REVIEWS ── */
  .reviews { margin-top: 5rem; }
  .carousel-track { height: 22rem; }

  /* ── FAQ ── */
  .faq-title { font-size: 2.8rem; }

  /* ── CTA FOOTER ── */
  .cta-footer {
    flex-direction: column;
    height: auto;
    padding: 3rem 2.5rem;
    gap: 2rem;
    text-align: center;
  }
  .cta-infos { margin-left: 0; }
  .cta-infos-title { font-size: 3rem; line-height: 1.1; }
  .cta-footer-buttons {
    margin-right: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
  }
  .cta-footer-button:first-child,
  .cta-footer-button:last-child {
    font-size: 1.6rem;
    padding: 0.9rem 1.6rem;
  }

  /* ── FOOTER ── */
  footer {
    flex-wrap: wrap;
    height: auto;
    gap: 2.5rem;
    padding: 3rem 2.5rem;
  }
  .footer-presentations { min-width: 200px; }
  .footer-devis p { width: 100%; }

  /* ── PAGE À PROPOS ── */
  .hero-apropos {
    flex-direction: column;
    height: auto;
    padding: 3rem 0;
    gap: 2rem;
  }
  .apropos-left {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .apropos-left h1 { font-size: 4rem; }
  .apropos-left p  { font-size: 1.6rem; }
  .hero-img-apropos {
    margin-left: 0;
    height: 28rem;
    border-radius: 200px 0 0 200px;
    background-size: cover;
  }

  .about {
    flex-direction: column;
    height: auto;
    margin-top: 3rem;
    gap: 2rem;
  }
  .about-left { justify-content: center; }
  .about-left img { height: auto; width: 90%; }
  .about-right {
    padding: 0 2.5rem;
  }
  .about-right h2 { font-size: 3rem; width: 100%; }
  .about-right p  { font-size: 1.6rem; width: 100%; }

  .valeurs {
    height: auto;
    margin: 0 2.5rem;
    padding-bottom: 3rem;
  }
  .valeurs-container { flex-wrap: wrap; gap: 1.5rem; }
  .valeur-item {
    flex: 1 1 45%;
    height: auto;
    min-height: 14rem;
  }

  /* ── PAGE PRESTATIONS ── */
  .presta-hero {
    flex-direction: column;
    height: auto;
    margin-left: 0;
    padding: 3rem 2.5rem;
    gap: 2rem;
  }
  .hero-presta-title   { font-size: 4.5rem; }
  .hero-presta-subtitle { font-size: 2.4rem; width: 100%; }
  .hero-presta-p { font-size: 1.5rem; width: 100%; }
  .presta-hero-img {
    height: 28rem;
    border-radius: 200px 0 0 200px;
  }

  .prestations-section { padding: 5rem 2rem 6rem; }
  .prestations-grid { grid-template-columns: repeat(2, 1fr); }
  .presta-img-wrap  { height: 16rem; }

  /* ── PAGE RÉALISATIONS ── */
  .realisation-title {
    font-size: 4.5rem;
    padding-left: 2.5rem;
    line-height: 1.1;
    padding-bottom: 2rem;
  }
  .realisation-p, .realisation-accent-line {
    padding-left: 2.5rem;
    margin-left: 0;
  }
  .bento-row { height: 22rem; }

  /* ── PAGE CONTACT ── */
  .hero-contact {
    flex-direction: column;
    height: auto;
    padding: 3rem 0;
    gap: 2rem;
    align-items: flex-start;
  }
  .contact-left h1 {
    font-size: 4.5rem;
    padding-left: 2.5rem;
    padding-top: 2rem;
    line-height: 1.1;
  }
  .contact-left p {
    font-size: 1.6rem;
    padding-left: 2.5rem;
  }
  .contact-img {
    border-radius: 200px 0 0 200px;
    height: 22rem;
    margin-top: 0;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2.5rem 6rem;
  }
}


/* ============================================================
   ≤ 768px — TABLETTE PORTRAIT / GRAND MOBILE
   ============================================================ */
@media (max-width: 768px) {

  /* ── HERO ACCUEIL ── */
  .hero-title    { font-size: 4rem; }
  .hero-subtitle { font-size: 2rem; }
  .hero-p        { font-size: 1.4rem; }
  .hero-right    { height: 28rem; }

  .hero-bg-image {
    border-radius: 150px 0 0 100px;
    background-size: cover;
  }

  .chiffres { grid-template-columns: 1fr 1fr; }
  .chiffre-item { height: auto; padding: 0.8rem; }
  .chiffre-content h3 { font-size: 2rem; }
  .chiffre-content p  { font-size: 1.1rem; }
  .quote { font-size: 1.3rem; }

  /* ── PRESTATIONS (HOME) ── */
  .prestas-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 95%;
  }
  .prestas-item { height: 38vh; }
  .prestas-content h3 { font-size: 1.6rem; }
  .prestas-cta {
    font-size: 1.5rem;
    padding: 0.6rem 3.5rem;
    margin-top: 3rem;
  }

  /* ── ENGAGEMENTS ── */
  .engagement-title { font-size: 2.8rem; }
  .engagement-items {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .icon { width: 64px; height: 64px; }
  .engagement-content h3 { font-size: 1.8rem; }

  /* ── RÉALISATIONS HOME ── */
  .realisation-items { gap: 1rem; }
  .img-border img { width: 12rem; }
  .realisation-cta {
    font-size: 1.5rem;
    padding: 0.6rem 3.5rem;
    margin-top: 3rem;
  }

  /* ── ZONES ── */
  .zones-title { font-size: 3rem; }
  .zones-p     { font-size: 1.6rem; }
  .point-title { font-size: 1.4rem; }
  .i           { font-size: 2.5rem; }

  /* ── REVIEWS ── */
  .reviews { margin-top: 4rem; height: auto; padding-bottom: 3rem; }
  .review-title { font-size: 2.8rem; line-height: 1.2; }
  .carousel-track { height: 25rem; }
  .review-card { padding: 2rem 1.8rem 1.6rem; }
  .review-quote { font-size: 1.5rem; }

  /* ── FAQ ── */
  .faq { padding: 4rem 1.5rem 5rem; gap: 2.5rem; }
  .faq-title { font-size: 2.4rem; }
  .faq-question { padding: 1.4rem 1.6rem; }
  .faq-question span:first-child { font-size: 1.6rem; }
  .faq-answer p { font-size: 1.3rem; padding: 0 1.6rem 1.4rem; }
  .faq-list { width: 100%; max-width: 100%; }

  /* ── CTA FOOTER ── */
  .cta-infos-title    { font-size: 2.4rem; }
  .cta-infos-subtitle { font-size: 1.3rem; }
  .cta-footer-button:first-child,
  .cta-footer-button:last-child {
    font-size: 1.4rem;
    padding: 0.8rem 1.3rem;
  }

  /* ── FOOTER ── */
  footer {
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }
  .footer-item h3, .footer-devis h3 { font-size: 1.6rem; line-height: 1.4; }
  .footer-item li, .footer-item a   { font-size: 1.4rem; line-height: 2.5rem; }
  .footer-devis p  { width: 100%; margin-bottom: 1.5rem; }
  .copyright-p { flex-wrap: wrap; gap: 1rem; font-size: 1.1rem; justify-content: center; }
  .copyright { height: auto; padding: 1rem; }

  /* ── PAGE À PROPOS ── */
  .apropos-left h1 { font-size: 3.2rem; }
  .apropos-left h3 { font-size: 1.8rem; }
  .apropos-left p  { font-size: 1.5rem; }
  .apropos-hero-buttons { flex-wrap: wrap; gap: 1rem; }
  .apropos-hero-buttons a:first-child,
  .apropos-hero-buttons a:last-child { font-size: 1.5rem; padding: 0.8rem 1.5rem; }
  .hero-img-apropos { height: 22rem; border-radius: 120px 0 0 120px; }

  .about-right h2 { font-size: 2.6rem; }
  .about-right p  { font-size: 1.5rem; }
  .about-right h4 { font-size: 1.3rem; }

  .valeur-item { flex: 1 1 100%; }

  /* ── PAGE PRESTATIONS ── */
  .hero-presta-title    { font-size: 3.2rem; }
  .hero-presta-subtitle { font-size: 2rem; }
  .hero-presta-p        { font-size: 1.4rem; }
  .presta-hero-img      { height: 22rem; border-radius: 120px 0 0 120px; }

  .prestations-section  { padding: 4rem 1.5rem 5rem; }
  .presta-section-title { font-size: 3rem; line-height: 1.2; }
  .presta-name          { font-size: 1.7rem; }
  .presta-desc          { font-size: 1.15rem; }

  /* ── PAGE RÉALISATIONS ── */
  .realisation-title { font-size: 3.2rem; }
  .bento-row { height: 20rem; }

  /* ── PROCESS ── */
  .process { padding: 4rem 2rem 5rem; }
  .process-title { font-size: 2.4rem; }
  .processus-row { flex-wrap: wrap; justify-content: center; gap: 2.5rem 1rem; }
  .processus-step { width: 45%; }
  .processus-dash { display: none; }
  .processus-name { font-size: 1.2rem; }
  .processus-desc { font-size: 1rem; }

  /* ── PAGE CONTACT ── */
  .contact-left h1 { font-size: 3.2rem; }
  .contact-left p  { font-size: 1.4rem; }
  .contact-img { height: 20rem; border-radius: 120px 0 0 120px; }
  .contact { padding: 4rem 1.5rem 5rem; }
  .contact-title { font-size: 1.7rem; }
}


/* ============================================================
   ≤ 480px — MOBILE STANDARD
   ============================================================ */
@media (max-width: 480px) {

  /* ── HEADER ── */
  header { height: 60px; }
  .logo { width: 8.5rem; }
  .navigation { padding: 0 1.2rem; }

  /* ── HERO ACCUEIL ── */
  .hero-accueil { padding-top: 2rem; padding-bottom: 2rem; }
  .hero-infos, .hero-buttons, .quote {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero-title    { font-size: 3rem; }
  .hero-subtitle { font-size: 1.7rem; }
  .hero-p        { font-size: 1.3rem; }
  .hero-buttons  { flex-direction: column; gap: 0.8rem; }
  .hero-buttons :first-child,
  .hero-buttons :last-child {
    width: 100%;
    text-align: center;
    margin-left: 0;
    font-size: 1.4rem;
    padding: 0.9rem 1rem;
  }
  .hero-right { height: 22rem; }
  .hero-bg-image { border-radius: 80px 0 0 60px; }

  .chiffres {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .chiffre-item { padding: 0.7rem; }
  .chiffre-content h3 { font-size: 1.8rem; }
  .chiffre-content p  { font-size: 1rem; }
  .icon-circle { width: 3.5rem; height: 3.5rem; }
  .icon-circle i { font-size: 1.6rem; }
  .quote { font-size: 1.1rem; margin-top: 1.5rem; }

  /* ── PRESTATIONS (HOME) ── */
  .home-prestas { padding: 3rem 1.2rem; }
  .prestas-title { font-size: 2.4rem; }
  .prestas-p { font-size: 1.4rem; }
  .prestas-items {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }
  .prestas-item { height: 36vh; }
  .prestas-content h3 { font-size: 1.6rem; }
  .prestas-content p  { font-size: 1.2rem; }

  /* ── ENGAGEMENTS ── */
  .engagements { margin-top: 2rem; }
  .engagement-left img { width: 90%; max-width: none; }
  .engagement-left::before { width: 85%; max-width: none; height: 85%; }
  .engagement-right { padding: 1rem 1.5rem 2rem; }
  .engagement-title { font-size: 2.4rem; }
  .icon { width: 56px; height: 56px; }
  .icon i { font-size: 1.7rem; }
  .engagement-content h3 { font-size: 1.7rem; }
  .engagement-content p  { font-size: 1.05rem; }

  /* ── RÉALISATIONS HOME ── */
  .realisations { padding: 2.5rem 1.2rem; }
  .img-border img { width: 10rem; }

  /* ── ZONES ── */
  .zones { width: 95%; margin-top: 3rem; }
  .zones-title { font-size: 2.4rem; }
  .zones-p     { font-size: 1.4rem; }
  .point-title { font-size: 1.3rem; }
  .i           { font-size: 2rem; }

  /* ── REVIEWS ── */
  .reviews { margin-top: 3rem; }
  .review-title { font-size: 2.2rem; }
  .carousel-track { height: 28rem; }
  .review-quote { font-size: 1.35rem; }
  .review-name  { font-size: 1.4rem; }

  /* ── FAQ ── */
  .faq { padding: 3rem 1.2rem 4rem; }
  .faq-title { font-size: 2rem; }
  .faq-question span:first-child { font-size: 1.5rem; }
  .faq-icon { width: 2.8rem; height: 2.8rem; font-size: 1.8rem; }

  /* ── CTA FOOTER ── */
  .cta-footer { padding: 2.5rem 1.5rem; }
  .cta-infos-title    { font-size: 2rem; }
  .cta-infos-subtitle { font-size: 1.2rem; }
  .cta-footer-buttons { flex-direction: column; width: 100%; gap: 1rem; }
  .cta-footer-button:first-child,
  .cta-footer-button:last-child {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    padding: 0.9rem 1rem;
  }

  /* ── FOOTER ── */
  footer { padding: 2.5rem 1.5rem; }
  .footer-item h3, .footer-devis h3 { font-size: 1.5rem; }
  .footer-item li, .footer-item a   { font-size: 1.3rem; }
  .copyright-p { gap: 0.5rem; flex-direction: column; }

  /* ── PAGE À PROPOS ── */
  .apropos-left { padding: 0 1.5rem; }
  .apropos-left h1 { font-size: 2.8rem; }
  .apropos-left h3 { font-size: 1.6rem; }
  .apropos-left p  { font-size: 1.4rem; }
  .apropos-hero-buttons { flex-direction: column; }
  .apropos-hero-buttons a:first-child,
  .apropos-hero-buttons a:last-child {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
  }
  .hero-img-apropos { height: 18rem; border-radius: 80px 0 0 60px; }

  .about-right { padding: 0 1.5rem; }
  .about-right h2 { font-size: 2.2rem; }
  .about-right p  { font-size: 1.4rem; }
  .valeur-item { min-height: auto; }

  /* ── PAGE PRESTATIONS ── */
  .presta-hero { padding: 2rem 1.5rem; }
  .hero-presta-title    { font-size: 2.8rem; }
  .hero-presta-subtitle { font-size: 1.7rem; }
  .presta-hero-img { height: 18rem; border-radius: 80px 0 0 60px; }

  .prestations-section  { padding: 3rem 1.2rem 4rem; }
  .presta-section-title { font-size: 2.4rem; }
  .prestations-grid { grid-template-columns: 1fr; }
  .presta-img-wrap  { height: 18rem; }

  /* ── PAGE RÉALISATIONS ── */
  .hero-realisation { padding: 0 1.5rem; }
  .realisation-title { font-size: 2.6rem; padding-left: 1.5rem; padding-bottom: 1.5rem; }
  .realisation-p     { font-size: 1.5rem; padding-left: 1.5rem; }
  .realisation-accent-line { margin-left: 1.5rem; }

  .bento-row,
  .bento-row.ratio-2-3,
  .bento-row.ratio-1-3,
  .bento-row.flip.ratio-2-3,
  .bento-row.flip.ratio-1-3 {
    grid-template-columns: 1fr;
    height: auto;
  }
  .bento-row .bento-item { height: 20rem; }
  .bento-content h3 { font-size: 1.5rem; }

  /* ── PROCESS ── */
  .process { padding: 3rem 1.5rem 4rem; }
  .process-title { font-size: 2rem; }
  .processus-step { width: 100%; }
  .processus-ring { width: 5.5rem; height: 5.5rem; }

  /* ── PAGE CONTACT ── */
  .hero-contact { padding: 2rem 0; }
  .contact-left { padding: 0; }
  .contact-left h1 {
    font-size: 2.8rem;
    padding-left: 1.5rem;
    padding-top: 1rem;
  }
  .contact-left p { font-size: 1.4rem; padding-left: 1.5rem; }
  .contact-img { height: 16rem; border-radius: 80px 0 0 60px; }

  .contact { padding: 3rem 1.2rem 4rem; }
  .contact-title { font-size: 1.6rem; }
  .form-field { height: 4.8rem; }
  .form-textarea { height: 12rem; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 1.3rem; }
  .form-submit { font-size: 1.4rem; height: 5rem; }
}


/* ============================================================
   ≤ 360px — PETIT MOBILE
   ============================================================ */
@media (max-width: 360px) {
  .hero-title    { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.5rem; }
  .chiffres      { grid-template-columns: 1fr; }
  .prestas-title { font-size: 2rem; }
  .faq-title     { font-size: 1.8rem; }
  .cta-infos-title { font-size: 1.8rem; }
  .apropos-left h1  { font-size: 2.4rem; }
  .hero-presta-title { font-size: 2.4rem; }
  .realisation-title { font-size: 2.2rem; }
  .contact-left h1   { font-size: 2.4rem; }
}


