/* Home Social Section */

.home-social {
  padding: 60px 40px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

/* Heading - Same as other sections */
.home-social .h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin: 0 0 40px 0;
  letter-spacing: 0.02em;
  position: relative;
}

.home-social__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.home-social__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  min-width: 300px;
}

.home-social__item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.home-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.home-social__item--telegram .home-social__icon {
  background: linear-gradient(135deg, #0088cc, #00a8ff);
}

.home-social__item--whatsapp .home-social__icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.home-social__item--contact .home-social__icon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.home-social__item--form .home-social__icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.home-social__item:hover .home-social__icon {
  transform: scale(1.1);
}

.home-social__icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
  fill: currentColor;
}

.home-social__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.home-social__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.home-social__description {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .home-social {
    padding: 50px 20px;
  }
  
  .home-social .h2 {
    margin-bottom: 30px;
    font-size: clamp(20px, 5vw, 28px);
  }
  
  .home-social__content {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .home-social__item {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    padding: 25px 30px;
  }
  
  .home-social__icon {
    width: 50px;
    height: 50px;
  }
  
  .home-social__icon svg {
    width: 28px;
    height: 28px;
  }
  
  .home-social__title {
    font-size: 16px;
  }
  
  .home-social__description {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .home-social {
    padding: 40px 16px;
  }
  
  .home-social .h2 {
    margin-bottom: 20px;
  }
  
  .home-social__content {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
  }
  
  .home-social__item {
    padding: 20px 25px;
    gap: 15px;
  }
  
  .home-social__icon {
    width: 45px;
    height: 45px;
  }
  
  .home-social__icon svg {
    width: 24px;
    height: 24px;
  }
  
  .home-social__title {
    font-size: 15px;
  }
  
  .home-social__description {
    font-size: 12px;
  }
}
