/* =========================
   RESET DE BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #333;
}

/* =========================
   HEADER & NAVIGATION
========================= */
header {
  background: black;
  color: #fff;
  padding: 0% 2% 0% 2%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  width: 5vw;
  height: auto;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header ul {
  list-style: none;
  display: flex;
  gap: 2.5vw;
}

header ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

header ul li a:hover {
  color: #f37021;
}

/* =========================
   SECTIONS GÉNÉRALES
========================= */
section:not(.hero) {
  padding: 10vh 2vw;

  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 10vh;
  font-size: 2rem;
  color: #000;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3)),
    url("images/hero.jpg") center/cover no-repeat;
  color: #fff;
  padding: 12vh 2vw;
  height: 75vh;
}

.hero h1 {
  font-size: 3em;
  margin-left: 13%;
  width: 70%;
  margin-top: -2%;
  margin-bottom: 6%;
}

.btn {
  background: #f37021;
  color: #fff;
  padding: 1.5% 3%;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  margin-left: 38%;
  font-size: 1.3rem;
}

.btn:hover {
  background: #d95c12;
}

/* =========================
   SERVICES
========================= */
#services {
  max-width: 75vw;
}
.services-container {
  display: flex;
  justify-content: space-around;
  gap: 7.5%;
  flex-wrap: wrap;
}

#services article {
  flex: 1 1 15%;
  background: #f4f4f4;
  padding: 3%;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s;
}

#services article:hover {
  transform: translateY(-3%);
}

#services h3 {
  margin-bottom: 7%;
  color: #f37021;
}

/* =========================
   EXPERTISES 2
========================= */

#expertises {
  background-color: #f5f1ed;
}

.features-list {
  width: 25%;
  margin-left: 5%;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 5%;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.checkmark {
  width: 13%;
  height: 100%;
  background-color: #f39c12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10%;
  flex-shrink: 0;
}

.checkmark::after {
  content: "✓";
  color: white;
  font-weight: bold;
  font-size: 0.8em;
}

.feature-text {
  font-style: italic;
}

#all-items {
  display: flex;
}

#expertise-image {
  margin-left: 5%;

  display: flex;

  gap: 5%;
}

#expertise-image img {
  width: 20vw;
}

/* Grille des fonctionnalités */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5%;
  align-items: start;

  /* border: 2px solid blue; */
}

/* Item de fonctionnalité */
.why-feature-item {
  background: white;
  border-radius: 15px;
  padding: 3%;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 3%;
}

.why-feature-item:hover {
  transform: translateY(-2%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Container d'icône */
.icon-container {
  width: 4em;
  height: 4em;
  background: linear-gradient(135deg, #ff7b25, #e55a00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1em;
  box-shadow: 0 2em 6em rgba(255, 123, 37, 0.3);
}

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

/* Titre de fonctionnalité */
.feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 1em;
  line-height: 1.3;
}

/* Description */
.feature-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1em;
  padding: 0 1em;
}

/* =========================
   PARTENAIRES
========================= */

#partenaires img {
  display: block;
  margin: 0 auto;
  width: 95vw;
}

.banner {
  width: 100%;
  margin: 0 auto;
}

/* Première section rouge */
.availability {
  background-color: #e53e3e;
  color: white;
  padding: 0.1em 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
}

#clockIcon {
  font-size: 2em;
  color: white;
  margin-right: 1em;
}

/* Deuxième section orange */
.contact-info {
  background-color: #ed8936;
  color: white;
  padding: 0.6em;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 1.7em;
  font-weight: bold;
}

.contact-text {
  flex: 1;
}

.phone-numbers {
  display: flex;
  align-items: center;
  gap: 1em;
}

#phoneIcon {
  font-size: 2em;
  color: white;
  margin-right: 0.5em;
}

.number {
  display: flex;
  gap: 1em;
}
.numbers {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

/* Troisième section grise */
.company-info {
  background-color: #f5f1ed;
  color: #2d3748;
  padding: 2.2em;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.left-info {
  display: flex;
  flex-direction: column;
  gap: 2.2em;
}

.address,
.email,
.social {
  display: flex;
  align-items: center;
  font-size: 1.5em;
  font-weight: 600;
}

.contact-icon {
  margin-right: 0.8em;
  font-size: 1.5em;
}

.right-info {
  display: flex;
  flex-direction: column;
  gap: 2.2em;
}

/* =========================
   CONTACT
========================= */
#contact form {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 70%;
  margin: 0 auto;
}

#contact input,
#contact textarea {
  padding: 1em;
  border: 0.1em solid #ddd;
  border-radius: 0.6em;
  font-size: 1em;
}

#contact textarea {
  height: 20vh;

  resize: none;
}

#contact button {
  background: #f37021;
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 0.6em;
  font-weight: bold;
  cursor: pointer;
}

#contact button:hover {
  background: #d95c12;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2%;
  margin-top: 4%;
}

footer a {
  color: #f37021;
  text-decoration: none;
}
