/* [project]/src/app/contact/contact.css [app-client] (css) */
.contact-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  min-height: 90vh;
  padding: 4rem 2rem;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

.contact-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-section {
  background: #fff;
  border: 4px solid;
  border-image: linear-gradient(45deg, #fdd835, #43a047) 1;
  border-radius: 20px;
  padding: 3rem;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.contact-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.contact-section h2 {
  color: #004aad;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}

.contact-section h2:after {
  content: "";
  background: linear-gradient(90deg, #fdd835, #43a047);
  border-radius: 2px;
  width: 80px;
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-intro {
  text-align: center;
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  color: #333;
  margin-bottom: .5rem;
  font-size: .95rem;
  font-weight: 600;
  display: block;
}

.form-group input, .form-group select, .form-group textarea {
  color: #333;
  background: #fff;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  width: 100%;
  padding: .75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  transition: border-color .3s, box-shadow .3s;
}

.form-group select {
  color: #333 !important;
  background-color: #fff !important;
}

.form-group select option {
  color: #333;
  background-color: #fff;
  font-weight: 400;
}

.form-group select option:checked {
  color: #fff;
  background-color: #004aad;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  color: #333;
  border-color: #004aad;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 74, 173, .1);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: #999;
  font-weight: 400;
}

.form-group textarea {
  resize: vertical;
  color: #333;
  min-height: 120px;
}

.submit-button {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #004aad, #1c2253);
  border: none;
  border-radius: 8px;
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all .3s;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 74, 173, .3);
}

.submit-button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.success-message {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #43a047, #4caf50);
  border-radius: 8px;
  margin-top: 1rem;
  padding: 1rem;
  font-weight: 500;
}

.error-message {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #f44336, #d32f2f);
  border-radius: 8px;
  margin-top: 1rem;
  padding: 1rem;
  font-weight: 500;
}

.contact-info {
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  margin-top: 2rem;
  padding: 2rem;
}

.contact-info h3 {
  color: #004aad;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-details {
  gap: 1rem;
  display: grid;
}

.contact-item {
  border-bottom: 1px solid #e1e5e9;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  display: flex;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item strong {
  color: #333;
  font-weight: 600;
}

.contact-item a {
  color: #004aad;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
}

.contact-item a:hover {
  color: #1c2253;
  text-decoration: underline;
}

.contact-item span {
  color: #666;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  animation: .8s ease-out forwards fadeInUp;
}

@media (max-width: 768px) {
  .contact-page {
    padding: 2rem 1rem;
  }

  .contact-section {
    padding: 2rem;
  }

  .contact-section h2 {
    font-size: 1.6rem;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 1.5rem;
  }

  .contact-section h2 {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=src_app_contact_contact_f3cf1986.css.map*/