﻿
    .channel-card {
      background: #fff;
      border: 1px solid var(--line-2);
      border-radius: 20px;
      padding: 28px;
      height: 100%;
      transition: all 0.2s ease;
      position: relative;
      overflow: hidden;
    }

    .channel-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-orange);
    }

    .channel-card .ch-ic {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-size: 1.6rem;
      margin-bottom: 18px;
    }

    .channel-card.c-orange .ch-ic {
      background: var(--brand-orange);
      color: #fff;
    }

    .channel-card.c-lime .ch-ic {
      background: var(--brand-lime);
      color: #3a4112;
    }

    .channel-card.c-gold .ch-ic {
      background: var(--brand-gold);
      color: #5a4400;
    }

    .channel-card h6 {
      font-weight: 600;
      margin-bottom: 6px;
    }

    .channel-card .ch-meta {
      color: var(--text-2);
      font-size: 0.9rem;
      margin-bottom: 14px;
    }

    .channel-card .ch-link {
      font-weight: 500;
      color: var(--ink);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .channel-card .ch-link:hover {
      color: var(--brand-orange);
    }

    .channel-card.c-orange .ch-strip {
      background: var(--brand-orange);
    }

    .channel-card.c-lime .ch-strip {
      background: var(--brand-lime);
    }

    .channel-card.c-gold .ch-strip {
      background: var(--brand-gold);
    }

    .ch-strip {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 5px;
    }

    /* ===== FORM ===== */
    .form-wrap {
      background: var(--paper-cream);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 40px;
    }

    .form-wrap label {
      font-weight: 600;
      color: var(--ink);
      font-size: 0.85rem;
      letter-spacing: 0.02em;
      margin-bottom: 8px;
    }

    .form-wrap label .req {
      color: var(--brand-red-dot);
    }

    .form-wrap .form-control,
    .form-wrap .form-select {
      border-radius: 12px;
      border: 1px solid var(--line);
      padding: 0.78rem 1rem;
      background: #fff;
      font-size: 0.95rem;
      color: var(--ink);
      transition: 0.15s;
    }

    .form-wrap .form-control:focus,
    .form-wrap .form-select:focus {
      border-color: var(--brand-orange);
      box-shadow: 0 0 0 4px rgba(235, 80, 23, 0.12);
    }

    .form-wrap textarea.form-control {
      min-height: 140px;
      resize: vertical;
    }

    .form-wrap .form-check-input:checked {
      background-color: var(--brand-orange);
      border-color: var(--brand-orange);
    }

    .form-wrap .form-check-label {
      font-size: 0.85rem;
      color: var(--text-2);
    }

    /* Topic selector chips */
    .topic-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    @media (min-width: 768px) {
      .topic-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .topic-chip {
      position: relative;
      cursor: pointer;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 14px 12px;
      text-align: center;
      background: #fff;
      transition: 0.15s;
      user-select: none;
    }

    .topic-chip input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .topic-chip i {
      display: block;
      font-size: 1.4rem;
      margin-bottom: 6px;
      color: var(--brand-orange);
    }

    .topic-chip span {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--ink);
    }

    .topic-chip:hover {
      border-color: var(--brand-orange);
    }

    .topic-chip.active {
      border-color: var(--brand-orange);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(235, 80, 23, 0.12);
    }

    .topic-chip.active i {
      color: var(--brand-orange);
    }

    .topic-chip:nth-child(2) i {
      color: #3a4112;
    }

    .topic-chip:nth-child(3) i {
      color: #7a5a00;
    }

    .topic-chip:nth-child(4) i {
      color: var(--brand-red-dot);
    }

    /* Sidebar info */
    .info-card {
      background: #1d1b1a;
      color: #f5f0eb;
      border-radius: 24px;
      padding: 34px 30px;
      position: relative;
      overflow: hidden;
    }

    .info-card::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -80px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(205, 219, 55, 0.18), transparent 70%);
      pointer-events: none;
    }

    .info-card h4 {
      color: #fff;
      font-weight: 600;
      position: relative;
      z-index: 1;
    }

    .info-card .ic-row {
      display: flex;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
      position: relative;
      z-index: 1;
    }

    .info-card .ic-row:last-child {
      border-bottom: 0;
    }

    .info-card .ic-ic {
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-size: 1.1rem;
    }

    .info-card .ic-row:nth-child(1) .ic-ic {
      background: var(--brand-orange);
      color: #fff;
    }

    .info-card .ic-row:nth-child(2) .ic-ic {
      background: var(--brand-lime);
      color: var(--ink);
    }

    .info-card .ic-row:nth-child(3) .ic-ic {
      background: var(--brand-gold);
      color: var(--ink);
    }

    .info-card .ic-row:nth-child(4) .ic-ic {
      background: var(--brand-red-dot);
      color: #fff;
    }

    .info-card .ic-lbl {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #bdb6b0;
      font-weight: 700;
    }

    .info-card .ic-val {
      color: #fff;
      font-weight: 500;
      font-size: 0.95rem;
      margin-top: 2px;
    }

    .info-card .ic-val a {
      color: #fff;
      text-decoration: none;
    }

    .info-card .ic-val a:hover {
      color: var(--brand-lime);
    }

    .response-bar {
      background: linear-gradient(135deg, var(--brand-orange), #c63e0c);
      color: #fff;
      padding: 18px 22px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      position: relative;
      z-index: 1;
      margin-bottom: 24px;
    }

    .response-bar i {
      font-size: 1.6rem;
    }

    .response-bar .rb-num {
      font-size: 1.4rem;
      font-weight: 700;
      line-height: 1;
    }

    .response-bar .rb-lbl {
      font-size: 0.78rem;
      opacity: 0.92;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 2px;
    }

    /* ===== OFFICE / MAP ===== */
    .map-wrap {
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-md);
      height: 420px;
      background: #f5e9df;
      position: relative;
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .map-pin {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -100%);
      background: var(--brand-orange);
      color: #fff;
      padding: 10px 16px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 0.85rem;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      pointer-events: none;
    }

    .map-pin::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      border: 8px solid transparent;
      border-top-color: var(--brand-orange);
      border-bottom: 0;
    }

    @media (max-width: 768px) {
      .form-wrap {
        padding: 24px;
      }
    }

    /* Contact options modal & social icons moved to global wwwroot/assets/css/style.css (#contactModal, .cm-*) so the "Speak with Sales" popup can be reused as a shared partial across every page's CTAs. */

    /* Success is confirmed by the shared popup - wwwroot/css/success-modal.css */

    .field-validation-error,
    .validation-summary-errors ul {
      color: #dc3545;
      font-size: 0.875rem;
      margin-bottom: 0;
    }

    .input-validation-error,
    .form-control.input-validation-error,
    .form-select.input-validation-error {
      border-color: #dc3545;
    }

    .validation-summary-errors ul {
      padding-left: 1.25rem;
    }

