/* JLC Contact Us styles extracted from the approved Contact Us design. */
:root {
        --ink: #11161b;
        --steel: #7d8a92;
        --steel-deep: #303942;
        --paper: #eceff0;
        --metal-bright: #f9fbfc;
        --navy: #1d252c;
        --white: #ffffff;
        --muted: #5d666d;
        --line: rgba(17, 22, 27, 0.14);
        --brushed: linear-gradient(105deg, #f7f9fa 0%, #bac4ca 28%, #eef2f4 48%, #7f8c94 76%, #dce2e5 100%);
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: "IBM Plex Sans", Arial, sans-serif;
        line-height: 1.55;
        color: var(--ink);
        background:
          linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(188, 197, 202, 0.2), rgba(255, 255, 255, 0.64)),
          linear-gradient(180deg, var(--paper), #f8fafb);
        overflow-x: hidden;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      img {
        display: block;
        max-width: 100%;
      }

      button,
input,
select,
textarea {
        font: inherit;
      }

      .container {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
      }

      .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        padding: 11px 18px;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
      }

      .btn:hover {
        transform: translateY(-2px);
      }

      .btn-primary {
        border-color: rgba(255, 255, 255, 0.18);
        background: linear-gradient(135deg, #07090b, #252b30);
        color: var(--white);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
      }

      .btn-primary:hover {
        border-color: rgba(255, 255, 255, 0.34);
        background: linear-gradient(135deg, #151a1f, #343d44);
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
      }

      .btn-secondary {
        border-color: rgba(255, 255, 255, 0.68);
        color: var(--ink);
        background: rgba(255, 255, 255, 0.9);
      }

      .btn-secondary:hover {
        border-color: var(--white);
        background: var(--white);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
      }h1,
h2,
h3,
p {
        margin-top: 0;
      }

      h1,
h2,
h3 {
        font-family: "Archivo", sans-serif;
        line-height: 1.02;
      }

      .contact-hero {
        min-height: 650px;
        display: grid;
        place-items: center;
        color: var(--white);
        text-align: center;
        background:
          linear-gradient(90deg, rgba(6, 9, 12, 0.76), rgba(6, 9, 12, 0.42), rgba(6, 9, 12, 0.78)),
          url("/skin/static/images/jlc/contact-hero-aluminum-molds.jpg") center / cover no-repeat;
      }

      .hero-inner {
        max-width: 900px;
        padding: 126px 0 70px;
      }

      .eyebrow {
        color: rgba(255, 255, 255, 0.68);
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
      }

      h1 {
        margin: 14px 0 18px;
        font-size: 72px;
      }

      .hero-copy {
        max-width: 660px;
        margin: 0 auto 28px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 18px;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
      }

      .section {
        padding: 86px 0;
      }

      .contact-card-section {
        padding: 64px 0 0;
      }

      .contact-cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border: 1px solid var(--line);
        background: var(--white);
      }

      .contact-card {
        min-height: 220px;
        display: grid;
        align-content: end;
        gap: 14px;
        border-right: 1px solid var(--line);
        padding: 24px;
        transition: background 0.22s ease, transform 0.22s ease;
      }

      .contact-card:last-child {
        border-right: 0;
      }

      .contact-card:hover {
        background: #f5f7f8;
        transform: translateY(-3px);
      }

      .contact-icon {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--brushed);
        color: var(--ink);
      }

      .contact-icon svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
      }

      .contact-card small {
        color: var(--muted);
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
      }

      .contact-card strong {
        display: block;
        font-family: "Archivo", sans-serif;
        font-size: 28px;
        line-height: 1;
        overflow-wrap: anywhere;
      }

      .contact-card p,
.contact-card a {
        margin: 0;
        color: var(--muted);
      }

      .contact-layout {
        display: grid;
        grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
        gap: 26px;
        align-items: stretch;
      }

      .contact-info {
        display: grid;
        gap: 14px;
      }

      .info-panel {
        min-height: 190px;
        display: grid;
        align-content: end;
        border: 1px solid var(--line);
        padding: 24px;
        background: rgba(255, 255, 255, 0.74);
      }

      .info-panel.dark {
        color: var(--white);
        background:
          linear-gradient(135deg, rgba(9, 13, 16, 0.86), rgba(9, 13, 16, 0.62)),
          url("/skin/static/images/jlc/contact-hero-aluminum-molds.jpg") center / cover no-repeat;
      }

      .info-panel small,
.form-kicker,
.route-step small {
        color: var(--muted);
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
      }

      .info-panel.dark small {
        color: rgba(255, 255, 255, 0.58);
      }

      .info-panel strong {
        display: block;
        margin-top: 12px;
        font-family: "Archivo", sans-serif;
        font-size: 30px;
        line-height: 1;
        overflow-wrap: anywhere;
      }

      .info-panel p,
.info-panel a {
        margin: 10px 0 0;
        color: var(--muted);
      }

      .info-panel.dark p,
.info-panel.dark a {
        color: rgba(255, 255, 255, 0.72);
      }

      .contact-form-panel {
        border: 1px solid var(--line);
        background: var(--white);
      }

      .form-head {
        display: grid;
        gap: 10px;
        padding: 28px;
        border-bottom: 1px solid var(--line);
      }

      .form-head h2 {
        margin-bottom: 0;
        font-size: 44px;
      }

      .form-head p {
        max-width: 620px;
        margin-bottom: 0;
        color: var(--muted);
      }

      .contact-form {
        display: grid;
        gap: 16px;
        padding: 28px;
      }

      .form-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }

      .form-field {
        width: 100%;
        min-height: 54px;
        border: 1px solid var(--line);
        padding: 14px 16px;
        background: #f6f8f9;
        color: var(--ink);
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      }

      .form-field::placeholder {
        color: rgba(42, 48, 54, 0.58);
      }

      .form-field:focus {
        border-color: rgba(17, 22, 27, 0.42);
        outline: 2px solid rgba(125, 138, 146, 0.22);
        outline-offset: 0;
        background: var(--white);
      }

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

      .form-foot {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 16px;
        align-items: center;
      }

      .form-note {
        margin-bottom: 0;
        color: var(--muted);
        font-size: 13px;
      }

      .form-success {
        display: none;
        color: #335c39;
        font-weight: 700;
      }

      .form-success.show {
        display: block;
      }

      .route-band {
        color: var(--white);
        background: #0e1317;
      }

      .map-section {
        padding-top: 0;
      }

      .map-board {
        display: grid;
        grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
        border: 1px solid var(--line);
        background: var(--white);
      }

      .map-copy {
        display: grid;
        align-content: end;
        gap: 12px;
        padding: 28px;
      }

      .map-copy h2 {
        margin-bottom: 0;
        font-size: 44px;
      }

      .map-copy p {
        margin-bottom: 0;
        color: var(--muted);
      }

      .map-frame {
        min-height: 430px;
        border-left: 1px solid var(--line);
        background: #d8dde0;
      }

      .map-frame iframe {
        width: 100%;
        height: 100%;
        min-height: 430px;
        display: block;
        border: 0;
        filter: grayscale(0.18) contrast(1.04);
      }

      .section-head {
        max-width: 760px;
        margin-bottom: 32px;
      }

      .section-label {
        margin-bottom: 10px;
        color: var(--muted);
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
      }

      .route-band .section-label {
        color: rgba(255, 255, 255, 0.5);
      }

      .section-title {
        margin-bottom: 12px;
        font-size: 48px;
      }

      .section-head p {
        color: var(--muted);
        font-size: 17px;
      }

      .route-band .section-head p {
        color: rgba(255, 255, 255, 0.66);
      }

      .route-steps {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border: 1px solid rgba(255, 255, 255, 0.14);
      }

      .route-step {
        min-height: 260px;
        display: grid;
        align-content: end;
        gap: 12px;
        border-right: 1px solid rgba(255, 255, 255, 0.14);
        padding: 24px;
      }

      .route-step:last-child {
        border-right: 0;
      }

      .route-step small {
        color: rgba(255, 255, 255, 0.5);
      }

      .route-step h3 {
        margin-bottom: 0;
        color: var(--white);
        font-size: 30px;
      }

      .route-step p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.66);
      }

      .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.64s ease, transform 0.64s ease;
      }

      .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      @media (max-width: 980px) {

        h1 {
          font-size: 54px;
        }

        .contact-layout,
.contact-cards,
.map-board {
          grid-template-columns: 1fr;
        }

        .contact-card {
          border-right: 0;
          border-bottom: 1px solid var(--line);
        }

        .contact-card:last-child {
          border-bottom: 0;
        }

        .map-frame {
          border-top: 1px solid var(--line);
          border-left: 0;
        }
      }

      @media (max-width: 680px) {
        .container {
          width: min(100% - 28px, 1180px);
        }

        .contact-hero {
          min-height: 600px;
        }

        .hero-inner {
          padding: 112px 0 56px;
        }

        h1 {
          font-size: 42px;
        }

        .hero-copy,
.section-head p {
          font-size: 16px;
        }

        .section {
          padding: 58px 0;
        }

        .contact-card-section {
          padding-top: 42px;
        }

        .form-row,
.form-foot,
.route-steps {
          grid-template-columns: 1fr;
        }

        .form-head,
.contact-form,
.contact-card,
.info-panel,
.map-copy,
.route-step {
          padding: 22px;
        }

        .form-head h2,
.map-copy h2,
.section-title {
          font-size: 34px;
        }

        .map-frame,
.map-frame iframe {
          min-height: 340px;
        }

        .route-step {
          min-height: 190px;
          border-right: 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        }

        .route-step:last-child {
          border-bottom: 0;
        }
      }
      /* End unified homepage navigation */
