/* Contact page */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.contact-card, .contact-info-card {
  padding: 25px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-wrap label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-wrap .input, 
.contact-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-wrap .form-btn {
  margin-top: 10px;
}

.map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eef0f4;
  margin-top: 15px;
}

.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
.contact-item {
  display: flex;
  align-items: center;   /* vertically center icon and text */
  gap: 8px;              /* space between icon and text */
  font-size: 14px;
  color: #333;
}

.contact-item i {
  color: #007bff;       /* optional: icon color */
}
/* ===============================
   WHATSAPP FLOAT
================================*/
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  z-index: 2000;
  transition: .3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Pulse */
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, .6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}
