.navotech-contact-widget {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f3f4f6;
  padding: 3rem 1.5rem;
  border-radius: 1.5rem;
  margin: 2rem 0;
}

.navotech-contact-widget * {
  box-sizing: border-box;
}

.navotech-contact-widget .nt-container {
  max-width: 1200px;
  margin: 0 auto;
}

.navotech-contact-widget .nt-header {
  text-align: left;
  margin-bottom: 2rem;
}

.navotech-contact-widget .nt-header h2 {
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.navotech-contact-widget .nt-header p {
  margin: 0;
  color: #4b5563;
  font-size: 0.98rem;
}

.navotech-contact-widget .nt-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .navotech-contact-widget .nt-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .navotech-contact-widget .nt-main {
    flex: 2;
  }

  .navotech-contact-widget .nt-sidebar {
    flex: 1;
    max-width: 360px;
  }
}

.navotech-contact-widget .nt-search {
  background: #ffffff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .navotech-contact-widget .nt-search {
    border-radius: 1.25rem;
  }
}

.navotech-contact-widget .nt-search-fields {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.navotech-contact-widget .nt-field {
  flex: 1 1 220px;
  min-width: 200px;
}

.navotech-contact-widget label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.navotech-contact-widget select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  background: #f9fafb;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.navotech-contact-widget select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
  background: #ffffff;
}

.navotech-contact-widget .nt-results {
  margin-top: 1rem;
}

.navotech-contact-widget .nt-placeholder {
  color: #6b7280;
  font-size: 0.95rem;
  padding: 1rem 0.5rem;
}

.navotech-contact-widget .nt-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  margin-bottom: 1rem;
}

.navotech-contact-widget .nt-card-header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.navotech-contact-widget .nt-card-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.navotech-contact-widget .nt-card-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  white-space: nowrap;
}

.navotech-contact-widget .nt-group-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.3rem;
}

.navotech-contact-widget .nt-main-email {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.navotech-contact-widget .nt-main-email strong {
  font-weight: 600;
}

.navotech-contact-widget .nt-contact-list {
  margin: 0.5rem 0 0.5rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e5e7eb;
}

.navotech-contact-widget .nt-contact-item {
  padding: 0.65rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.navotech-contact-widget .nt-contact-role {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.1rem;
}

.navotech-contact-widget .nt-contact-name {
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.navotech-contact-widget .nt-contact-rows {
  font-size: 0.9rem;
  color: #374151;
}

.navotech-contact-widget .nt-contact-rows span {
  display: block;
}

.navotech-contact-widget .nt-contact-rows a {
  text-decoration: none;
}

.navotech-contact-widget .nt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.navotech-contact-widget .nt-btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.1s ease, border-color 0.1s ease, transform 0.1s ease;
}

.navotech-contact-widget .nt-btn-small:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  transform: translateY(-0.5px);
}

.navotech-contact-widget .nt-btn-small:active {
  transform: translateY(0);
}

.navotech-contact-widget .nt-sidebar .nt-card {
  margin-bottom: 1rem;
}

.navotech-contact-widget .nt-card-central h3,
.navotech-contact-widget .nt-card-export h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.navotech-contact-widget .nt-address {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.navotech-contact-widget .nt-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.15rem;
}

.navotech-contact-widget .nt-central-phones {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.navotech-contact-widget .nt-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  text-decoration: none;
  color: #111827;
  font-size: 0.86rem;
  font-weight: 500;
  transition: background 0.1s ease, border-color 0.1s ease, box-shadow 0.1s ease, transform 0.1s ease;
}

.navotech-contact-widget .nt-btn-outline:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.15);
  transform: translateY(-0.5px);
}

.navotech-contact-widget .nt-card-export .nt-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin: 0 0 0.2rem;
}

.navotech-contact-widget .nt-card-export .nt-name {
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.navotech-contact-widget .nt-card-export .nt-contact-row {
  font-size: 0.9rem;
  margin: 0.15rem 0;
}

.navotech-contact-widget .nt-link {
  color: #1d4ed8;
  text-decoration: none;
}

.navotech-contact-widget .nt-link:hover {
  text-decoration: underline;
}

.navotech-contact-widget .nt-no-results {
  padding: 1rem 0.5rem;
  font-size: 0.95rem;
  color: #b91c1c;
}
