.contact-info {
  max-width: 480px;
}

.contact-info h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
  color: #111;
}

/* Each contact row */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

/* Icon container */
.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background-color: rgba(255, 106, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 16px;
  color: #ff6a00; /* Brand orange */
}

/* Text */
.contact-detail h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}

.contact-detail p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}


.contact-detail:hover .contact-icon {
  background-color: #ff6a00;
}

.contact-detail:hover .contact-icon i {
  color: #fff;
  transition: all 0.25s ease;
}


