/* ==============================================================================
   VINASTECH DESIGN SYSTEM — CONTACT PAGE LAYOUT (CONCEPT A+ MASTER REDESIGN)
   ============================================================================== */

@import url('vst-tokens.css');

.vst-contact-page {
  background-color: var(--vst-white);
  color: var(--vst-black);
  font-family: var(--font-body);
}

.vst-contact-hero {
  padding-block: clamp(56px, 7vw, 110px);
  background-color: var(--vst-off-white);
  border-bottom: 1px solid var(--vst-line);
}

.vst-contact-details {
  padding-block: clamp(56px, 7vw, 110px);
}

.vst-contact-row {
  display: grid;
  grid-template-columns: 80px 1.5fr 2.5fr;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-top: 1px solid var(--vst-line);
  transition: background-color 0.25s var(--transition-smooth);
}

.vst-contact-row:last-child {
  border-bottom: 1px solid var(--vst-line);
}

.vst-contact-row:hover {
  background-color: var(--vst-off-white);
}

.vst-contact-index {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--vst-blue);
}

.vst-contact-label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--vst-black);
}

.vst-contact-value {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--vst-black);
}

.vst-contact-value a {
  color: var(--vst-black);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s var(--transition-smooth);
}

.vst-contact-value a:hover {
  color: var(--vst-blue);
  text-decoration: underline;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .vst-contact-row {
    grid-template-columns: 50px 1fr;
    gap: 0.75rem;
    padding: 1.75rem 0;
  }
  .vst-contact-value {
    grid-column: span 2;
    margin-top: 0.5rem;
  }
}
