/* 📞 STYLES SPÉCIFIQUES POUR LA PAGE CONTACT */

.hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-logo {
  max-width: 150px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.hero {
  background: #f8fafc;
  color: #1a202c;
  padding: 6rem 0;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.hero h1 {
  color: #f0f4f8;
  font-size: 3rem;
  margin: 0;
  font-weight: 700;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e0f2fe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ==============================================
   📝 SECTION CONTACT PRINCIPALE
   ============================================== */

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-container {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(98, 173, 43, 0.1);
}

.contact-form-container h2 {
  margin-bottom: 2rem;
  color: #212B79;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2d3748;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #62AD2B;
  background: white;
  box-shadow: 0 0 0 3px rgba(98, 173, 43, 0.1);
}

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

.contact-info {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(98, 173, 43, 0.1);
}

.contact-info h2 {
  margin-bottom: 2rem;
  color: #212B79;
}

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

.contact-item h3 {
  color: #212B79;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  color: #666;
  line-height: 1.5;
}

.contact-item a {
  color: #62AD2B;
  text-decoration: none;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  background: #62AD2B;
  color: white !important;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.social-link:hover {
  background: #4a8520;
  color: white !important;
  transform: translateY(-2px);
}

/* ==============================================
   💪 SECTION SOUTIEN
   ============================================== */

.support-section {
  background: #f8fafc;
}

.support-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.support-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(98, 173, 43, 0.1);
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #62AD2B, #4a8520);
  border-radius: 50%;
  color: white;
  margin-bottom: 1.5rem;
}

.support-card h3 {
  color: #212B79;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.support-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.support-list li {
  padding: 0.5rem 0;
  color: #4a5568;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.support-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #62AD2B;
  font-weight: bold;
}

.support-note {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid #62AD2B;
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1rem;
}

/* ==============================================
   🗺️ SECTION CARTE
   ============================================== */

.map-section {
  background: white;
}

.map-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(98, 173, 43, 0.1);
}

.map-info {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #62AD2B;
}

.map-info p {
  color: #4a5568;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.map-info strong {
  color: #212B79;
}

/* ==============================================
   📱 RESPONSIVE DESIGN
   ============================================== */

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }
  
  .social-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .social-link {
    justify-content: center;
  }
  
  .support-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .support-card {
    padding: 2rem;
  }
  
  .support-icon {
    width: 60px;
    height: 60px;
  }
  
  .map-container {
    padding: 1.5rem;
  }
}
/* Bannière avec image pour Contact */
.hero-contact {
  position: relative;
  background: none;
  color: #fff;
}
.hero-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/etang3.png') center/cover no-repeat;
  filter: brightness(0.9);
}
.hero-contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.35) 100%);
}
.hero-contact .container { position: relative; z-index: 1; }
.hero-contact .hero-logo { display: none; }
.hero-contact h1 { color: #fff; text-shadow: 0 3px 10px rgba(0,0,0,0.6); }
.hero-contact .hero-banner { background: rgba(0,0,0,0.2); padding: 2rem 2.5rem; border-radius: 12px; }
@media (max-width: 768px) {
  .hero-contact h1 { font-size: 2.25rem; }
  .hero-contact .hero-banner { padding: 1.25rem 1.5rem; }
}
