/* =================================================================
   INSURANCE PAGES - Corporate Trust Design
   Navy #0F172A | Gold #46BD42
   ================================================================= */

/* Confirmation Page */
.confirmation-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  padding: 4rem 0;
}

.confirmation-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.confirmation-icon {
  width: 4rem;
  height: 4rem;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.confirmation-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.confirmation-card h1 {
  color: #0F172A;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.confirmation-card p {
  color: #475569;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.devis-number {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0F172A;
  margin: 1.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #0F172A;
  color: #ffffff;
  border: 2px solid #0F172A;
}

.btn-primary:hover {
  background: #1E293B;
  border-color: #1E293B;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70, 189, 66, 0.25);
}

.btn-secondary {
  background: transparent;
  color: #475569;
  border: 2px solid #cbd5e1;
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0F172A;
  text-decoration: none;
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .confirmation-page {
    padding: 1rem;
  }

  .confirmation-card {
    padding: 2rem 1.5rem;
  }

  .confirmation-card h1 {
    font-size: 1.75rem;
  }
}
