:root {
  --blue: #0056a6;
  --blue-dark: #003b73;
  --yellow: #ffcc00;
  --bg-light: #f5f7fb;
  --text: #222;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Segoe UI', Roboto, Arial, sans-serif; background: var(--bg-light); color: var(--text); }

header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 30px 20px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.center {
  text-align: center;
  width: stretch; }
.topbar {
  max-width: 1100px;
  margin: 0 auto 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.topbar span { opacity: 0.9; }
.topbar strong { color: var(--yellow);
  font-size: 32px; }
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  font-weight: 500;
  font-size: 20px;
}
nav a:hover { color: var(--yellow); }

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.hero-text { 
  flex: 1 1 320px;
  margin: 20px;
 }
.hero-text h1 {
  font-size: 34px;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-text h1 span { color: var(--yellow); }
.hero-text p { font-size: 16px; margin: 8px 0; }
.hero-badges { margin-top: 15px; }
.badge {
  display: inline-block;
  background: rgba(0,0,0,0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  margin: 4px 4px 0 0;
}
.badge:hover {
   background: var(--yellow) }  
.hero-cta { margin-top: 20px; }
.btn-primary {
  background: var(--yellow);
  color: #000;
  padding: 12px 24px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
  min-width: 250px;
}
.btn-primary:hover { background: #ffdb4d; }
.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
  padding: 11px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.hero-visual {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  text-align: center;
  margin: 20px;
}
.hero-visual h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--blue-dark);
}
.hero-visual ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 14px;
}
.hero-visual li { margin: 6px 0; }
.hero-visual li::before {
  content: "✔";
  color: var(--yellow);
  margin-right: 6px;
}

.section {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}
.section h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--blue-dark);
}
.section-subtitle {
  text-align: center;
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 18px 16px;
  width: 260px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.card h3 {
  margin-top: 0;
  font-size: 18px;
  color: var(--blue-dark);
}
.card p { font-size: 14px; margin: 6px 0 0; }
/* Effet bounce sur hover */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: bounce 0.4s ease;
}

/* Animation bounce */
@keyframes bounce {
  0%   { transform: translateY(0) scale(1); }

  100% { transform: translateY(-8px) scale(1.03); }
}

.highlight {
  background: #fff;
  border-left: 4px solid var(--yellow);
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}
#services,#contact, #tarifs, #promo,#merci {
    background: #fff;
    border: #e3e3e3 1px solid;
    padding: 10px 30px 90px 30px;
}
#cardHolder{
  max-width: 1100px;
}
.double{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
}
.panelLeft, .panelRight{
  flex: 1 1 260px;
}
.tarifs-list li,
.zone-list li,
.contact-list li {
  margin: 6px 0;
  font-size: 14px;
}
#zone img{
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: flex-start;
  max-width: 1100px;
}
.contact-info { flex: 1 1 260px; }
.contact-form { flex: 1 1 260px; background: #fff; padding: 18px; border-radius: 10px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); }
.contact-form label { font-size: 13px; display: block; margin-bottom: 4px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 14px;
}
.contact-form button {
  border: none;
  cursor: pointer;
}

footer {
  background: var(--blue-dark);
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .topbar { flex-direction: column; gap: 8px; text-align: center; }
  nav { margin-top: 8px; }
  nav a { margin: 0 8px; }
  .hero { padding-bottom: 30px; }
}