/* ================================================= */
/* CONTACT PAGE ONLY */
/* File: css/contact.css */
/* ================================================= */

/* HERO */
.contact-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 120px 20px;

  background: linear-gradient(
    120deg,
    #1e3a8a,
    #3b82f6,
    #9333ea
  );
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 900;
}

.contact-hero p {
  margin-top: 15px;
  font-size: 1.15rem;
  opacity: 0.9;
}

/* ================================================= */
/* CONTACT SECTION */
/* ================================================= */

.contact-section {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ================================================= */
/* CONTACT INFO */
/* ================================================= */

.contact-info h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #475569;
  margin-bottom: 30px;
  max-width: 420px;
}

/* INFO ITEMS */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.info-icon {
  font-size: 22px;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 4px;
}

.info-item a {
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.info-item a:hover {
  color: #3b82f6;
  text-decoration: underline;
}

/* ================================================= */
/* CONTACT FORM */
/* ================================================= */

.contact-form {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
  font-family: inherit;
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.btn-full {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* FORM NOTE */
.form-note {
  margin-top: 15px;
  font-size: 13px;
  text-align: center;
  color: #64748b;
}

/* ================================================= */
/* MOBILE */
/* ================================================= */

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero {
    padding: 90px 20px;
  }

  .contact-hero h1 {
    font-size: 2.1rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-info,
  .contact-form {
    text-align: center;
  }

  .contact-subtitle {
    margin-inline: auto;
  }

  .info-item {
    justify-content: center;
  }
}
