/* =========================================================
   RESET / GLOBAL
========================================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f5f5f5;
  color:#333;
  line-height:1.6;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 34px;
  border:2px solid #1f2937;
  background:transparent;
  color:#1f2937;
  font-weight:600;
  letter-spacing:1px;
  transition:0.3s ease;
  cursor:pointer;
}

.btn:hover{
  background:#1f2937;
  color:white;
}

.submit-btn{
  background:#84b347;
  border-color:#84b347;
  color:white;
}

.submit-btn:hover{
  background:#6f993b;
  border-color:#6f993b;
  color:white;
}

/* =========================================================
   HEADER
========================================================= */

header{
  background:#ffffff;
  padding:18px 0;
  border-bottom:1px solid #e5e5e5;
}

.header-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.logo{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.logo img{
  width:180px;
}

.tagline{
  font-size:28px;
  color:#8f8f8f;
  font-weight:600;
  letter-spacing:0.3px;
}

.header-actions{
  display:flex;
  align-items:center;
}

/* =========================================================
   HERO
========================================================= */

.hero{
  background:linear-gradient(180deg,#b8b1af,#c5bdbb);
  padding:70px 20px 90px;
  text-align:center;
}

.hero h1{
  color:white;
  font-size:20px;
  letter-spacing:4px;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:15px;
}

.hero h2{
  color:#f28d2e;
  font-size:22px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:700;
}

/* =========================================================
   SERVICES
========================================================= */

.services{
  margin-top:-60px;
  position:relative;
  z-index:10;
  margin-bottom:80px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.card{
  padding:45px 30px;
  border-radius:8px;
  color:white;
  text-align:center;
  min-height:320px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.card h3{
  font-size:30px;
  margin-bottom:25px;
  font-weight:600;
}

.card ul{
  list-style:none;
}

.card li{
  margin-bottom:12px;
  font-size:17px;
  opacity:0.95;
}

.blue{
  background:#4d74f0;
}

.green{
  background:#9acd50;
}

.orange{
  background:#d97706;
}

.purple{
  background:#6b21a8;
}

/* =========================================================
   SERVICE ICONS
========================================================= */

.service-icon{
  margin-bottom:25px;
}

.service-icon i{
  font-size:64px;
  color:white;
  opacity:0.95;
  transition:0.3s ease;
}

.card:hover .service-icon i{
  transform:translateY(-4px) scale(1.05);
  opacity:1;
}

/* =========================================================
   INTRO
========================================================= */

.intro{
  background:linear-gradient(90deg,#0c2c42,#566772);
  color:white;
  text-align:center;
  padding:90px 20px;
}

.intro p{
  max-width:1000px;
  margin:auto;
  font-size:38px;
  font-weight:300;
  line-height:1.4;
}

/* =========================================================
   SECTION TITLES
========================================================= */

.section-title{
  text-align:center;
  font-size:42px;
  margin-bottom:50px;
  color:#222;
  font-weight:700;
}

/* =========================================================
   EXPERTISE
========================================================= */

.expertise{
  background:white;
  padding:70px 0;
}

.expertise-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.expertise-card{
  color:white;
  padding:40px 30px;
  border-radius:8px;
  min-height:360px;
  text-align:center;
}

.expertise-card h4{
  font-size:28px;
  margin-bottom:25px;
  line-height:1.3;
}

.expertise-card p{
  font-size:17px;
  line-height:1.8;
}

/* =========================================================
   CTA
========================================================= */

.cta-image{
  height:260px;
  background:
  url('images/Fotolia_63012898_XL_opt_1920x6522-1-1024x348.jpg')
  center center / cover no-repeat;
}

.cta{
  background:#efefef;
  padding:70px 20px;
  text-align:center;
}

.cta h2{
  font-size:48px;
  line-height:1.2;
  margin-bottom:35px;
  color:#333;
}

/* =========================================================
   STATS
========================================================= */

.stats-section{
  background:linear-gradient(90deg,#0d2f45,#6d7b85);
  padding:90px 0 160px;
  color:white;
}

.stats-section h2{
  font-size:54px;
  margin-bottom:30px;
}

.stats-section p{
  max-width:700px;
  font-size:20px;
  line-height:1.9;
}

.stats-box{
  background:white;
  border-radius:10px;
  margin-top:-80px;
  position:relative;
  z-index:5;
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  text-align:center;
}

.stat{
  padding:50px 20px;
  border-right:1px solid #eee;
}

.stat:last-child{
  border-right:none;
}

.stat h3{
  color:#7bb341;
  font-size:56px;
  margin-bottom:10px;
}

.stat p{
  font-size:20px;
  color:#444;
}

/* =========================================================
   CLIENTS
========================================================= */

.clients{
  background:white;
  padding:70px 0;
}

.logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:70px;
  flex-wrap:wrap;
}

.logos span{
  font-size:34px;
  font-weight:700;
  color:#222;
}

/* =========================================================
   LOGO CAROUSEL
========================================================= */

.logo-carousel{
  overflow:hidden;
  width:100%;
  background:white;
  padding:40px 0;
  position:relative;
}

.logo-track{
  display:flex;
  align-items:center;
  width:fit-content;
  animation:scrollLogos 80s linear infinite;
}

.logo-slide{
  min-width:220px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:0 40px;
}

.logo-slide img{
  max-width:160px;
  max-height:70px;
  object-fit:contain;
  opacity:1;
  transition:0.3s;
}

.logo-slide img:hover{
  transform:scale(1.05);
}

@keyframes scrollLogos{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* =========================================================
   CAREER
========================================================= */

.career{
  padding:90px 0;
  background:#fafafa;
}

.career-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.career h2{
  font-size:56px;
  margin-bottom:30px;
  color:#222;
}

.career p{
  font-size:20px;
  line-height:1.9;
  color:#555;
}

.jobs-image{
  height:420px;
  border-radius:12px;
  background:
  url('images/20230829_130900-1-1-scaled-e1734622127799.jpg')
  center center / cover no-repeat;
}

/* =========================================================
   VALUES
========================================================= */

.values{
  margin-top:80px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  text-align:center;
}

.value{
  padding:20px;
}

.icon{
  font-size:52px;
  color:#7f8c8d;
  margin-bottom:25px;
  transition:0.3s ease;
}

.value:hover .icon{
  color:#84b347;
  transform:translateY(-3px);
}

.value h4{
  margin-top:20px;
  color:#84b347;
  font-size:22px;
  text-transform:uppercase;
  line-height:1.5;
  font-weight:500;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section{
  padding:100px 0;
  background:#f8f8f8;
}

.contact-wrapper{
  max-width:800px;
  margin:auto;
  background:white;
  padding:50px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.contact-title{
  font-size:42px;
  margin-bottom:15px;
  color:#1f2937;
  font-weight:700;
}

.contact-subtitle{
  color:#777;
  margin-bottom:40px;
  font-size:18px;
}

.form-group{
  margin-bottom:25px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

label{
  display:block;
  margin-bottom:8px;
  font-weight:500;
  color:#444;
}

input,
textarea{
  width:100%;
  padding:15px;
  border:1px solid #d9d9d9;
  border-radius:8px;
  font-size:16px;
  font-family:'Poppins',sans-serif;
  transition:0.3s;
  background:white;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:#84b347;
  box-shadow:0 0 0 3px rgba(132,179,71,0.15);
}

textarea{
  min-height:180px;
  resize:vertical;
}

.hidden-field{
  display:none;
}

/* =========================================================
   RGPD
========================================================= */

.rgpd-group{
  margin:25px 0 35px;
}

.rgpd-label{
  display:flex;
  align-items:flex-start;
  gap:12px;
  cursor:pointer;
  color:#666;
  font-size:14px;
  line-height:1.7;
}

.rgpd-label input[type="checkbox"]{
  width:18px;
  height:18px;
  margin-top:3px;
  flex-shrink:0;
  accent-color:#84b347;
}

/* =========================================================
   LEGAL NOTICE
========================================================= */

.legal-notice{
  padding:100px 0;
  background:#f8f8f8;
}

.legal-notice .container{
  max-width:1000px;
}

.legal-notice h1{
  font-size:48px;
  color:#1f2937;
  margin-bottom:60px;
  font-weight:700;
}

.legal-block{
  margin-bottom:50px;
  padding-bottom:40px;
  border-bottom:1px solid #dddddd;
}

.legal-block:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.legal-block h2{
  font-size:28px;
  color:#84b347;
  margin-bottom:20px;
  font-weight:600;
}

.legal-block p{
  font-size:18px;
  line-height:1.9;
  color:#555;
  margin-bottom:18px;
}

.legal-list{
  list-style:none;
  margin:20px 0;
}

.legal-list li{
  position:relative;
  padding-left:22px;
  margin-bottom:14px;
  font-size:18px;
  line-height:1.8;
  color:#555;
}

.legal-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#84b347;
  font-size:20px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer-image{
  height:280px;
  background:
  url('images/cqqs.png')
  center center / cover no-repeat;
}

footer{
  background:white;
  padding:30px 0;
  border-top:1px solid #e5e5e5;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.footer-left{
  display:flex;
  align-items:center;
  gap:20px;
}

.footer-left img{
  width:70px;
}

.footer-links{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#555;
  font-weight:500;
}

.copyright{
  color:#888;
  font-size:14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

  .header-content{
    flex-direction:column;
    justify-content:center;
    text-align:center;
  }

  .logo{
    justify-content:center;
  }

  .service-grid,
  .expertise-grid,
  .values,
  .career-grid,
  .stats-grid{
    grid-template-columns:1fr;
  }

  .tagline{
    font-size:22px;
  }

  .hero h1,
  .hero h2{
    font-size:18px;
  }

  .intro p{
    font-size:24px;
  }

  .section-title,
  .cta h2,
  .career h2,
  .stats-section h2{
    font-size:36px;
  }

}

@media(max-width:768px){

  .contact-section{
    padding:70px 20px;
  }

  .contact-wrapper{
    padding:35px 25px;
  }

  .contact-title{
    font-size:34px;
  }

  .form-row{
    grid-template-columns:1fr;
  }

}

@media(max-width:576px){

  .logo{
    flex-direction:column;
    gap:10px;
  }

  .logo img{
    width:150px;
  }

  .tagline{
    font-size:18px;
    line-height:1.4;
  }

  .header-actions{
    width:100%;
    justify-content:center;
  }

  .btn{
    width:100%;
    max-width:280px;
  }

}