.taa-form-wrapper {
  direction: ltr;
  text-align: left;
  max-width: 680px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.taa-form-hero {
  position: relative;
  min-height: 30vh;
  background-color: #032f51;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 100px 20px 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.taa-form-hero--has-image:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 47, 81, 0.55);
}

.taa-form-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
      display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

.taa-form-hero-title {
  margin: 0 0 16px;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.taa-form-hero-description {
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  text-align: center;
  color: #e6eef6;
}

.taa-form-hero-description p {
  margin: 0 0 12px;
  display: none !important;
}

.taa-form-hero-description p:last-child {
  margin-bottom: 0;
}

.taa-form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 24px 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.taa-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.taa-form-field {
  margin: 0 0 16px;
}

.taa-form-field--full {
  grid-column: 1 / -1;
}

.taa-form-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #222;
}

.taa-field-optional {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 400;
  color: #777;
}

.taa-form-input,
.taa-form-textarea {
  width: 100%;
  padding: 12px 24px;
  border: 1px solid #f2f2f2;
  outline: 0;
  font-family: "Hind", sans-serif;
  font-size: 14px;
  color: #898989;
  box-sizing: border-box;
  background-color: #f6f6f6;
  border-radius: 4px;
  transition: border-color 0.2s ease-out, background-color 0.2s ease-out;
  -webkit-appearance: none;
}

.taa-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.taa-form-input:focus,
.taa-form-textarea:focus {
  border-color: #e0dddd;
  background-color: #fff;
}

/* File Upload */
.taa-upload-hint {
  font-weight: 400;
  font-size: 12px;
  color: #999;
  margin-right: 6px;
}

.taa-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 22px 16px;
  border: 2px dashed #c8c8d8;
  border-radius: 6px;
  background: #fafafe;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  text-align: center;
  position: relative;
}

.taa-upload-label:hover {
  border-color: #0077b6;
  background: rgba(0, 119, 182, 0.04);
}

.taa-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.taa-upload-icon {
  font-size: 28px;
  line-height: 1;
}

.taa-upload-text {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.taa-upload-sub {
  font-size: 12px;
  color: #888;
}

.taa-upload-selected {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #555;
  word-break: break-all;
}

.taa-form-actions {
  margin: 10px 0 0;
}

.taa-form-message {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 4px;
  background: #f6f6f6;
  color: #444;
  border-left: 4px solid #c3512f;
}

.taa-form-message-success {
  border-left-color: #2c7a4b;
}

.taa-form-message-error {
  border-left-color: #c3512f;
}

@media (max-width: 768px) {
  .taa-form-hero {
    min-height: 40vh;
    padding: 70px 16px 50px;
  }

  .taa-form-hero-title {
    font-size: 34px;
  }

  .taa-form-hero-description {
    font-size: 16px;
  }

  .taa-form {
    padding: 20px;
  }

  .taa-form-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .taa-form-field--full {
    grid-column: auto;
  }
}

/* ── Content Sections ───────────────────────────────────────────────── */

.taa-content-wrap {
  padding: 56px 24px 0;
  max-width: 1060px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Intro lead paragraph */
.taa-intro-block {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
  padding: 32px 36px;
  background: #f5f8fb;
  border-left: 4px solid #c9a227;
  border-radius: 4px;
  text-align: left;
}

.taa-intro-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #2c3e50;
}

.taa-intro-lead p {
  margin: 0 0 12px;
}

.taa-intro-lead p:last-child {
  margin-bottom: 0;
}

/* Cards grid */
.taa-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .taa-cards-grid {
    grid-template-columns: 1fr;
  }
}

.taa-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 8px;
  padding: 32px 28px 28px;
  box-shadow: 0 4px 20px rgba(3, 47, 81, 0.06);
  display: flex;
  flex-direction: column;
}

.taa-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.taa-card--mission .taa-card-icon-wrap {
  background: rgba(3, 47, 81, 0.08);
  color: #032f51;
}

.taa-card--invitation .taa-card-icon-wrap {
  background: rgba(201, 162, 39, 0.12);
  color: #c9a227;
}

.taa-card-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.taa-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #032f51;
  margin: 0 0 14px;
  line-height: 1.3;
}

.taa-card-body {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5568;
  margin: 0 0 14px;
  flex: 1;
}

.taa-card-body p {
  margin: 0 0 12px;
}

.taa-card-body p:last-child {
  margin-bottom: 0;
}

/* Bullet list inside card */
.taa-bullet-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
}

.taa-bullet-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.5;
}

.taa-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #c9a227;
  border-radius: 50%;
}

.taa-card-note {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  margin: 8px 0 0;
  line-height: 1.6;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

.taa-card-note p {
  margin: 0 0 10px;
}

.taa-card-note p:last-child {
  margin-bottom: 0;
}

/* How to Reach Us block */
.taa-reach-block {
  background: linear-gradient(135deg, #032f51 0%, #05467a 100%);
  border-radius: 10px;
  padding: 40px 44px;
  margin-bottom: 44px;
  color: #fff;
}

@media (max-width: 768px) {
  .taa-reach-block {
    padding: 28px 20px;
  }
}

.taa-reach-inner {
  max-width: 820px;
}

.taa-reach-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.taa-reach-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.taa-reach-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: #c9a227;
}

.taa-reach-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.taa-reach-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 22px;
}

.taa-reach-text p {
  margin: 0 0 12px;
}

.taa-reach-text p:last-child {
  margin-bottom: 0;
}

/* Checklist */
.taa-checklist {
  display: none !important;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}

@media (max-width: 600px) {
  .taa-checklist {
    grid-template-columns: 1fr;
  }
}

.taa-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.taa-check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(201, 162, 39, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.taa-check-icon svg {
  width: 10px;
  height: 10px;
  stroke: #c9a227;
}

/* Divider before form */
.taa-form-divider {
  display: none !important;
  text-align: center;
  position: relative;
  margin-bottom: 8px;
}

.taa-form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e8ecf0;
}

.taa-form-divider span {
  position: relative;
  background: #fff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #032f51;
}

/* ── Nav menu ────────────────────────────────────────────────────────── */

.mkdf-main-menu > ul > li.taa-form-link > a {
  padding: 0;
}

.mkdf-main-menu > ul > li.taa-form-link > a:before,
.mkdf-main-menu > ul > li.taa-form-link > a:after {
  display: none !important;
}

.mkdf-main-menu > ul > li.taa-form-link > a .mkdf-btn {
  margin-left: 6px;
}
