/* Contact form modern style */
.contact-form-wrapper {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 rgba(30, 42, 80, 0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 420px;
  margin: 2rem auto;
  font-family: 'Inter', 'Roboto', Arial, sans-serif;
}
.contact-form-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2746;
  margin-bottom: 2rem;
}
.contact-form .form-group {
  margin-bottom: 1.3rem;
}
.contact-form label {
  font-weight: 600;
  color: #1a2746;
  margin-bottom: 0.5rem;
  display: block;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1.1rem 1rem;
  border: 1.5px solid #e3e7f0;
  border-radius: 14px;
  background: #f8fafc;
  font-size: 1.08rem;
  color: #1a2746;
  font-family: inherit;
  margin-top: 0.2rem;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border: 1.5px solid #2563eb;
  box-shadow: 0 0 0 2px #eaf0fa;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b0b6c3;
  opacity: 1;
}
.contact-form select {
  appearance: none;
  background: #f8fafc url('data:image/svg+xml;utf8,<svg fill="%231a2746" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 1rem center/1.2em auto;
}
.contact-form textarea {
  min-height: 120px;
}
.submit-btn {
  width: 100%;
  background: #1746a2;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 600;
  border: none;
  border-radius: 16px;
  padding: 1.1rem 0;
  margin-top: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.submit-btn:hover {
  background: #2563eb;
  box-shadow: 0 2px 12px 0 rgba(30, 42, 80, 0.10);
}
.btn-icon {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M2.01 21L23 12 2.01 3 2 10l15 2-15 2z"/></svg>') no-repeat center/contain;
}
@media (max-width: 600px) {
  .contact-form-wrapper {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
  }
}
