/* ============================================
   CSS DÉDIÉ - PAGES CONTACT ET AIDE
   Design moderne et professionnel
   ============================================ */

/* ============================================
   PAGE CONTACT - AMÉLIORATION DESIGN
   ============================================ */

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  border-radius: 25px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.25);
}

.contact-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
}

/* Container principal */
.contact-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Section Informations de contact */
.contact-info {
  background: var(--card-bg, #fff);
  padding: 2.5rem;
  border-radius: 25px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.contact-info h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #333;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(0, 102, 204, 0.03);
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.contact-item:hover {
  background: rgba(0, 102, 204, 0.08);
  border-color: #0066cc;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.15);
}

.contact-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-details {
  flex: 1;
}

.contact-details h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: #0066cc;
  font-weight: 700;
}

.contact-details p {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Formulaire de contact amélioré */
.contact-form {
  background: var(--card-bg, #fff);
  padding: 2.5rem;
  border-radius: 25px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
  background: #f8f8f8;
  color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
  background: white;
  transform: translateY(-2px);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .submit-btn {
  width: 100%;
  padding: 1.3rem;
  background: linear-gradient(135deg, #0066cc, #0052a3);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
  margin-top: 1rem;
}

.contact-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
  background: linear-gradient(135deg, #0052a3, #003d7a);
}

/* ============================================
   PAGE AIDE - AMÉLIORATION DESIGN
   ============================================ */

.help-center {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.help-section {
  background: var(--card-bg, #fff);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.help-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 102, 204, 0.2);
  border-color: #0066cc;
}

.help-section h2 {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
}

.help-section h2 a {
  color: #0066cc;
  text-decoration: none;
  transition: all 0.3s;
}

.help-section h2 a:hover {
  color: #0052a3;
  text-decoration: underline;
}

.help-section p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Section "Besoin d'aide supplémentaire" */
.help-content {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem;
  border-radius: 25px;
  margin-top: 3rem;
  text-align: center;
  border: 2px solid #e0e0e0;
}

.help-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.help-content > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Options de contact dans Aide */
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.contact-option {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 102, 204, 0.2);
  border-color: #0066cc;
}

.option-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-option h3 {
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  color: #0066cc;
  font-weight: 700;
}

.contact-option p {
  font-size: 1.05rem;
  color: #333;
  margin: 0.5rem 0;
  font-weight: 600;
}

.option-hours {
  color: #999 !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablette */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    position: static;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2rem;
  }
  
  .contact-header p {
    font-size: 1rem;
  }
  
  .contact-info,
  .contact-form,
  .help-content {
    padding: 1.5rem;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
  
  .help-center {
    grid-template-columns: 1fr;
  }
  
  .help-content h2 {
    font-size: 1.5rem;
  }
}

/* Petit mobile */
@media (max-width: 480px) {
  .contact-header {
    padding: 1.5rem;
  }
  
  .contact-header h1 {
    font-size: 1.7rem;
  }
  
  .contact-item {
    padding: 1rem;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
  
  .contact-details h3 {
    font-size: 1rem;
  }
  
  .contact-option {
    padding: 1.5rem 1rem;
  }
  
  .option-icon {
    font-size: 2.5rem;
  }
  
  .contact-option h3 {
    font-size: 1.1rem;
  }
}
