.elementor-7654 .elementor-element.elementor-element-4d40a5c{--display:flex;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-513c130 *//* COULEURS CONFORMES À VOTRE DEMANDE */
.osp-estimation {
  --bleu-fonce: #1e3a8a;
  --rouge-fonce: #b91c1c;
  --noir: #000000;
  --blanc: #ffffff;
  --gris-clair: #f3f4f6;
  --gris-border: #d1d5db;
}

.osp-estimation * {
  box-sizing: border-box;
}

.osp-estimation {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--noir);
  line-height: 1.5;
  padding: 20px;
  background-color: var(--gris-clair);
  min-height: 100vh;
}

.osp-estimation .container {
  max-width: 1200px;
  margin: 0 auto;
}

.osp-estimation .header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0;
}

.osp-estimation .header h1 {
  color: var(--bleu-fonce);
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: bold;
}

.osp-estimation .header p {
  color: var(--noir);
  font-size: 18px;
}

.osp-estimation .content-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.osp-estimation .left-column,
.osp-estimation .right-column {
  flex: 1;
  min-width: 300px;
  background: var(--blanc);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.osp-estimation .section-title {
  font-size: 20px;
  color: var(--bleu-fonce);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bleu-fonce);
  font-weight: 600;
}

.osp-estimation .client-info-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gris-border);
}

.osp-estimation .radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.osp-estimation .radio-option {
  flex: 1;
}

.osp-estimation .radio-option input[type="radio"] {
  display: none;
}

.osp-estimation .radio-label {
  display: block;
  padding: 15px;
  border: 2px solid var(--gris-border);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.osp-estimation .radio-option input[type="radio"]:checked + .radio-label {
  border-color: var(--bleu-fonce);
  background-color: rgba(30, 58, 138, 0.05);
  color: var(--bleu-fonce);
  font-weight: 600;
}

.osp-estimation .input-field {
  margin-bottom: 15px;
}

.osp-estimation .input-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--noir);
  font-weight: 500;
}

.osp-estimation .form-input,
.osp-estimation .form-select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gris-border);
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
  background-color: var(--blanc);
}

.osp-estimation .form-input:focus,
.osp-estimation .form-select:focus {
  outline: none;
  border-color: var(--bleu-fonce);
}

.osp-estimation .form-input.required.error {
  border-color: var(--rouge-fonce) !important;
}

.osp-estimation .dimensions-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.osp-estimation .prestation-select-group {
  margin-bottom: 20px;
}

.osp-estimation .prestation-select-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--noir);
  font-weight: 500;
}

.osp-estimation .btn-add {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid var(--bleu-fonce);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  background-color: var(--bleu-fonce);
  color: var(--blanc);
  margin-bottom: 20px;
}

.osp-estimation .btn-add:hover {
  background-color: #1c3a7a;
  transform: translateY(-2px);
}

.osp-estimation .prestations-added {
  margin-top: 20px;
  margin-bottom: 30px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.osp-estimation .prestation-added-item {
  background-color: rgba(30, 58, 138, 0.05);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid var(--gris-border);
  border-left: 4px solid var(--bleu-fonce);
}

.osp-estimation .prestation-added-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.osp-estimation .prestation-added-name {
  font-weight: 600;
  color: var(--bleu-fonce);
  font-size: 16px;
  flex: 1;
}

.osp-estimation .prestation-remove {
  background: none;
  border: none;
  color: var(--rouge-fonce);
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 4px;
  transition: all 0.3s;
}

.osp-estimation .prestation-remove:hover {
  background-color: rgba(185, 28, 28, 0.1);
  transform: scale(1.1);
}

.osp-estimation .hourly-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px;
  background-color: rgba(185, 28, 28, 0.05);
  border-radius: 6px;
  border-left: 3px solid var(--rouge-fonce);
}

.osp-estimation .hourly-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--rouge-fonce);
}

.osp-estimation .prestation-added-item input[type="number"] {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--gris-border);
  border-radius: 4px;
  margin-top: 10px;
  font-size: 14px;
}

/* MODIFICATION : Styles pour les boutons côte à côte */
.osp-estimation .action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  width: 100%;
}

.osp-estimation .btn-estimate {
  flex: 1.5;
  width: auto;
  padding: 16px 20px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  background-color: var(--rouge-fonce);
  color: var(--blanc);
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.2);
  margin-top: 0;
}

.osp-estimation .btn-estimate:hover:not(:disabled) {
  background-color: #a01818;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(185, 28, 28, 0.3);
}

.osp-estimation .btn-estimate:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Style pour le bouton Réinitialiser */
.osp-estimation .btn-reset {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  background-color: #4b5563;
  color: var(--blanc);
  box-shadow: 0 4px 12px rgba(75, 85, 99, 0.2);
}

.osp-estimation .btn-reset:hover {
  background-color: #374151;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(75, 85, 99, 0.3);
}

.osp-estimation .summary-list {
  min-height: 200px;
}

.osp-estimation .summary-item {
  background-color: rgba(30, 58, 138, 0.05);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 4px solid var(--bleu-fonce);
}

.osp-estimation .summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.osp-estimation .summary-title {
  font-weight: 600;
  color: var(--bleu-fonce);
  font-size: 16px;
  flex: 1;
}

.osp-estimation .summary-price {
  font-weight: 700;
  color: var(--rouge-fonce);
  font-size: 16px;
}

.osp-estimation .summary-details {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
  padding-left: 10px;
  border-left: 2px solid var(--gris-border);
}

.osp-estimation .total-section {
  margin-top: 25px;
  padding: 20px;
  background-color: rgba(30, 58, 138, 0.05);
  border-radius: 8px;
  border: 2px solid var(--bleu-fonce);
}

.osp-estimation .total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--noir);
  font-weight: 700;
}

.osp-estimation .note {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(185, 28, 28, 0.05);
  border-left: 4px solid var(--rouge-fonce);
  border-radius: 4px;
  font-size: 14px;
  color: var(--noir);
}

.osp-estimation .empty-summary {
  text-align: center;
  padding: 50px 20px;
  color: #9ca3af;
  font-style: italic;
  background-color: var(--gris-clair);
  border-radius: 6px;
  border: 2px dashed var(--gris-border);
}

.osp-estimation .contact-section {
  margin-top: 30px;
  text-align: center;
}

.osp-estimation .btn-contact {
  display: inline-block;
  padding: 12px 25px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
}

.osp-estimation .btn-contact:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.osp-estimation .loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.osp-estimation .spinner {
  border: 3px solid rgba(30, 58, 138, 0.1);
  border-top: 3px solid var(--bleu-fonce);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: ospSpin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes ospSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Styles pour l'affichage de l'intervalle */
.osp-estimation .total-interval {
  text-align: center;
  width: 100%;
}

.osp-estimation .total-base {
  font-size: 16px;
  color: var(--noir);
  margin-bottom: 5px;
  opacity: 0.8;
}

.osp-estimation .total-hours {
  font-size: 16px;
  color: var(--noir);
  margin-bottom: 15px;
  opacity: 0.8;
}

.osp-estimation .total-range {
  font-size: 24px;
  color: var(--bleu-fonce);
  font-weight: bold;
  border-top: 2px solid var(--gris-border);
  padding-top: 15px;
  margin-top: 10px;
}

/* Nouveau : Styles pour les champs professionnels */
.osp-estimation .field-professionnel {
  display: none;
}

.osp-estimation .field-professionnel.visible {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .osp-estimation .content-wrapper {
    flex-direction: column;
  }
  
  .osp-estimation .radio-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .osp-estimation .dimensions-group {
    grid-template-columns: 1fr;
  }
  
  .osp-estimation .left-column,
  .osp-estimation .right-column {
    padding: 20px;
  }
  
  .osp-estimation .action-buttons {
    flex-direction: column;
  }
  
  .osp-estimation .btn-estimate,
  .osp-estimation .btn-reset {
    width: 100%;
  }
  
  .osp-estimation .total-range {
    font-size: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-4d40a5c *//* Réduire l’espace entre le menu et le contenu */
.page .site-content,
.page-content,
.entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}/* End custom CSS */