/*
Theme Name: Desneux et Fils
Theme URI: https://desneux-et-fils.fr
Description: Thème personnalisé pour Desneux et Fils - Démolition & Terrassement
Author: Desneux et Fils
Version: 1.0
License: Proprietary
*/

/* Page Hero pour pages internes */
.page-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #fff;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.page-hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0;
}

.page-hero .hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Content */
.page-content {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.content-container h2 {
  font-family: "Sora", sans-serif;
  color: #1e293b;
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-container h3 {
  font-family: "Sora", sans-serif;
  color: #334155;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-container p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-container ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-container li {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.content-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
}

/* Contact Form 7 Styling */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
}

.wpcf7-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1e293b;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #f97316;
}

.wpcf7-form input[type="submit"] {
  background: #f97316;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.wpcf7-form input[type="submit"]:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

/* Responsive pour pages */
@media (max-width: 768px) {
  .page-hero {
    padding: 5rem 1.5rem 3rem;
  }

  .content-container {
    padding: 2rem 1.5rem;
  }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  font-size: 0.9rem;
  color: #64748b;
}

.breadcrumb a {
  color: #f97316;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== PAGE INTRO (style site d'origine) ===== */
.page-intro {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.page-intro h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.page-intro p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Service Highlights (badges) */
.service-highlights {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.highlight {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight .icon-inline {
  width: 20px;
  height: 20px;
}

.highlight .icon-inline svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #f97316;
  stroke-width: 2;
}

/* ===== PAGE CONTENT SERVICE ===== */
.page-content-service {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.content-container-service {
  max-width: 1200px;
  margin: 0 auto;
}

/* Services List Section */
.services-list {
  margin-bottom: 4rem;
}

.services-list h3 {
  font-family: "Sora", sans-serif;
  color: #1e293b;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Services Cards Grid */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
  border-left: 4px solid #f97316;
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card .service-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.service-card h4 {
  font-family: "Sora", sans-serif;
  color: #1e293b;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-card ul.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.service-card ul.service-features li {
  position: relative;
  padding-left: 1.5rem;
  color: #475569;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.service-card ul.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
}

/* ===== GALLERY SECTION ===== */
.realisations-section,
.gallery-section-page {
  margin: 4rem 0;
}

.realisations-section h2,
.gallery-section-page h2 {
  font-family: "Sora", sans-serif;
  color: #1e293b;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.gallery-grid figure:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-grid figcaption {
  background: #fff;
  padding: 1rem;
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
}

/* ===== TIMELINE (À propos) ===== */
.timeline {
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #f97316, #1e293b);
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-date {
  flex: 0 0 150px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #f97316;
  text-align: center;
  padding: 1rem;
}

.timeline-content {
  flex: 1;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin: 0 2rem;
}

.timeline-content h4 {
  font-family: "Sora", sans-serif;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== PROCESS SECTION (pages service) ===== */
.process-section {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  margin: 3rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.process-section h3 {
  font-family: "Sora", sans-serif;
  color: #1e293b;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 60px !important;
  height: 60px !important;
  background: #ea580c !important;
  background-image: none !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: "Sora", sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.8rem !important;
  margin: 0 auto 1rem !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  line-height: 1 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
  border: 3px solid #fff !important;
}

.process-step h4 {
  font-family: "Sora", sans-serif;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== COMMITMENT CARDS (À propos) ===== */
.commitment-card .commitment-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.commitment-card .commitment-icon svg {
  width: 100%;
  height: 100%;
  stroke: #f97316;
  fill: none;
  stroke-width: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-intro {
    padding: 3rem 1.5rem;
  }

  .service-highlights {
    gap: 0.75rem;
  }

  .highlight {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
  }

  .timeline-date {
    flex: none;
    text-align: left;
    padding-left: 50px;
  }

  .timeline-content {
    margin: 1rem 0 0 50px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 3rem 2rem;
  background: #f8fafc;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-info h3 {
  font-family: "Sora", sans-serif;
  color: #1e293b;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f97316;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
  color: #1e293b;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.contact-item a {
  color: #f97316;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #ea580c;
  text-decoration: underline;
}

.contact-form-container {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-container h3 {
  font-family: "Sora", sans-serif;
  color: #1e293b;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f97316;
}

.contact-form-custom .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-custom label {
  display: block;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-form-custom input,
.contact-form-custom select,
.contact-form-custom textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.contact-form-custom input:focus,
.contact-form-custom select:focus,
.contact-form-custom textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.contact-form-custom textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-custom button[type="submit"] {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.contact-form-custom button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Zone d'intervention */
.zone-intervention {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.zone-intervention h3 {
  font-family: "Sora", sans-serif;
  color: #1e293b;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.zone-intervention p {
  color: #64748b;
  margin-bottom: 1rem;
}

.zone-intervention ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
}

.zone-intervention li {
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.zone-intervention li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
}

/* Responsive Contact */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form-container {
    padding: 1.5rem;
  }

  .zone-intervention ul {
    grid-template-columns: 1fr;
  }
}

/* ===== PAGES LÉGALES (CGV, Politique de confidentialité) ===== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  font-family: "Sora", sans-serif;
  color: #1e293b;
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f97316;
}

.legal-content h3 {
  font-family: "Sora", sans-serif;
  color: #334155;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: #475569;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  color: #475569;
  margin-bottom: 0.5rem;
}

.date-update {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.intro-box {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid #f97316;
}

.intro-box p {
  margin: 0;
  color: #334155;
}

.important-box {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.important-box p {
  margin: 0;
  color: #92400e;
}

.contact-box {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #fff;
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
}

.contact-box h3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-box ul {
  list-style: none;
  padding: 0;
}

.contact-box li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.contact-box a {
  color: #f97316;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Responsive légal */
@media (max-width: 768px) {
  .legal-content h2 {
    font-size: 1.3rem;
  }
  
  .contact-box {
    padding: 1.5rem;
  }
}

/* ========================================
   Contact Form 7 - Style personnalisé
   ======================================== */

/* Container du formulaire CF7 */
.wpcf7 {
  width: 100%;
}

/* Champs du formulaire */
.wpcf7 .form-group {
  margin-bottom: 1.5rem;
}

.wpcf7 .form-group label {
  display: block;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #fff;
}

/* Select customisé */
.wpcf7 select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.wpcf7 select:hover {
  border-color: #cbd5e1;
}

/* Focus states */
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

/* Textarea */
.wpcf7 textarea {
  resize: vertical;
  min-height: 120px;
}

/* Bouton submit */
.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.25);
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(249, 115, 22, 0.35);
}

.wpcf7 input[type="submit"]:active {
  transform: translateY(0);
}

/* Messages de validation */
.wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.wpcf7-response-output {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
}

.wpcf7-mail-sent-ok {
  background-color: #dcfce7;
  border: 2px solid #16a34a;
  color: #166534;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
  background-color: #fee2e2;
  border: 2px solid #dc2626;
  color: #991b1b;
}

/* Spinner */
.wpcf7 .ajax-loader {
  display: none !important;
}

.wpcf7-spinner {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .wpcf7 input,
  .wpcf7 select,
  .wpcf7 textarea {
    font-size: 16px; /* Évite le zoom sur mobile */
  }
}

/* ========================================
   Contact Form 7 - Style personnalisé
   ======================================== */

/* Container du formulaire CF7 */
.wpcf7 {
  width: 100%;
}

/* Champs du formulaire */
.wpcf7 .form-group {
  margin-bottom: 1.5rem;
}

.wpcf7 .form-group label {
  display: block;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #fff;
}

/* Select customisé */
.wpcf7 select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.wpcf7 select:hover {
  border-color: #cbd5e1;
}

/* Focus states */
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

/* Textarea */
.wpcf7 textarea {
  resize: vertical;
  min-height: 120px;
}

/* Bouton submit */
.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.25);
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(249, 115, 22, 0.35);
}

.wpcf7 input[type="submit"]:active {
  transform: translateY(0);
}

/* Messages de validation */
.wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.wpcf7-response-output {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
}

.wpcf7-mail-sent-ok {
  background-color: #dcfce7;
  border: 2px solid #16a34a;
  color: #166534;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
  background-color: #fee2e2;
  border: 2px solid #dc2626;
  color: #991b1b;
}

/* Spinner */
.wpcf7 .ajax-loader {
  display: none !important;
}

.wpcf7-spinner {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .wpcf7 input,
  .wpcf7 select,
  .wpcf7 textarea {
    font-size: 16px; /* Évite le zoom sur mobile */
  }
}

.step-number * {
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 1.8rem !important;
}

.step-number * {
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 1.8rem !important;
}
