/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */

/* ── CONTACT MAIN SECTION ── */
.contact-main {
  background: #f8f9fb;
  padding: 80px 120px;
  display: flex;
  justify-content: center;
}

.contact-main__inner {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ── HEADER ── */
.contact-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.contact-header .section-label {
  margin-bottom: 14px;
}

.contact-header .section-title {
  font-size: 40px !important;
  font-weight: 800;
  color: #0b1795;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-header .section-subtitle {
  font-size: 15px;
  color: #52525b;
  font-weight: 500;
  line-height: 1.6;
}

/* ── TWO COLUMN GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: flex-start;
}

/* ── LEFT: ADDRESS INFO CARD ── */
.contact-info {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  flex-direction: row;
}

.contact-info-item__bar {
  width: 3px;
  background: #0b1795;
  border-radius: 4px;
  flex-shrink: 0;
  margin-right: 14px;
  align-self: stretch;
  min-height: 20px;
}

.contact-info-item__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info-item__title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.contact-info-item__detail {
  font-size: 13.5px;
  color: #52525b;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.contact-info-item__link {
  font-size: 13.5px;
  font-weight: 700;
  color: #0b1795;
  line-height: 1.4;
  text-decoration: none;
  margin: 0;
}

/* ── RIGHT: FORM CARD ── */
.contact-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.contact-form__title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.contact-form__desc {
  font-size: 13.5px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Form fields */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field__label {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
}

.form-field__input {
  height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-field__input:focus {
  border-color: #0b1795;
  box-shadow: 0 0 0 3px rgba(11, 23, 149, 0.08);
}

.form-field__input::placeholder {
  color: #9ca3af;
}

/* Submit button */
.contact-form__btn {
  margin-top: 8px;
  width: 100%;
  height: 52px;
  background: #0b1795;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter 0.2s;
  font-family: inherit;
}

.contact-form__btn:hover {
  filter: brightness(1.15);
}

.contact-form__btn-arrow {
  font-size: 18px;
  line-height: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .contact-main { padding-inline: 48px; }
}

@media (max-width: 768px) {
  .contact-main { padding: 48px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-header .section-title { font-size: 28px !important; }
}

/* ── CONTACT TITLE / SUBTITLE (no CSS variable dependency) ── */
.contact-main__title {
  font-size: 40px;
  font-weight: 800;
  color: #0b1795;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-main__subtitle {
  font-size: 15px;
  color: #52525b;
  font-weight: 500;
  line-height: 1.6;
}
