@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy:          #1a2e44;
    --orange:        #FF9933;
    --orange-dim:    rgba(255,153,51,0.10);
    --orange-border: rgba(255,153,51,0.35);
    --white:         #ffffff;
    --bg:            #f8f7f4;
    --text:          #1a2e44;
    --text-mid:      #4a5568;
    --text-light:    #718096;
    --border:        #e8e4dc;
    --border-med:    #d0cac0;
  }
  body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; font-size: 16px; }
  .page { max-width: 920px; margin: 0 auto; padding: 3rem 2rem 6rem; }

  /* HEADER */
  header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid #eae8e3; padding: 0 2rem; }
  .header-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 2rem; }
  .header_menu {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
  .header-inner a img { height: 32px; }
  nav { display: flex; align-items: center; gap: 0px; flex-wrap: wrap; }
  nav a { font-size: 14px; color: #1a2e44; text-decoration: none; padding: 6px 12px; border-radius: 6px; font-weight: 500; }
  nav a:hover { background: #f5f3ef; }
  nav .active { color: var(--orange); }
  .btn-nav { background: var(--orange); color: var(--navy); text-decoration: none; padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 700; font-family: inherit; flex-shrink: 0; border: none; cursor: pointer; }

.header-inner-new { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 2rem; }
    .header-inner-new nav {
      max-width: 920px;
      margin: 0 auto;
      width: 100%;
      padding: 0 12px;
    }
  .header-inner-new  a img { height: 32px; }
  .desktop_only {
    display: block;
  }
  .mobile_only {
    display: none;
  }

  /* PRODUCTS DROPDOWN */
  .products-menu { position: relative; display: inline-block; }
  .products-btn { font-size: 14px; color: #1a2e44; background: none; border: none; padding: 6px 12px; border-radius: 6px; font-weight: 500; cursor: pointer; font-family: inherit; display: flex; align-items: center; gap: 4px; }
  .products-btn:hover { background: #f5f3ef; }
  .products-dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid #eae8e3; border-radius: 10px; padding: 1rem; min-width: 420px; box-shadow: 0 8px 24px rgba(0,0,0,0.10); margin-top: 4px; }
  .products-dropdown.open { display: block; }
  .dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .dropdown-col-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: #718096; font-weight: 600; padding: 4px 8px; margin-bottom: 4px; }
  .dropdown-link { display: block; font-size: 13px; color: #1a2e44; text-decoration: none; padding: 6px 8px; border-radius: 6px; font-weight: 500; }
  .dropdown-link:hover { background: #f5f3ef; }

  /* FOOTER */
  footer { background: #f8f7f4; border-top: 1px solid #eae8e3; margin-top: 5rem; padding: 3rem 2rem 2rem; }
  .footer-inner { max-width: 920px; margin: 0 auto; }
  .footer-top { display: flex; gap: 3rem; flex-wrap: wrap; margin-bottom: 2.5rem; align-items: flex-start; }
  .footer-brand img.round { width: 64px; height: 64px; margin-bottom: 0.75rem; display: block; }
  .footer-tagline { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: #718096; font-weight: 700; }
  .footer-cols { display: flex; gap: 3rem; flex-wrap: wrap; flex: 1; }
  .footer-col-title { font-size: 13px; font-weight: 700; color: #1a2e44; margin-bottom: 0.875rem; }
  .footer-col a { display: block; font-size: 13px; color: #718096; text-decoration: none; margin-bottom: 6px; transition: color 0.15s; }
  .footer-col a:hover { color: var(--orange); }
  .footer-bottom { border-top: 1px solid #eae8e3; padding-top: 1.25rem; font-size: 12px; color: #a0aec0; }
  .footer-iso { height: 120px; flex-shrink: 0;}
.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


  .hidden {
    display: none;
  }
  .success_msg {
    color: green !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }
  .error_msg {
    color: red !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .error_field {
    border-width: 1px;
    border-style: solid;
    border-color: #ff0000 !important;
  }


  .mobile-menu-trigger {
    display: none;
  }
  @media (max-width: 768px) {
    .desktop_only {
      display: none;
    }
    .mobile_only {
      display: block;
    }
    .header_menu {
      display: none;
    }
    .header_menu.open {
      display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: start;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        z-index: 999;
        padding: 1.25rem;
      
    }
    .header_menu.open nav {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 0px;
      width: 100%;
    }
    .header_menu.open nav .products-menu {
      display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    .header_menu.open .products-dropdown.open {
              position: relative;
        left: 0;
        top: inherit;
        border: none;
        box-shadow: none;
        min-width: 100%;
        width: 100%;
                padding-block: 0;
    }
    .header_menu.open .products-dropdown.open .dropdown-grid {
      grid-template-columns: 1fr;
    }
    .mobile-menu-trigger {
      display: block;
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 2rem;
      height: 2rem; 
  }
  .mobile-menu-trigger .hamburger {
    display: block;
    fill: var(--navy);
  }
  .mobile-menu-trigger .times {
    display: none;
  }
  .mobile-menu-trigger.open .hamburger {
    display: none;
  }
  .mobile-menu-trigger.open .times {
    display: block;
    stroke: var(--navy);
  }
}



/* QUICKSCAN REQUEST MODAL */
  .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(26,46,68,0.52); z-index: 500; align-items: flex-start; justify-content: center; padding: 2rem 1.25rem; overflow-y: auto; }
  .modal-overlay.open { display: flex; }
  .modal-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 2rem 2.25rem 1.75rem; max-width: 640px; width: 100%; position: relative; margin: auto; flex-shrink: 0; }
  .modal-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; font-size: 22px; color: var(--text-light); cursor: pointer; font-family: inherit; line-height: 1; padding: 0; }
  .modal-close:hover { color: var(--navy); }
  .modal-badge { display: inline-block; background: var(--orange-dim); border: 1px solid var(--orange-border); color: var(--orange); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 12px; font-weight: 600; margin-bottom: 1rem; }
  .modal-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 0.375rem; letter-spacing: -0.3px; }
  .modal-card .modal-sub { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
  .modal-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; margin-bottom: 1.25rem; }
  .modal-col { display: flex; flex-direction: column; gap: 0.75rem; }
  .modal-col.required { border: 1.5px solid var(--orange-border); border-radius: 10px; padding: 1rem; }
  .modal-col-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--text-light); margin-bottom: 2px; }
  .modal-form { display: flex; flex-direction: column; }
  .modal-field { display: flex; flex-direction: column; gap: 5px; }
  .modal-field label { font-size: 12px; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
  .modal-field input { border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 14px; color: var(--text); font-family: inherit; background: var(--white); outline: none; transition: border-color 0.15s; width: 100%; }
  .modal-field input:focus { border-color: var(--orange); }
  .modal-field input[readonly] { background: var(--bg); color: var(--text-mid); border-color: var(--border); cursor: default; }
  .modal-field select { border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 14px; color: var(--text); font-family: inherit; background: var(--white); outline: none; transition: border-color 0.15s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; width: 100%; }
  .modal-field select:focus { border-color: var(--orange); }

  .modal-field textarea { border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 14px; color: var(--text); font-family: inherit; background: var(--white); outline: none; transition: border-color 0.15s; width: 100%; resize: vertical;
    min-height: 80px;}
  .modal-field textarea:focus { border-color: var(--orange); }
  .modal-actions { display: flex; gap: 10px; margin-top: 0.5rem; align-items: center; }
  .modal-actions .btn-primary { 
    
    display: inline-block;
    background: var(--orange);
    color: var(--navy);
    text-decoration: none;
    border: none;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s;
  }
  .modal-actions .btn-primary:hover { opacity: 0.88; }
  .modal-cancel { background: none; border: none; font-size: 14px; color: var(--text-light); cursor: pointer; font-family: inherit; padding: 0 8px; }
  .modal-cancel:hover { color: var(--navy); }
  .modal-contact-alt { display: none; margin-top: 1.25rem; margin-bottom: 0; }
  .modal-contact-alt.visible { display: block; }
  .modal-contact-divider { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.875rem; }
  .modal-contact-divider::before, .modal-contact-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .modal-contact-divider span { font-size: 11px; color: var(--text-light); white-space: nowrap; font-weight: 500; letter-spacing: 0.04em; }
  .modal-contact-links { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
  .modal-contact-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text-mid); text-decoration: none; background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 14px; transition: border-color 0.15s, color 0.15s; }
  .modal-contact-item:hover { border-color: var(--orange); color: var(--navy); }
  .modal-contact-item svg { width: 14px; height: 14px; stroke: var(--orange); flex-shrink: 0; }

  /* Validation states - add to your existing CSS */
.modal-field input.invalid,
.modal-field select.invalid {
  border-color: #e53e3e !important;
  background-color: #fff5f5;
}

.modal-field input.invalid:focus,
.modal-field select.invalid:focus {
  border-color: #c53030 !important;
}

.modal-field .error-message {
  font-size: 11px;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}

.modal-field .error-message.visible {
  display: block;
}


/* Alert messages */
.modal-alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 1.6;
  display: none;
  align-items: flex-start;
  gap: 10px;
}

.modal-alert.visible {
  display: flex;
}

.modal-alert-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #166534;
}

.modal-alert-error {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
}

.modal-alert-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.modal-alert-content {
  flex: 1;
}

.modal-alert-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.modal-alert-message {
  font-size: 13px;
  opacity: 0.9;
}

/* Loading state for submit button */
.btn-primary.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary.loading::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.modal-contact{
  font-size: 11px; color: var(--text-light); line-height: 1.7; margin-top: 1rem;
}
.modal-contact .modal-contact-link {
  color: var(--text-light); text-decoration: underline;
}
  @media (max-width: 600px) {
    .modal-overlay { padding: 1rem 0.75rem; align-items: flex-start; }
    .modal-card { padding: 1.75rem 1.25rem 1.5rem; }
    .modal-cols { grid-template-columns: 1fr; gap: 0.75rem; }
  }



  