/* Contact Agent Card & MLS Integration */

.realtor-contact {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 8px;
  height: fit-content;
}

.realtor-contact h3 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.agent-info {
  text-align: center;
}

.agent-name {
  margin: 0 0 5px 0;
  font-size: 18px;
}

.agent-title {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 14px;
}

.contact-details {
  text-align: left;
}

.contact-details p {
  margin: 8px 0;
}

.contact-details strong {
  font-weight: 500;
}

.contact-details a {
  color: #3498db;
  text-decoration: none;
}

.call-agent-btn {
  width: 100%;
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 15px;
}

.mls-listing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: #e74c3c;
  color: white;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 4px;
  font-weight: 500;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.mls-listing-btn:hover {
  background-color: #c0392b;
  color: white;
  text-decoration: none;
}

.btn-mls {
  background-color: #e74c3c;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-mls:hover {
  background-color: #c0392b;
  color: white;
  text-decoration: none;
}

.mls-disclaimer {
  margin-top: 15px;
  font-size: 12px;
  color: #666;
  text-align: center;
  font-style: italic;
}

@media (max-width: 768px) {
  .mls-listing-btn {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .btn-mls {
    width: 100%;
    justify-content: center;
  }
}