@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');




/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 80px 20px;
  background: #f5f7fa;
  display: flex;
  justify-content: center;
}

.contact-container {
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Heading */
.contact-container h1 {
  text-align: center;
  font-family: Ubuntu;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: steelblue;
}

/* Contact list */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Single item */
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f0f4ff;
  border-radius: 10px;
}

.contact-item i {
  font-size: 1.8rem;
  color: #1e40af;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 1rem;
}

/* Social icons */
.contact-item.social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp */
.contact-item.social a[href*="wa.me"] {
  background: #25d366;
}

/* Email */
.contact-item.social a[href^="mailto:"] {
  background: white;
}

/* Facebook */
.contact-item.social a[href*="facebook"] {
  background: white;
}

/* Hover effect */
.contact-item.social a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .contact-container {
    padding: 30px 20px;
  }

  .contact-container h1 {
    font-size: 1.8rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .contact-container h1 {
    font-size: 1.6rem;
  }

  .contact-item p {
    font-size: 0.95rem;
  }
}
