/* ===============================
   CONTACT SECTION – LASAKI INFOTECH
   =============================== */

* {
  box-sizing: border-box;
}

.contact-ui {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eef2f3, #d9e2ec);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}

.contact-ui h2 {
  font-size: 36px;
  color: #1f2933;
  margin-bottom: 8px;
}

.contact-ui .subtitle {
  font-size: 16px;
  color: #52606d;
  margin-bottom: 50px;
}

/* Layout */
.contact-box {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card */
.contact-item {
  background: #ffffff;
  width: 280px;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Icon */
.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: auto;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 22px;
}

/* Icon Colors */
.phone {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.email {
  background: linear-gradient(135deg, #ff512f, #dd2476);
}

.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Text */
.contact-item h3 {
  font-size: 20px;
  color: #102a43;
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 14px;
  color: #616e7c;
  margin-bottom: 18px;
}

/* Button */
.contact-item a {
  display: inline-block;
  padding: 11px 24px;
  background: #102a43;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-item a:hover {
  background: #0072ff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-item {
    width: 100%;
    max-width: 320px;
  }
}
