/* ============================================================
   Trustdem OVERRIDES
   Loaded LAST to override style.css and responsive.css
   ============================================================ */

/* ── Fix: Reserver nav button — remove !important so Bootstrap d-none works ── */
.td-nav-cta {
  display: inline-block;
  background: #d9680f !important;
  color: #fff !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  padding: 9px 18px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  vertical-align: middle !important;
}
.td-nav-cta:hover {
  background: #81008f !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 15px rgba(129,0,143,0.3) !important;
  text-decoration: none !important;
}
@media (max-width: 991px) {
  .td-nav-cta {
    display: none !important;
  }
}

/* ── indForm — white frosted glass (desktop overlay) ── */
.indForm {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.indForm form::before {
  color: #232323;
}
.indForm form::after {
  color: rgba(0, 0, 0, 0.5);
}
.indForm input[type="text"],
.indForm input[type="tel"],
.indForm input[type="mail"],
.indForm input[type="email"],
.indForm input[type="date"] {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #232323;
}
.indForm input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.indForm input:focus {
  border-color: #d9680f;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(217, 104, 15, 0.2);
}
.indForm input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none;
  cursor: pointer;
}

/* ── indForm2 — white frosted glass (mobile form) ── */
.indForm2 {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.indForm2 input[type="text"],
.indForm2 input[type="tel"],
.indForm2 input[type="mail"],
.indForm2 input[type="email"],
.indForm2 input[type="date"] {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #232323;
}
.indForm2 input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.indForm2 input:focus {
  border-color: #d9680f;
  background: rgba(255, 255, 255, 0.85);
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 104, 15, 0.18);
}
.indForm2 input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none;
  cursor: pointer;
}

/* ── Formules : 4 CTA buttons grid ── */
.btn.btn-very-small {
  font-size: 11px;
  padding: 7px 14px;
  letter-spacing: 0.3px;
  line-height: 1.3;
  white-space: nowrap;
}
.td-formule-ctas {
  gap: 8px !important;
}
.td-formule-ctas .btn {
  flex: 1 1 calc(50% - 8px);
  min-width: 140px;
  text-align: center;
}
@media (max-width: 575px) {
  .td-formule-ctas .btn {
    flex: 1 1 100%;
  }
}
