/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Variables couleurs */
:root {
  --main-blue: #003366;
  --accent-orange: #ffb300;
  --light-bg: #f8f9fa;
  --white: #fff;
  --grey: #f0f4f9;
  --dark: #1a1a1a;
  --shadow: 0 2px 8px rgba(0,0,0,0.04);
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--dark);
  background: var(--light-bg);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
}

/* NAVIGATION */
header {
  background: var(--main-blue);
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 100;
}
nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--white);
  z-index: 1202;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  z-index: 1202;
}
.hamburger span {
  width: 28px;
  height: 4px;
  background: var(--accent-orange);
  margin: 3px 0;
  border-radius: 3px;
  display: block;
  transition: 0.3s;
}
nav ul.menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
  position: relative;
  z-index: 1201;
  margin: 0;
  padding: 0;
}
nav ul.menu li { position: relative; }
nav a, .dropbtn {
  color: var(--white);
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  display: block;
  transition: color 0.2s;
}
nav a:hover,
nav .cta,
nav .dropbtn:hover {
  color: var(--accent-orange);
}
nav .cta {
  background: var(--accent-orange);
  color: var(--main-blue) !important;
  border-radius: 4px;
  font-weight: bold;
  margin-left: 1rem;
  transition: background 0.2s, color 0.2s;
  padding: 0.5rem 1rem;
  text-align: center;
}
nav .cta:hover {
  background: var(--white);
  color: var(--main-blue) !important;
  border: 1px solid var(--accent-orange);
}

/* DROPDOWN */
.dropdown-content {
  display: none;
  position: absolute;
  background: var(--white);
  min-width: 230px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.09);
  z-index: 1000;
  top: 2.5rem;
  left: 0;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  transition: opacity 0.2s;
}
.dropdown-content a {
  color: var(--main-blue);
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.dropdown-content a:hover,
.dropdown-content a:focus {
  background: var(--accent-orange);
  color: var(--main-blue);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown:hover > .dropdown-content,
  .dropdown:focus-within > .dropdown-content {
    display: block;
  }
}
@media (max-width:900px) {
  .hamburger { display: flex; }
  nav ul.menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    background: var(--main-blue);
    z-index: 1201;
    gap: 0;
    padding: 0 0 1rem 0;
  }
  nav ul.menu.open { display: flex; }
  nav ul.menu li { width: 100%; text-align:left; }
  nav ul.menu .cta {
    margin-left: 0;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .dropdown-content {
    box-shadow: none;
    border-radius: 0;
    position: static;
    min-width: unset;
    background: var(--white);
    width: 100%;
    display: none;
  }
  .dropdown.open > .dropdown-content { display: block; }
  .dropdown-content a { padding: 1rem 2rem; }
}

/* HERO */
.hero {
  position: relative;
  background: url('img/eagle.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 5rem 1rem 4rem 1rem;
  min-height: 330px;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 60, 0.55); /* superposition sombre */
  z-index: 2;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 2.3rem;
}
.btn-primary {
  display: inline-block;
  background: var(--accent-orange);
  color: var(--main-blue);
  font-weight: bold;
  padding: 0.8rem 2.2rem;
  border: none;
  border-radius: 4px;
  font-size: 1.13rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover {
  background: var(--white);
  color: var(--main-blue);
  border: 1px solid var(--accent-orange);
}

/* SECTION TITLES */
section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--main-blue);
  text-align: center;
  font-weight: 700;
}

/* SERVICES */
.services {
  background: var(--white);
  padding: 3rem 1rem;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
}
.service {
  background: var(--grey);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  flex: 1 1 250px;
  max-width: 300px;
  min-width: 220px;
  text-align: center;
  transition: box-shadow 0.18s;
}
.service h3 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.service a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color 0.2s;
}
.service a:hover {
  color: var(--main-blue);
}

/* ABOUT */
.about {
  padding: 3rem 1rem;
  background: var(--light-bg);
  max-width: 850px;
  margin: 0 auto;
  border-radius: 8px;
}
.about ul {
  list-style: disc inside;
  margin-top: 1rem;
  color: var(--main-blue);
  font-size: 1.13rem;
  padding-left: 1.5rem;
}

/* CHIFFRES CLÉS */
.stats-3000 {
  background: #e3edf7; /* bleu-gris pâle */
  padding: 3rem 1rem;
  margin: 0 auto 2rem auto;
  max-width: 1050px;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
}
.stats-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-box {
  flex: 1 1 180px;
  min-width: 160px;
  max-width: 220px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.03);
  padding: 2rem 1rem 1.7rem 1rem;
  margin: 0.6rem 0;
  text-align: center;
  transition: transform 0.25s;
  position: relative;
}
.stat-box:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(0,51,102,0.13);
}
.stat-icone {
  margin-bottom: 1rem;
  min-height: 48px;
}
.stat-nb {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--main-blue);
  margin-bottom: 0.13rem;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.stat-label {
  font-size: 1.02rem;
  color: #444;
  margin-top: 0.13rem;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .stats-row { gap: 1.5rem; }
  .stat-box { min-width: 140px; max-width: 100vw; }
}
@media (max-width: 600px) {
  .stats-row { flex-direction: column; gap: 1.2rem; }
  .stat-box { padding: 1.3rem 0.5rem 1rem 0.5rem; }
  .stat-nb { font-size: 1.7rem; }
}

/* EQUIPE NOUVELLE SECTION */
.equipe-section {
  background: #fff;
  max-width: 1050px;
  margin: 0 auto 2rem auto;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.03);
  padding: 0 1rem 3rem 1rem;
}
.equipe-intro {
  max-width: 800px;
  margin: 0 auto 2.2rem auto;
  font-size: 1.13rem;
  color: #222;
  text-align: center;
  padding-top: 2.2rem;
  padding-bottom: 0.5rem;
  line-height: 1.6;
}
.equipe {
  margin-top: 0;
}
.equipe-vignettes {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.vignette {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.2rem 1rem 1.2rem 1rem;
  min-width: 140px;
  max-width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vignette-photo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--grey);
  margin-bottom: 0.7rem;
  background-size: cover;
  background-position: center;
  display: block;
  border: 2.5px solid var(--accent-orange);
}
.vignette-denis { background-image: url('img/denis.jpg'); }
.vignette-franco { background-image: url('img/franco.jpg'); }
.vignette-kim { background-image: url('img/kim.jpg'); }
.vignette-micheal { background-image: url('img/micheal.jpg'); }
.vignette-nom {
  font-weight: bold;
  color: var(--main-blue);
  margin-bottom: 0.2rem;
  font-size: 1.08rem;
}
.vignette-role {
  font-size: 0.98rem;
  color: var(--accent-orange);
  font-weight: 500;
}
@media (max-width: 900px) {
  .equipe-vignettes {
    gap: 1rem;
  }
  .vignette {
    min-width: 120px;
    max-width: 160px;
    padding: 1rem 0.5rem;
  }
  .equipe-intro {
    font-size: 1rem;
    padding-top: 1.2rem;
  }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  section h2 { font-size: 1.4rem; }
  .service { padding: 1.2rem 0.6rem; }
  .hero { padding: 3rem 0.6rem 2rem 0.6rem; }
  .equipe-vignettes {
    flex-direction: column;
    align-items: center;
  }
  .vignette {
    width: 90vw;
    max-width: 99vw;
  }
  .equipe-intro {
    font-size: 0.98rem;
    padding-top: 0.9rem;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: var(--white);
  padding: 3rem 1rem;
}
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 1.5rem auto 0 auto;
}
.testimonial-client {
  background: none;
  border-left: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  font-style: normal;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-stars {
  margin-bottom: 0.4rem;
}
.testimonial-stars .star {
  color: var(--accent-orange);
  font-size: 1.25rem;
  margin-right: 2.5px;
  display: inline-block;
  vertical-align: middle;
}
.testimonial-nom {
  font-weight: bold;
  color: var(--main-blue);
  font-size: 1.09rem;
  margin-bottom: 0.2rem;
}
.testimonial-texte {
  font-size: 1.06rem;
  color: #222;
  margin-bottom: 0.1rem;
}

/* CONTACT */
.quote-form {
  background: var(--grey);
  padding: 3rem 1rem;
  text-align: center;
}
.quote-form form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.quote-form label {
  text-align: left;
  font-weight: 500;
  color: var(--main-blue);
}
.quote-form input,
.quote-form textarea {
  padding: 0.7rem;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 0.2rem;
}
.quote-form textarea { min-height: 100px; }
.quote-form button { align-self: flex-end; }
.quote-form a {
  color: var(--accent-orange);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}
.quote-form a:hover { color: var(--main-blue); }

/* FOOTER */
footer {
  background: var(--main-blue);
  color: var(--white);
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links a {
  color: var(--accent-orange);
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover {
  text-decoration: underline;
  color: var(--white);
}
.footer-email {
  color: var(--accent-orange) !important;
  font-weight: bold;
  font-size: 1.08em;
}
