/* -------------------------
   BACKGROUND PARALLAX
--------------------------*/
body {
  font-family: Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #e6e6e6;

  /* Utilise la version optimisée WebP */
  background-image: url('../images/background/backgroundserv.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  backdrop-filter: brightness(0.90);
  min-height: 100vh;
  position: relative;
}

/* Overlay bleu fumé léger */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: rgba(20, 35, 60, 0.40);
  backdrop-filter: brightness(0.90);
  z-index: -1;
}

/* -------------------------
   CONTENU PRINCIPAL
--------------------------*/
.page-container {
  max-width: 900px;
  margin: 120px auto 60px; /* espace pour navbar */
  padding: 35px 30px;

  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(7px);
  border-radius: 14px;

  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 30px rgba(0,0,0,0.55);
}

h1, h2, h3 {
  color: #fff;
  font-weight: 700;
}

hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin: 25px 0;
}

/* Liens dans le contenu */
.page-container a {
  color: #9dd4ff;
  text-decoration: underline;
}

/* -------------------------
   NAVBAR (adaptation page services)
--------------------------*/
.navbar a {
  color: #fff !important;
  text-decoration: none !important;
}

.navbar a:hover {
  color:#fff !important;
}

/* -------------------------
   BOUTON CTA
--------------------------*/
.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;

  background: rgba(255,255,255,0.10);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 600;

  transition: 0.25s;
}

.cta:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.45);
}

/* -------------------------
   TABLEAUX DE TARIFS
--------------------------*/
.service-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
}

.service-table th,
.service-table td {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px;
  text-align: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
}

.service-table th {
  background: rgba(255,255,255,0.15);
  font-weight: 700;
}

/* Un peu de marge au-dessus des sous-titres */
.page-container h3,
.page-container h4 {
  margin-top: 30px;
}

  .service-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
  }

  .service-table th, .service-table td {
    border: 1px solid rgba(255,255,255,0.25);
    padding: 12px;
    text-align: center;
    background: rgba(0,0,0,0.25);
    color: #fff;
  }

  .service-table th {
    background: rgba(255,255,255,0.15);
    font-weight: 700;
  }

  .service-section h3, .service-section h4 {
    margin-top: 30px;
  }
