/* ================================
   Contact Form Widget
   Namespace: hello-contact-
================================ */

.hello-contact-section {
  padding: 6rem 1.5rem;
  background: #f9fafb;
}

.hello-contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hello-contact-grid {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

/* --------------------------------
   Contact Info
-------------------------------- */

.hello-contact-info {
  position: sticky;
  top: 6rem;
}

.hello-contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #040533;
  margin-bottom: 1.5rem;
}

.hello-contact-info p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hello-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hello-contact-info li {
  margin-bottom: 1rem;
  color: #374151;
  line-height: 1.6;
}

.hello-contact-info strong {
  color: #040533;
}

/* --------------------------------
   Form Wrapper
-------------------------------- */

.hello-contact-form {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .hello-contact-form {
    padding: 2rem 1.5rem;
  }
}

/* --------------------------------
   Form Fields
-------------------------------- */

.hello-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hello-contact-form .grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hello-contact-form .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hello-contact-form input,
.hello-contact-form select,
.hello-contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 0.95rem;
  color: #111827;
  transition: all 0.2s ease;
}

.hello-contact-form textarea {
  resize: none;
}

.hello-contact-form input::placeholder,
.hello-contact-form textarea::placeholder {
  color: #9ca3af;
}

.hello-contact-form input:focus,
.hello-contact-form select:focus,
.hello-contact-form textarea:focus {
  outline: none;
  border-color: #14167e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(20, 22, 126, 0.15);
}

/* --------------------------------
   Submit Button
-------------------------------- */

.hello-contact-form button {
  align-self: flex-start;
  padding: 0.9rem 2.25rem;
  border-radius: 0.75rem;
  background: #14167e;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hello-contact-form button:hover {
  background: #0f1164;
  transform: translateY(-2px);
}

.hello-contact-form button:active {
  transform: translateY(0);
}

/* --------------------------------
   Form Response
-------------------------------- */

.hello-form-response {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.hello-form-response.success {
  color: #059669;
}

.hello-form-response.error {
  color: #dc2626;
}
