/* ==========================================================
   CONTACT PAGE – Layout & Styling (Asiatic Solutions)
========================================================== */

.as-contact-page {
  background: #f5f7fb;
}

/* Wrapper */
.as-contact-hero {
  padding: 60px 24px 72px;
}

.as-contact-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* Header / Intro */

.as-contact-header {
  margin-bottom: 32px;
}

.as-contact-label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(0, 118, 255, 0.08);
  color: #005ad6;
  margin-bottom: 14px;
}

.as-contact-header h1 {
  font-size: 32px;
  margin: 0 0 10px;
  color: #020617;
}

.as-contact-intro {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 640px;
}

.as-contact-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 14px;
  color: #111827;
}

.as-contact-highlights li::before {
  content: "•";
  margin-right: 6px;
  color: #2563eb;
}

/* Main two-column layout */

.as-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 24px;
}

/* Left side */

.as-contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.as-contact-card,
.as-contact-cta-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px 22px 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.as-contact-card h2,
.as-contact-cta-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #020617;
}

.as-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

.as-contact-list li {
  margin-bottom: 6px;
}

.as-contact-list a {
  color: #1d4ed8;
  text-decoration: none;
}

.as-contact-list a:hover {
  text-decoration: underline;
}

.as-contact-cta-card p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #4b5563;
}

.as-contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.as-contact-cta-note {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}

/* Right side – form */

.as-contact-form-wrap {
  display: flex;
  align-items: stretch;
}

.as-contact-form-card {
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 24px 22px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.as-contact-form-card h2 {
  font-size: 20px;
  margin: 0 0 6px;
  color: #020617;
}

.as-contact-form-subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  color: #6b7280;
}

/* Form fields */

.as-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.as-contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.as-contact-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.as-contact-field label {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

.as-contact-field input,
.as-contact-field select,
.as-contact-field textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  padding: 9px 11px;
  font-size: 14px;
  outline: none;
  background: #f9fafb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.as-contact-field textarea {
  resize: vertical;
}

.as-contact-field input:focus,
.as-contact-field select:focus,
.as-contact-field textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
  background: #ffffff;
}

/* Submit button (reusing .as-btn styles from home) */

.as-contact-submit {
  margin-top: 6px;
}

.as-contact-privacy {
  margin: 6px 0 0;
  font-size: 12px;
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 991px) {
  .as-contact-hero {
    padding: 48px 16px 60px;
  }

  .as-contact-layout {
    grid-template-columns: 1fr;
  }

  .as-contact-form-card {
    padding: 22px 18px 20px;
  }
}

@media (max-width: 640px) {
  .as-contact-form-row {
    grid-template-columns: 1fr;
  }

  .as-contact-header h1 {
    font-size: 26px;
  }

  .as-contact-intro {
    font-size: 15px;
  }
}
