.contact {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 6rem 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,102,204,0.1), transparent);
}

.contact__simple {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact__simple-text {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3.5rem;
  line-height: 1.6;
  font-weight: 400;
}

.contact__simple-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact__simple-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
}

.contact__simple-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact__simple-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 102, 204, 0.2);
}

.contact__simple-item:hover::before {
  opacity: 1;
}

.contact__simple-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: grayscale(20%);
  color: var(--primary);
}

.contact__simple-content h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact__simple-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  word-break: break-word;
}

.contact__simple-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact__simple-address {
  color: var(--text-light);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact {
    padding: 4rem 0;
  }
  
  .contact__simple-text {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .contact__simple-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .contact__simple-item {
    min-width: auto;
    width: 100%;
    max-width: 350px;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .contact__simple-icon {
    font-size: 2.2rem;
  }
}
