/**
 * Conversion Booster CSS — Réservation Taxi Paris
 * Trust bar, mid-CTA strip, social proof nudge
 */

/* ── Trust Bar ── */
.trust-bar {
  padding: 2rem 0;
  background: #0d0d0f;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}

.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.trust-bar-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.trust-bar-label {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.78);
}

.trust-bar-label strong {
  display: block;
  color: #f5f5f5;
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

@media (max-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .trust-bar-item {
    padding: 0.75rem 0.5rem;
  }
  .trust-bar-label {
    font-size: 0.72rem;
  }
  .trust-bar-label strong {
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .trust-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .trust-bar-icon {
    font-size: 1.25rem;
  }
}

/* ── Mid-Content CTA Strip ── */
.mid-cta-strip {
  padding: 1.5rem 0;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, #111114 0%, #0d0d10 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.mid-cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: #f5f5f5;
  margin: 0;
}

.mid-cta-buttons {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.mid-cta-btn {
  font-size: 0.82rem !important;
  padding: 0.55rem 1rem !important;
  min-height: 40px !important;
  border-radius: 8px !important;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .mid-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
  }
  .mid-cta-text {
    font-size: 0.9rem;
  }
  .mid-cta-buttons {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }
  .mid-cta-btn {
    width: 100% !important;
    justify-content: center;
  }
}

/* ── Social Proof Nudge ── */
.social-proof-nudge {
  position: fixed;
  bottom: 90px;
  left: 1rem;
  z-index: 9998;
  max-width: 320px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.social-proof-nudge.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: #1a1a1e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.social-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: sp-pulse 2s ease-in-out infinite;
}

@keyframes sp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.social-proof-msg {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.35;
}

@media (max-width: 480px) {
  .social-proof-nudge {
    bottom: 80px;
    left: 0.5rem;
    right: 0.5rem;
    max-width: none;
  }
}
