/* Contact 聯絡我們頁專屬樣式 */

.page-header.contact-header {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  background: #0d1a2e;
}

.page-header.contact-header .bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.9;
  filter: grayscale(100%);
}

.page-header.contact-header .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.page-header.contact-header .inner {
  position: relative;
  z-index: 1;
}

.page-header.contact-header .breadcrumb {
  color: #c4c4c4;
}

.page-header.contact-header .breadcrumb .current {
  color: rgba(255, 255, 255, 0.96);
}

.page-header.contact-header h1 {
  color: #f4f7fc;
}

.page-header.contact-header p {
  color: #c4c4c4;
  max-width: 560px;
}

.contact-section {
  width: 100%;
}

.contact-section .inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding-top: 64px;
  padding-bottom: 64px;
}

.contact-form {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.65px;
  color: var(--color-blue);
  margin: 0 0 12px;
}

.contact-form h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.88px;
  line-height: 1.1;
  color: var(--color-text);
  margin: 0 0 24px;
}

.form-row {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-bottom: 16px;
}

.form-field {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 12px;
  color: var(--color-text);
}

.form-field input,
.form-field textarea,
.form-field select {
  border: none;
  border-bottom: 1px solid rgba(26, 111, 212, 0.35);
  padding: 8px 0 10px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: transparent;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-text-dim);
}

.form-field textarea {
  resize: vertical;
  min-height: 40px;
}

.form-field select {
  appearance: none;
  cursor: pointer;
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(26, 111, 212, 0.35);
  padding: 8px 0 10px;
}

.phone-field select {
  border: none;
  padding: 0;
  width: auto;
  border-bottom: none;
  color: #1a1d25;
}

.phone-field input {
  border: none;
  padding: 0;
  flex: 1;
}

.contact-submit {
  margin-top: 6px;
  width: 100%;
  background: var(--color-blue);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.56px;
  padding: 14px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-submit:hover {
  background: var(--color-blue-dim);
}

/* Contact Info Card */

.contact-info-card {
  flex-shrink: 0;
  width: 377px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 0;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-item .icon-circle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item .icon-circle img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.contact-info-item .label {
  font-size: 13px;
  color: var(--color-text-dim);
  margin: 0 0 4px;
}

.contact-info-item .value {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

.contact-info-item .value.en {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 4px;
}

@media (max-width: 960px) {
  .contact-section .inner { flex-direction: column; }
  .contact-info-card { width: 100%; padding-top: 0; }
  .form-row { flex-direction: column; gap: 16px; }
}
