/* Contact page specific styles extracted from inline HTML */
.contact-page {
  background-color: #f8f9fa;
}

.contact-page .contact-info {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-item {
  padding: 20px;
  transition: transform 0.3s ease;
  border-radius: 18px;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-item a {
  color: #333;
  text-decoration: none;
}

.contact-item a:hover {
  color: #007bff;
}

.whatsapp-cta {
  padding: 20px;
  transition: all 0.3s ease;
  border-radius: 18px;
}

.whatsapp-icon {
  transition: transform 0.3s ease;
}

.whatsapp-cta:hover .whatsapp-icon {
  transform: scale(1.1);
}

.contact-card {
  transition: transform 0.3s ease;
  border-radius: 18px;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-method {
  transition: transform 0.3s ease;
  border-radius: 18px;
}

.contact-method:hover {
  transform: translateY(-5px);
}

.contact-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #007bff;
  text-decoration: none;
}

.icon-wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ensure footer/contact info box keeps soft corners */
.contact-page .contact-info {
  border-radius: 18px;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
