/**
 * Contact Page Styles
 */

.contact-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    rgba(35, 74, 218, 0.05) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.contact-header {
  margin-bottom: 40px;
  text-align: center;
}

.contact-header .title-new {
  margin-bottom: 20px;
  color: #141752;
  font-size: 36px;
  font-weight: 700;
}

.contact-header .subtitle-new {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(20, 23, 82, 0.1);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card .alert {
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
  font-weight: 500;
}

.contact-card .alert-success {
  background-color: #e7f9ed;
  color: #1c8c4d;
  border: 1px solid #d0f0df;
}

.contact-card .alert-danger {
  background-color: #fde8e8;
  color: #c53030;
  border: 1px solid #f8d0d0;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.form-col {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .form-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.form-group-contact {
  margin-bottom: 25px;
}

.form-label-contact {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #141752;
  font-size: 16px;
}

.form-label-contact.required::after {
  content: '*';
  color: #e53e3e;
  margin-left: 4px;
}

.form-control-contact {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  font-size: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

.form-control-contact:focus {
  outline: none;
  border-color: #4c6ef5;
  background-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(76, 110, 245, 0.2);
}

textarea.form-control-contact {
  min-height: 150px;
  padding: 15px;
  resize: vertical;
}

.captcha-container-contact {
  display: flex;
  flex-direction: column;
}

.btn-contact {
  display: block;
  width: 100%;
  height: 54px;
  background-color: #4c6ef5;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.btn-contact:hover {
  background-color: #364fc7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 110, 245, 0.25);
}

.error-msg {
  color: #e53e3e;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 500;
}

/* Informations de contact supplémentaires */
.contact-info {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.contact-info-item {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 240px;
  padding: 30px 20px;
  background-color: #f8fafc;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(20, 23, 82, 0.08);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(76, 110, 245, 0.1);
  color: #4c6ef5;
  border-radius: 50%;
  font-size: 20px;
}

.contact-info-title {
  font-size: 18px;
  font-weight: 600;
  color: #141752;
  margin-bottom: 8px;
}

.contact-info-text {
  color: #555;
  font-size: 16px;
}
