/* Panel Colors */
.contact-left {
  background: linear-gradient(135deg, #ed5521, #f86f42);
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(rgba(237, 85, 33, 0.3), transparent 70%);
  animation: glowMove 8s linear infinite;
}
@keyframes glowMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Card and Icons */
.contact-card {
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ed5521;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(237, 85, 33, 0.4);
  transition: all 0.3s ease;
}
.icon-circle:hover {
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 6px 20px rgba(237, 85, 33, 0.6);
  background: #f86f42;
}


.hover-rise {
  transition: all 0.3s ease;
}
.hover-rise:hover {
  transform: translateY(-6px);
}

/* Animation Library Fallback (optional if animate.css not used) */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

.contact-card {
  animation: fadeInUp 1s ease both;
}

@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
  }
}
