/* ---- Contact Hero ---- */
.contact-hero {
  text-align: center;
  padding: 80px 20px 50px;
  background: #f0f7ff;
  animation: fadeIn 1s ease-in;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #555;
}

/* ---- Contact Info ---- */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  width: 260px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.info-card i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 15px;
}

.info-card:hover {
  transform: translateY(-5px);
}

/* ---- Contact Form ---- */
.contact-form {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-form form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #084298;
}

/* ---- Animations ---- */
@keyframes fadeIn {
  0% {opacity:0; transform: translateY(-20px);}
  100% {opacity:1; transform: translateY(0);}
}
