.vt-contact-wrapper {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.vt-contact-wrapper .vt-contact-container {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.vt-contact-wrapper .vt-contact-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vt-contact-wrapper .vt-contact-header {
  background: linear-gradient(90deg, #007bff 0%, #00c6ff 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vt-contact-wrapper .vt-contact-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.vt-contact-wrapper .card {
  border: none;
  border-radius: 15px;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vt-contact-wrapper .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.vt-contact-wrapper .card-title {
  color: #007bff;
  font-weight: 600;
}

.vt-contact-wrapper .vt-icon-pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.vt-contact-wrapper .vt-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.vt-contact-wrapper .vt-delay-1 {
  animation-delay: 0.3s;
}

.vt-contact-wrapper .vt-delay-2 {
  animation-delay: 0.6s;
}

.vt-contact-wrapper .vt-delay-3 {
  animation-delay: 0.9s;
}

