.contact-text {
    line-height: 1.6;
}

/* Colonne image */
.contact-img-container {
    width: 100%;
    height: 100%;
}

.contact-img-container img {
    width: 100%;
    display: block;
}

strong {
    font-weight: bold ;
}

.contact-highlight {
    font-size: 1.25rem;
    display: block;
    margin-top: 1rem;
    color: #052557;
}

/* Onglets */
.tabs {
  display: flex;
}

.tab-link {
  flex: 1;
  padding: 12px;
  cursor: pointer;
  background: #eee;
  border: none;
  outline: none;
  font-weight: bold;
  transition: 0.3s;
}

.tab-link.active {
  background: #052557;
  color: #fff;
}

.tab-content {
  display: none;
  padding: 20px;
  background: #052557;
}

.tab-content.active {
  display: block;
}

/* Formulaires */
#formulaires form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#formulaires input,
#formulaires textarea,
#formulaires select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}


.tabs-radio input[type="radio"]:checked + label {
    background-color: #052557 !important;
    color: #fff !important;
}

.btn-light {
  background-color: #e9e9e9;
}

.btn-light:hover {
  background-color: #0056b3 !important;
  color: white !important;
}

.date-card, .time-card {
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: normal;
  text-align: center;
  font-size: 1rem;
  margin: 4px;
}

.date-card {
  height: 90px;
}

.time-card {
  height: 50px;
}

.date-card.selected, .time-card.selected {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

.date-slot, .time-slot {
  width: 75%;
}

@media (max-width: 1200px) {
  .date-slot, .time-slot {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .date-slot, .time-slot {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .date-slot, .time-slot {
    width: 100%;
  }
}

.btn-secondary {
  min-width: unset !important;
}

.fade-out {
  opacity: 0.3;
  transition: opacity 0.2s;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.25s;
}