/* CONTACT SECTION */
.contact {
  max-width: 1100px;
  margin: 80px auto;
  padding: 40px 20px;
}

.contact h1 {
  text-align: center;
  font-size: 36px;
  color: #0f4c75;
  margin-bottom: 10px;
}

.contact-subtitle {
  text-align: center;
  color: #475569;
  font-size: 16px;
  margin-bottom: 50px;
}

/* LAYOUT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CONTACT INFO */
.contact-info {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 84px;
  border-radius: 18px;
}

.contact-info h2 {
  color: #1e293b;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 12px;
  color: #334155;
  font-size: 15px;
}

.contact-info strong {
  color: #0f4c75;
}

.info-note {
  margin-top: 20px;
  font-style: italic;
  color: #475569;
}

/* FORM */
.contact-form {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0f4c75;
}

/* BUTTON */
.contact-form button {
  background: linear-gradient(90deg, #0f4c75, #0077b6);
  color: white;
  padding: 14px;
  border: none;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* FADE IN */
.fade-in {
  animation: fadeIn 0.9s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact h1 {
    font-size: 28px;
  }
}
