/* Contact Page Styles */
.contact-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.contact-icon {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.contact-map {
  height: 300px;
  background: #f5f5f5;
  border-radius: 8px;
  margin-top: 20px;
}

.btn-contact {
  padding: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .contacts-hero {
    padding: 80px 0 60px;
  }
  
  .contact-map {
    height: 250px;
  }
  
  .btn-contact {
    padding: 10px;
  }
}