/* ============================================
   Contact Card Styles
   ============================================ */
.contact-card {
  background: #f8fbff;
  border: 1px solid #e5eef7;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(12, 125, 240, 0.08);
  margin-bottom: 20px;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #0c7df0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-card h3 {
  margin: 0;
  color: #0c7df0;
  font-size: 20px;
}

.contact-card .subtitle {
  margin: 2px 0 0;
  color: #555;
  font-size: 13px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}

.contact-list p {
  display: grid;
  grid-template-columns: 22px 90px 1fr;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #333;
  font-size: 14px;
}

.contact-list i {
  color: #0c7df0;
}

.contact-list span {
  font-weight: 600;
  color: #0c7df0;
}

.contact-list a {
  color: #0c7df0;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #0c7df0;
  color: #0c7df0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-link.primary {
  background: #0c7df0;
  color: #fff;
}

.btn-link:hover {
  box-shadow: 0 6px 16px rgba(12, 125, 240, 0.18);
  transform: translateY(-1px);
}

/* Honeypot field (spam protection) */
.honeypot-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 767px) {
  .contact-list p {
    grid-template-columns: 18px 80px 1fr;
  }
  
  .contact-card {
    padding: 16px;
  }
}

