/* Contact Cards Styles - Corporate Clean Design pour RassurImmo */

.contact-cards-container {
  padding: 20px 0;
}

.contact-card {
  background: #fafafa;
  border-radius: 6px;
  padding: 40px 30px;
  text-align: center;
  border-left: 4px solid #00b140;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.contact-card:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left-color: #00a038;
}

/* Variantes de couleurs pour les différentes cartes */
.contact-card-primary {
  border-left-color: #00b140;
}

.contact-card-secondary {
  border-left-color: #33c166;
}

.contact-card-tertiary {
  border-left-color: #28a745;
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: #00b140;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: white;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: #00a038;
  transform: scale(1.05);
}

.contact-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #2c3e50;
  font-family: var(--title-font-family, inherit);
}

.contact-card-desc {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #6c757d;
  font-weight: 400;
}

.contact-card-link {
  color: #00b140;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #00b140;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
  background: transparent;
}

.contact-card-link:hover {
  color: white;
  background: #00b140;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-card {
    margin-bottom: 20px;
    padding: 30px 20px;
    border-radius: 6px;
  }

  .contact-card-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .contact-card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .contact-card-desc {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .contact-card-link {
    padding: 6px 16px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .contact-cards-container {
    padding: 10px 0;
  }

  .contact-card {
    padding: 25px 15px;
    margin-bottom: 15px;
  }

  .contact-card-icon {
    width: 45px;
    height: 45px;
    font-size: 16px;
    border-radius: 6px;
  }

  .contact-card-title {
    font-size: 15px;
  }

  .contact-card-desc {
    font-size: 12px;
  }
}

