/* Section contact */
.contact {
  position: relative;
  background: #111;
  padding: 100px 0 78px;
}
.spacer {
  height: 180px;
}

@media (max-width:768px){
  .spacer{ height: 80px; }
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.contact .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact h1 {
  color: #fff;
  text-align: center;
  font-size: 52px;
  margin: 0 0 8px;
  font-weight: 800;
}

.contact-subtitle {
  color: #fff;
  text-align: center;
  margin: 0 0 26px;
  font-size: 18px;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}

.contact label {
  display: block;
  font-weight: 700;
  margin: 12px 0 6px;
  text-align: left;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #cfd6df;
  border-radius: 10px;
  font: inherit;
  transition: border-color 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #FF8200;
  box-shadow: 0 0 0 2px rgba(255,130,0,0.2);
}

.contact textarea {
  min-height: 140px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: .25s ease;
  border: none;
  cursor: pointer;
}

.btn-don {
  background: var(--sdg-navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(25,72,106,.28);
}

.btn-don:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(25,72,106,.4);
}

.contact-quick-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 26px;
}

.contact-quick-actions .btn {
  text-decoration: none;
}

.btn-whatsapp {
  background: #0E7A3F;
  color: #fff;
  box-shadow: 0 10px 24px rgba(14,122,63,.3);
}

.btn-whatsapp:hover {
  background: #0B6332;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14,122,63,.42);
}

/* Infos de contact */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.info-item {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.info-item i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #FF8200;
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.info-item a {
  color: #fff;
  text-decoration: none;
}

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

/* Responsive */
@media (max-width: 980px) {
  .contact h1 {
    font-size: 32px;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* Suivez-nous */
.follow{
  background:#fff;
  padding:34px 0;
  text-align:center;
}

.follow h2{
  margin:0 0 14px;
  font-size:34px;
  font-weight:900;
  color:#0b0b0b;
}

.follow-icons{
  display:flex;
  gap:18px;
  justify-content:center;
  align-items:center;
}

.follow-icons a{
  width:38px;
  height:38px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  color:#0b0b0b;
  background:transparent;
  transition: background .2s ease, transform .15s ease;
}

.follow-icons a:hover{
  background:rgba(0,0,0,.08);
  transform: translateY(-1px);
}

/* Carte */
.map-wrap{
  background:#22b7d6;
  padding:48px 0 70px;
}

.map-box{
  background:#e9eef2;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  height:320px;
}

.map-box iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Responsive */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .contact-left h1{
    font-size:34px;
  }
}