/* ==============================================================
   TỆP CSS DÀNH RIÊNG CHO PHẦN POPUP LIÊN HỆ - HỖ TRỢ
   ============================================================== */

/* Ép chiều ngang khung popup liên hệ hẹp lại cho cân đối, vì nội dung dạng cột dọc */
.lienhe-content {
  max-width: 500px !important;
  padding: 30px !important;
}

.lienhe-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  /* Ẩn thanh cuộn webkit */
}
.lienhe-container::-webkit-scrollbar {
  display: none;
}

.lienhe-item {
  text-align: center;
  width: 100%;
}

.lienhe-item h3 {
  color: #00d2ff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.lienhe-item p {
  color: #dddddd;
  font-size: 0.95rem;
  margin-top: 15px;
}

.zalo-qr {
  width: 100%;
  max-width: 220px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}
.zalo-qr:hover {
  transform: scale(1.05);
}

/* ================= ĐƯỜNG KẺ NGĂN CÁCH ================= */
.lienhe-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  margin: 30px 0;
  position: relative;
}

.lienhe-divider::after {
  content: "◆"; /* Icon hình thoi ở chính giữa */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

/* ================= NÚT GỬI EMAIL ================= */
.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 65, 108, 0.4);
  transition: all 0.3s ease;
}

.email-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 65, 108, 0.6);
  color: #ffffff;
}
