.page-contact {
  --pc-orange: var(--color-primary);
  --pc-blue: var(--color-secondary);
  --pc-dark: var(--color-secondary-deep);
  --pc-green: var(--color-accent);
  --pc-radius-xl: 32px;
  --pc-radius-lg: 24px;
  --pc-radius-md: 16px;
  display: block;
  min-height: 60vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
}

.page-contact *,
.page-contact *::before,
.page-contact *::after {
  box-sizing: border-box;
}

.page-contact .pc-wrap {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-contact .pc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 26px;
  font-size: 13px;
  color: var(--color-text-light);
}

.page-contact .pc-breadcrumb a {
  color: inherit;
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s var(--ease);
}

.page-contact .pc-breadcrumb a:hover {
  color: var(--pc-orange);
}

.page-contact .pc-br-sep {
  opacity: .4;
}

.page-contact .pc-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 30px;
}

.page-contact .pc-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, .18) 0%, transparent 64%);
  pointer-events: none;
}

.page-contact .pc-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pc-orange) 0%, var(--pc-green) 72%, transparent 100%);
}

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

.page-contact .pc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3em;
  color: var(--pc-orange);
  text-transform: uppercase;
}

.page-contact .pc-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--pc-green);
}

.page-contact .pc-hero .page-title {
  max-width: 820px;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--pc-blue);
  font-weight: 900;
}

.page-contact .pc-intro {
  position: relative;
  max-width: 720px;
  margin: 0;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  background: linear-gradient(90deg, rgba(255, 107, 0, .08) 0%, rgba(255, 107, 0, 0) 100%);
  border-left: 4px solid var(--pc-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.page-contact .pc-contact-grid {
  display: grid;
  gap: 26px;
  padding-top: 36px;
  padding-bottom: 40px;
}

.page-contact .pc-channel-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-contact .pc-channel {
  position: relative;
  min-width: 0;
  padding: 24px 22px 20px 24px;
  background: var(--color-white);
  border: 1px solid rgba(11, 27, 61, .06);
  border-radius: var(--pc-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.page-contact .pc-channel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: var(--pc-orange);
}

.page-contact .pc-channel:hover,
.page-contact .pc-channel:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.page-contact .pc-channel-tel::before {
  background: var(--pc-orange);
}

.page-contact .pc-channel-mail::before {
  background: var(--pc-blue);
}

.page-contact .pc-channel-addr::before {
  background: var(--pc-green);
}

.page-contact .pc-channel-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: rgba(11, 27, 61, .08);
}

.page-contact .pc-channel-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--color-text-light);
  text-transform: uppercase;
}

.page-contact .pc-channel-value {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--pc-blue);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.page-contact a.pc-channel-value:hover {
  color: var(--pc-orange);
}

.page-contact .pc-channel-addr .pc-channel-value {
  font-size: 19px;
  line-height: 1.5;
}

.page-contact .pc-channel-desc {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-light);
}

.page-contact .pc-map-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--pc-radius-xl);
  background: linear-gradient(145deg, #111F45, var(--pc-blue) 92%);
  box-shadow: var(--shadow-lg);
}

.page-contact .pc-map-panel::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(182, 255, 0, .1);
  pointer-events: none;
}

.page-contact .pc-map-tag {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.page-contact .pc-section-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--pc-blue);
}

.page-contact .pc-section-title-light {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.page-contact .pc-map-canvas {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(7, 15, 36, .4);
}

.page-contact .pc-map-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-contact .pc-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .36));
}

.page-contact .pc-map-note {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
}

.page-contact .pc-support {
  position: relative;
  margin-top: 16px;
  background: linear-gradient(115deg, var(--color-card-tint) 0%, var(--color-bg) 100%);
  border-top: 1px solid rgba(11, 27, 61, .06);
  border-bottom: 1px solid rgba(11, 27, 61, .06);
}

.page-contact .pc-support-grid {
  display: grid;
  gap: 30px;
  padding: 48px 20px;
}

.page-contact .pc-support-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.page-contact .pc-support-content p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text);
}

.page-contact .pc-support-mail {
  color: var(--pc-orange);
  font-weight: 600;
  text-underline-offset: 3px;
}

.page-contact .pc-hours-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
}

.page-contact .pc-hour-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid rgba(11, 27, 61, .08);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-blue);
}

.page-contact .pc-hour-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pc-green);
  box-shadow: 0 0 0 3px rgba(182, 255, 0, .18);
}

.page-contact .pc-support-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.page-contact .pc-support-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}

.page-contact .pc-support-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pc-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .12);
}

.page-contact .pc-support-figure {
  margin: 0;
}

.page-contact .pc-support-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--pc-radius-lg);
  box-shadow: var(--shadow-sm);
}

.page-contact .pc-support-figure figcaption {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: var(--color-text-light);
}

.page-contact .pc-feedback {
  padding: 52px 0;
}

.page-contact .pc-feedback-inner {
  max-width: 900px;
}

.page-contact .pc-feedback-intro {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.page-contact .pc-form {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid rgba(11, 27, 61, .06);
  border-radius: var(--pc-radius-xl);
  box-shadow: var(--shadow-lg);
}

.page-contact .pc-form-grid {
  display: grid;
  gap: 18px;
}

.page-contact .pc-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.page-contact .pc-field > span {
  font-size: 14px;
  font-weight: 600;
  color: var(--pc-blue);
}

.page-contact .pc-field input,
.page-contact .pc-field select,
.page-contact .pc-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid rgba(11, 27, 61, .15);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  appearance: none;
}

.page-contact .pc-field textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact .pc-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-text-light) 50%),
    linear-gradient(135deg, var(--color-text-light) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer;
}

.page-contact .pc-field input:focus,
.page-contact .pc-field select:focus,
.page-contact .pc-field textarea:focus {
  outline: none;
  border-color: var(--pc-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, .14);
}

.page-contact .pc-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-contact .pc-form-tip {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.page-contact .pc-form-tip a {
  color: var(--pc-orange);
  font-weight: 600;
  text-underline-offset: 3px;
}

.page-contact .pc-bottom-note {
  padding-bottom: 56px;
}

.page-contact .pc-bottom-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--color-white);
  border: 1px dashed rgba(11, 27, 61, .18);
  border-radius: var(--pc-radius-lg);
  box-shadow: var(--shadow-sm);
}

.page-contact .pc-bottom-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
}

.page-contact .pc-bottom-card a {
  color: var(--pc-orange);
  font-weight: 600;
  text-underline-offset: 3px;
}

.page-contact .pc-bottom-icon {
  display: inline-block;
  flex: none;
  font-size: 18px;
  color: var(--pc-green);
}

@media (min-width: 992px) {
  .page-contact .pc-hero {
    padding: 64px 0 44px;
  }

  .page-contact .pc-intro {
    max-width: 620px;
  }

  .page-contact .pc-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .page-contact .pc-channel-list {
    gap: 16px;
  }

  .page-contact .pc-channel {
    padding: 28px 26px 24px 28px;
  }

  .page-contact .pc-channel-value {
    font-size: 28px;
  }

  .page-contact .pc-channel-addr .pc-channel-value {
    font-size: 20px;
  }

  .page-contact .pc-map-panel {
    padding: 30px;
  }

  .page-contact .pc-section-title {
    font-size: 32px;
  }

  .page-contact .pc-support-grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 48px;
    padding: 68px 20px;
  }

  .page-contact .pc-feedback {
    padding: 72px 0;
  }

  .page-contact .pc-form {
    padding: 34px;
  }

  .page-contact .pc-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .page-contact .pc-field-full {
    grid-column: 1 / -1;
  }
}
