@charset "UTF-8";
/* CSS Document */

:root {
  --primary: #22d3ee; /* Cyan */
  --primary-light: #a5f3fc;
  --secondary: #0c4a6e; /* Bleu océan foncé */
  --text-dark: #0f172a;
  --text-muted: #475569;
  --bg-main: #f0f9ff;
  --white: #ffffff;
  /* Pour l'effet Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.8;
}

/* --- Header & Top Bar --- */
header {
  background-color: var(--white);
  padding: 15px 20px;
  border-bottom: 1px solid #e0f2fe;
}

.top-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
}

.top-bar-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-contact a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* --- Hero Section (L'image large) --- */
.hero {
  position: relative;
  width: 100%;
  height: 60vh; /* Hauteur relative à l'écran */
  min-height: 400px;
  overflow: hidden;
  background-color: var(--secondary);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Remplit l'espace sans déformer */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 74, 110, 0.4) 0%, rgba(12, 74, 110, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 600px;
  opacity: 0.9;
}

/* --- Main Content (Le "Verre") --- */
.main-container {
  max-width: 1100px;
  margin: -100px auto 60px; /* Chevauchement sur la hero */
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px); /* L'effet de flou */
  -webkit-backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* --- Structure Grid pour le contenu --- */
.content-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.content-block h3 {
  color: var(--secondary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.content-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-block li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.content-block li::before {
  content: "\f00c"; /* Icône Check FontAwesome */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* --- Services & Badges --- */
.services-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-box {
  background-color: var(--secondary);
  color: var(--white);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.badges-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
}

.badge-item {
  background-color: var(--primary-light);
  color: var(--secondary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- Footer --- */
footer {
  background-color: var(--secondary);
  color: var(--primary-light);
  text-align: center;
  padding: 40px 20px;
}

footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
}

/* --- Responsive Adaptations --- */
@media (max-width: 768px) {
  .hero-overlay h1 { font-size: 2.2rem; }
  .top-bar { justify-content: center; text-align: center; }
  .glass-card { padding: 30px; }
  .main-container { margin-top: -50px; }
}