.contact-banner {
  background: #f6f7f9;
  padding: 90px 20px;
  font-family: 'Inter', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.contact-heading {
  text-align: center;
  margin-bottom: 70px;
}

.contact-heading h2 {
  font-size: 42px;
  color: #2f4f2f;
  margin-bottom: 10px;
}

.heading-line {
  display: block;
  width: 45px;
  height: 4px;
  background: #22c55e;
  margin: 12px auto 20px;
  border-radius: 5px;
}

.sub-text {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}

/* Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

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

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-card.highlight {
  border: 2px solid #dbeafe;
  background: #f0f7ff;
}

/* Icons */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.icon-box.email {
  background: #f3f4f6;
}

.icon-box.phone {
  background: #f3f4f6;
}

.icon-box.whatsapp {
  background: #d1fae5;
}

/* Info */
.contact-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #111;
}

.contact-info p {
  font-size: 14px;
  color: #555;
}
.whatsapp-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}