@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

.trainer-application-light {
  background-color: #f8f9fa;
  min-height: 100vh;
  padding-bottom: 80px;
  font-family: 'Montserrat', sans-serif;
}

/* Ajout des styles d'input comme login.css */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #00365f;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.custom-input-group {
  position: relative;
  border: 2px solid #eef1f5;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.custom-input-group:focus-within {
  border-color: #00365f;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 54, 95, 0.1);
}

.custom-input-group i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #00365f;
  font-size: 18px;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 50px;
  border: none;
  background: transparent;
  font-size: 15px;
  color: #00365f;
}

.form-input:focus {
  outline: none;
}

.form-input::placeholder {
  color: #a0a8b3;
}

/* Textarea styles to match input styles */
textarea.form-input {
  min-height: 120px;
  resize: vertical;
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
}

.custom-textarea-group {
  position: relative;
  border: 2px solid #eef1f5;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.custom-textarea-group:focus-within {
  border-color: #00365f;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 54, 95, 0.1);
}

.custom-textarea-group i {
  position: absolute;
  left: 20px;
  top: 20px;
  color: #00365f;
  font-size: 18px;
}

.custom-textarea-group textarea.form-input {
  padding-left: 50px;
}

/* Animated gradient backgrounds */
.gradient-bg-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gradient-bg-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 54, 95, 0.05) 0%, rgba(0, 54, 95, 0) 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 84, 138, 0.07) 0%, rgba(0, 84, 138, 0) 50%);
}

/* Typography enhancements */
.trainer-application-light h3.gradient-text {
  background: linear-gradient(90deg, #00365f, #0068a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* Card styles */
.feature-card {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 30px;
  background: white;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  border-radius: 12px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00365f, #0068a0);
}

/* Form step animations */
.form-step {
  animation-name: fadeSlideIn;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom checkbox */
.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: #e6e6e6;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #00365f;
  border-color: #00365f;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Responsive styles */
@media (max-width: 768px) {
  .gradient-bg-section {
    padding: 40px 0;
  }
  
  .feature-card {
    padding: 20px;
    margin-bottom: 20px;
  }
}

/* Custom button styles */
.btn-gradient {
  background: linear-gradient(135deg, #00365f, #0068a0);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 54, 95, 0.2);
  font-family: 'Montserrat', sans-serif;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 54, 95, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid #00365f;
  color: #00365f;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-outline:hover {
  background: rgba(0, 54, 95, 0.1);
}

/* Selection card */
.selection-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.selection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.selection-card.selected {
  border-color: #00365f;
  background: rgba(0, 54, 95, 0.05);
}

.selection-card .selection-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f0f0;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.selection-card.selected .selection-icon {
  background: #00365f;
  color: white;
}

.file-drop-area {
  border: 2px dashed #e0e0e0;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.01);
}

.file-drop-area:hover {
  border-color: #00365f;
  background: rgba(0, 54, 95, 0.03);
}

.file-drop-area.has-file {
  border-color: #00365f;
  background: rgba(0, 54, 95, 0.05);
}

.file-drop-icon {
  font-size: 40px;
  color: #bbbbbb;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.file-drop-area:hover .file-drop-icon,
.file-drop-area.has-file .file-drop-icon {
  color: #00365f;
}

/* Summary styles */
.summary-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #00365f;
}

.summary-item {
  display: flex;
  margin-bottom: 10px;
}

.summary-label {
  font-weight: 600;
  min-width: 150px;
  color: #555;
  font-family: 'Montserrat', sans-serif;
}

.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chip {
  padding: 5px 10px;
  border-radius: 20px;
  background: #e0e0e0;
  font-size: 14px;
  color: #333;
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.chip.primary {
  background: rgba(0, 54, 95, 0.1);
  color: #00365f;
}

/* Header section */
.trainer-header {
  background: linear-gradient(135deg, #00365f, #0068a0);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trainer-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 2.8rem;
  position: relative;
  z-index: 2;
}

.trainer-header p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  line-height: 1.7;
  font-size: 1.1rem;
}

.trainer-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCA4MCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjZmZmZmZmIj48cGF0aCBkPSJNMTI4MCA4MFYwTDY0MCA2MCAwIDB2ODBIMTI4MHoiLz48L2c+PC9zdmc+');
  background-size: 100% 100px;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.1;
}

/* Step highlight */
.step-highlight {
  background: rgba(0, 54, 95, 0.03);
  border-left: 4px solid #00365f;
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00365f;
  color: white;
  border-radius: 50%;
  margin-right: 15px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* Enhanced card styles */
.enhanced-card {
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: white;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.enhanced-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 54, 95, 0.2);
}

.enhanced-card .card-header {
  padding: 20px;
  background: linear-gradient(135deg, #00365f, #0068a0);
  color: white;
}

.enhanced-card .card-body {
  padding: 20px;
}
