/* Styles spécifiques à la page contact */

.contact-info-section,
.contact-form-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 92, 56, 0.15);
  border-left-color: #b85c38;
  background: rgba(255, 255, 255, 0.9);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #b85c38, #d86c41);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-details h5 {
  color: #b85c38;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-link {
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #b85c38;
  text-decoration: underline;
}

.opening-hours {
  background: rgba(184, 92, 56, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(184, 92, 56, 0.1);
}

.hours-list {
  background: white;
  border-radius: 10px;
  padding: 1rem;
}

.contact-form {
  position: relative;
}

.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-control:focus,
.form-select:focus {
  border-color: #b85c38;
  box-shadow: 0 0 0 0.2rem rgba(184, 92, 56, 0.25);
  background: white;
}

.form-label {
  color: #495057;
  margin-bottom: 0.5rem;
}

.form-label i {
  color: #b85c38;
}

.submit-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 92, 56, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .spinner-border {
  display: inline-block !important;
}

.cta-section {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.4s forwards;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease 0.3s forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease 0.5s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-section,
  .contact-form-section {
    padding: 1.5rem;
  }
  
  .contact-item {
    padding: 1rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon i {
    font-size: 1rem;
  }
}