.tymkor-contact-footer {
  background-color: #050505;
  padding: 60px 20px 100px;
  font-family: inherit;
}

.tymkor-contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tymkor-contact-card {
  background-color: #121212;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tymkor-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #15c3be;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  z-index: 2;
}

.tymkor-contact-card:hover {
  transform: translateY(-10px);
  border-color: #333333;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.tymkor-contact-card:hover::before {
  transform: scaleX(1);
}

.tymkor-contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: rgba(21, 195, 190, 0.05);
  border: 1px solid rgba(21, 195, 190, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.tymkor-contact-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.tymkor-contact-card:hover .tymkor-contact-icon {
  background: #15c3be;
  transform: scale(1.1) rotate(5deg);
  border-color: #15c3be;
  box-shadow: 0 10px 20px rgba(21, 195, 190, 0.2);
}

.tymkor-contact-card h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.tymkor-contact-card p,
.tymkor-contact-card a {
  color: #a0a0a0;
  font-size: 16px;
  line-height: 1.7;
  text-decoration: none;
  margin: 0;
  transition: color 0.3s;
  display: block;
}

.tymkor-contact-card a:hover {
  color: #15c3be;
}

.tymkor-contact-note {
  margin-top: 10px !important;
  font-size: 14px !important;
  color: #777 !important;
}

@media (max-width: 768px) {
  .tymkor-contact-card {
    padding: 40px 20px;
  }
  .tymkor-contact-icon {
    width: 60px;
    height: 60px;
  }
  .tymkor-contact-icon img {
    width: 30px;
    height: 30px;
  }
}
