

/*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: 48px;
}

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

  .service-image {
    order: -1; /* image au-dessus sur mobile */
  }
}
.service-text ul {
  list-style: none;
  padding: 0;
}

.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%;
  aspect-ratio: 16 / 9;     /* format moderne */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  transition: transform .6s ease;
}

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



/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: 1fr;
    text-align: 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 {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.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: linear-gradient(
    135deg,
    white 0%,
    white 35%,
    #005f73 100%
  );
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  backdrop-filter: blur(6px);
}


.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*/
