/* ===== HERO ===== */
.contact-hero {
  height: 420px;
  background: url('../images/call4.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.7));
}

.contact-hero-content {
  position: relative;
  max-width: 800px;
  padding: 0 1.5rem;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #ddd;
}

/* ===== GRID ===== */
.contact-grid-section {
  padding: 4rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* ===== CARDS ===== */
.contact-card {
  background: #f9f9f9;
  padding: 2rem;
  border: 2px solid #000000;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px black;
  transition: transform .3s ease, box-shadow .3s ease;
  max-width: 800px;
  margin: auto;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
  border-color: #000000;
}

.icon-wrapper {
  font-size: 2.2rem;
  color: #ff7f50;
  margin-bottom: 1rem;
}

.contact-card .availability {
  margin-top: 15px;
  font-weight: 500;
  color: #28a745;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== BLOCS ADRESSES ===== */
.address-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.address-image {
  width: 150px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.address-block p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.address-block a {
  display: inline-block;
  margin-top: 5px;
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.address-block a:hover {
  color: #005fa3;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .address-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .address-image {
    width: 100%;
    max-width: 300px;
  }
}


/* ===== WHATSAPP ===== */
.whatsapp-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1rem;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #25d366;
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  transition: background .3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #1ebe57;
}

/* ===== SOCIAL ===== */
.social-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.social {
  text-decoration: none;
  font-weight: 600;
  color: #03396c;
  transition: color .3s ease;
}

.social:hover {
  color: #1abc9c;
}

/* ===== MAP ===== */
.map-section {
  padding: 4rem 2rem;
}

#map {
  height: 500px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-hero h1 { font-size: 2.2rem; }
  .contact-hero p { font-size: 1rem; }
  .contact-grid { gap: 1.5rem; }
  .contact-card { padding: 1.5rem; }
  .input-wrapper input, .input-wrapper textarea { padding-left: 2.2rem; }
}
