

/*style service*/
/* HERO */
.service-hero {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0a5133, #00c47a);
  color: #fff;
}

.service-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  font-weight: 600;
  margin-bottom: 20px;
}

.service-intro {
  max-width: 720px;
  margin: 20px auto 0;
  opacity: .95;
}

/* CONTENT */
.service-content {
  padding: 90px 0;
}

.service-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.service-visual {
  display: flex;
}

/* Mobile */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .service-image {
    order: -1; /* image au-dessus sur mobile */
  }

  .service-visual img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  
}
.service-text ul {
  list-style: none;
  padding: 0;
}

.service-text h2 {
  list-style: none;
  margin-left: 10px;
}


.service-text li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.service-cta {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: #00c47a;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.service-visual img {
  width: 100%;
  height: 100%; 
  aspect-ratio: 16 / 9;     /* format moderne */
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  transition: transform .6s ease;
}

.service-visual img:hover {
  transform: scale(1.04);
}

/*partie detail services*/

.service-point {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.point-content strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.point-content p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}
/*fin partie detail services*/

/* style texte description service*/

/* Bloc description service */
.service-description {
  font-size: 1.20rem; /* légèrement plus grand */
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}

/* Optionnel : mise en valeur légère */
.service-description p {
  position: relative;
  padding-left: 1.2rem;

  margin: 0.25rem 0 0;
  

  text-align: justify;
  text-justify: inter-word;

  line-height: 1.65;
  
}

@media (max-width: 768px) {

  .service-description {
    padding: 0 1rem;           /* marges égales gauche/droite */
  }

  .service-description p {
    max-width: 100%;
    text-align: center; /* meilleur rendu mobile */
    max-height: 30em;
    overflow: hidden; 
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .service-visual {
    padding: 0 1rem;           /* même logique que le texte */
  }

  .service-visual img {
    border-radius: 12px;       /* plus doux sur mobile */
  }
}

/* Accent visuel discret */
.service-description p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 1.2em;
  background: #f9fafb; 
  border-radius: 2px;
}

.point-content p {
  text-align: justify;
}

/*fin style texte description service*/


/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-content: center;
  }
}
/*fin style service*/

/*essaie icon service*/
.service-icon {
  color: #00c47a;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 40px;
  height: 40px;
}
/*fin essaie icon service*/


/*check-list de services*/


.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.5;
}

.point-icon {
  color: #00c47a; /* vert éco */
  margin-top: 2px;
  flex-shrink: 0;
}

.icon-check {
  width: 18px;
  height: 18px;
}
/*fin check-list de services*/


/* navigation header*/
/* HEADER */
.header {
  background:#005f73;
  background:#005f73 !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  
}


.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 60px;
  
}

.site-name {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
}

/* MENU DESKTOP */
.menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}


.menu li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #94d2bd;
  transition: width .3s ease;
}

.menu li a:hover::after {
  width: 100%;
}

/* BURGER */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #005f73;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 24px 0;
    display: none;
  }

  .menu.open {
    display: flex;
    animation: slideDown .3s ease;
  }

  .menu-toggle {
    display: block;
  }
}

/* ANIMATION */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*fin navigation header*/


/* hero responsive*/
.hero {
  min-height: 100vh;
  background: linear-gradient(
    rgba(0,0,0,.5),
    rgba(0,0,0,.5)
  ), url('/images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px 60px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 900px;
  margin: auto;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 700px;
  margin: 20px auto;
}

.btn-hero-big {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 999px;
}
/*fin hero responsive*/


/*debut footer*/
.footer-cyver {
  background: linear-gradient(135deg, #005f73, #0a9396);
  color: #ffffff;
  padding: 20px 16px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-linkedin {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-linkedin:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.footer-linkedin i {
  font-size: 1.3rem;
}
/*fin footer*/

/* caroussel service et point description responsive */

@media (max-width: 600px) {

  /* Carousel services */
  .services-carousel {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;      /* centre les cartes */
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Carte service */
  .service-card {
    width: 100%;
    max-width: 340px;           /* largeur confortable mobile */
    margin: 0 auto;
    text-align: center;
  }

  /* Contenu des points */
  

  .point-content p {
    text-align: justify;        /* lecture confortable */
    text-align-last:left;    /* dernière ligne centrée */
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}

/* fin carousssel service et point content responsive*/

/*texte non bloqué en attente des polices*/
@font-face {
  font-family: "Inter";
  src: url("inter.woff2") format("woff2");
  font-display: swap;
}
/* fin texte non bloqué en attente des polices*/


.img.logo-img {
  max-width: 768px;
}