/* ========================================================================
   Henri Renov — Styles SEA (optimisation conversion)
   Ajouté le 2026-04-22
   ======================================================================== */

/* --- Bandeau de réassurance sous le menu --- */
.trust-bar {
  background: #c8102e;
  color: #fff;
  padding: 10px 15px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  position: relative;
  z-index: 10;
}
.trust-bar .trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  text-align: center;
}
.trust-bar .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.trust-bar .trust-item::before {
  content: "✓";
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #fff;
  color: #c8102e;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust-bar { font-size: 0.82rem; padding: 8px; }
  .trust-bar .trust-inner { gap: 6px 14px; }
}

/* --- Hero CTA renforcé --- */
.hero-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.hero-cta-wrapper .btn-call,
.hero-cta-wrapper .btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  font-family: 'Inter', sans-serif;
}
.hero-cta-wrapper .btn-call {
  background: #c8102e;
  color: #fff !important;
}
.hero-cta-wrapper .btn-quote {
  background: #1a1a1a;
  color: #fff !important;
}
.hero-cta-wrapper .btn-call:hover,
.hero-cta-wrapper .btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  text-decoration: none;
}
.hero-cta-wrapper .btn-call::before { content: "📞"; font-size: 1.2rem; }
.hero-cta-wrapper .btn-quote::before { content: "✉"; font-size: 1.2rem; }

/* --- Formulaire de contact --- */
.henri-form-section {
  background: #f7f4ef;
  padding: 60px 20px;
}
.henri-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  font-family: 'Inter', sans-serif;
}
.henri-form-wrap h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.8rem;
  color: #1a1a1a;
  font-weight: 700;
}
.henri-form-wrap .form-subtitle {
  color: #555;
  margin-bottom: 28px;
  font-size: 1rem;
}
.henri-form-wrap .form-row { margin-bottom: 16px; }
.henri-form-wrap label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 0.92rem;
}
.henri-form-wrap input,
.henri-form-wrap select,
.henri-form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .15s ease;
  box-sizing: border-box;
}
.henri-form-wrap input:focus,
.henri-form-wrap select:focus,
.henri-form-wrap textarea:focus {
  outline: none;
  border-color: #c8102e;
}
.henri-form-wrap textarea { min-height: 100px; resize: vertical; }
.henri-form-wrap .form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) {
  .henri-form-wrap { padding: 28px 20px; }
  .henri-form-wrap .form-row-split { grid-template-columns: 1fr; }
}
.henri-form-wrap .submit-btn {
  width: 100%;
  background: #c8102e;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 8px;
  transition: background .15s ease;
  font-family: inherit;
}
.henri-form-wrap .submit-btn:hover { background: #a30d26; }
.henri-form-wrap .form-legal {
  font-size: 0.82rem;
  color: #888;
  margin-top: 14px;
  text-align: center;
}
.henri-form-wrap .hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* --- Sticky mobile CTA (bottom bar) --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -4px 12px rgba(0,0,0,.08);
  padding: 8px;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}
.mobile-sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  color: #fff !important;
}
.mobile-sticky-cta .cta-call { background: #c8102e; }
.mobile-sticky-cta .cta-quote { background: #1a1a1a; }
@media (max-width: 900px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
}

/* --- Section merci --- */
.thankyou-section {
  text-align: center;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  min-height: 60vh;
}
.thankyou-section .check-circle {
  width: 80px;
  height: 80px;
  background: #2ecc71;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
}
.thankyou-section h1 {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.thankyou-section p {
  font-size: 1.1rem;
  color: #555;
  max-width: 620px;
  margin: 0 auto 24px;
}
